* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: #0f0f0f;
	color: #ffffff;
	line-height: 1.6;
}

/* Desktop: No scroll */
@media (min-width: 769px) {

	body,
	html {
		height: 100vh;
		/*overflow: hidden;*/
	}
}

/* Mobile: Allow scroll */
@media (max-width: 768px) {
	body {
		min-height: 100vh;
		overflow-y: auto;
	}
}

.container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto 1fr auto;
	height: 100vh;
	gap: 0;
	max-width: 1400px;
	margin: 0 auto;
}

/* Header */
.header {
	grid-column: 1 / -1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 32px;
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/*.logo {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.5px;
}

.logo::before {
	content: "WI";
	background: #ffffff;
	color: #000;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	font-weight: 700;
	font-size: 11px;
}*/

.logo img {
	width: 40px;
	height: 35px;
}

.nav {
	display: flex;
	gap: 24px;
}

.nav a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.nav a:hover,
.nav a.active {
	color: #ffffff;
}

.nav a.active::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	right: 0;
	height: 1px;
	background: #ffffff;
	border-radius: 1px;
}

.status {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	font-size: 11px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	position: relative;
	overflow: hidden;
}

.status::before {
	content: '';
	width: 4px;
	height: 4px;
	background: #00ff88;
	border-radius: 50%;
	animation: pulse-dot 2s infinite;
	box-shadow: 0 0 10px #00ff88;
}

.status::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

@keyframes pulse-dot {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(1.2);
	}
}

/* Companies Ticker */
.companies-ticker {
	grid-column: 1 / -1;
	height: 50px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.01);
	display: flex;
	align-items: center;
	position: relative;
}

.ticker-content {
	display: flex;
	align-items: center;
	gap: 40px;
	white-space: nowrap;
	animation: scroll-horizontal 60s linear infinite;
}

.ticker-content::after {
	content: attr(data-clone);
	display: flex;
	gap: 40px;
}

.company-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.4);
	font-size: 12px;
	font-weight: 500;
	flex-shrink: 0;
	white-space: nowrap;
}

.company-logo img {
	width: 30px;
	height: 30px;
	border-radius: 4px;
	padding: 2px;
	object-fit: contain;
}

@keyframes scroll-horizontal {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Main Content */
.main-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 32px;
	gap: 24px;
}

.hero-section {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hero-text {
	font-size: clamp(24px, 3.5vw, 36px);
	font-weight: 600;
	line-height: 1.9;
	letter-spacing: 0.1em;
	color: #ffffff;
}

.subtitle {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	font-weight: 500;
    line-height: 2.2;
	margin-bottom: 6px;
}

.description {
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
	line-height: 1.5;
	/*max-width: 420px;*/
}

.cta-section {
	display: flex;
	gap: 12px;
}

.btn {
	padding: 10px 20px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.btn-primary {
	background: #ffffff;
	color: #000;
}

.btn-primary:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(-1px);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.info-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 16px;
	transition: all 0.3s ease;
}

.info-card:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.info-card h3 {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
	font-weight: 600;
}

.info-card .metric {
	font-size: 20px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 4px;
}

.info-card p {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.4;
}

/* Skills Grid - CORRIGIDO */
.skills-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}

.skill-item {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	padding: 10px 12px;
	font-size: 11px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
}

.skill-item:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-1px);
}

.skill-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.skill-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Right Side */
.right-side {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 32px;
	gap: 20px;
	border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.section-title {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
	font-weight: 600;
}

.projects-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.project-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	padding: 12px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.project-card:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-1px);
}

.project-card h4 {
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 4px;
}

.project-card .tech {
	font-size: 9px;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin-bottom: 6px;
	display: flex;
	gap: 4px;
	align-items: center;
}

.project-card p {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.3;
}

.experience-education-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.experience-column,
.education-column {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.exp-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.exp-item:last-child {
	border-bottom: none;
}

.exp-info h4 {
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 2px;
}

.exp-info p {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.5);
}

.exp-period {
	font-size: 9px;
	color: rgba(255, 255, 255, 0.4);
	text-align: right;
}

.courses-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.course-item {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 6px;
	padding: 12px;
	transition: all 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.course-item:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.1);
}

.course-info h4 {
	color: #ffffff;
	font-size: 11px;
	font-weight: 600;
	margin-bottom: 2px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.course-info p {
	font-size: 9px;
	color: rgba(255, 255, 255, 0.5);
}

.course-year {
	font-size: 9px;
	color: rgba(255, 255, 255, 0.4);
	font-weight: 500;
}

/* Footer */
.footer {
	grid-column: 1 / -1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info {
	display: flex;
	gap: 24px;
	align-items: center;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 10px;
	font-weight: 500;
}

.contact-item::before {
	content: attr(data-icon);
	font-size: 12px;
}

.social-links {
	display: flex;
	gap: 8px;
}

.social-link {
	width: 28px;
	height: 28px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.container {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto auto auto;
		gap: 0;
		height: auto;
		min-height: 100vh;
	}

	.header {
		padding: 16px 20px;
		flex-wrap: wrap;
		gap: 12px;
	}

	.nav {
		display: none;
	}

	.companies-ticker {
		height: 40px;
	}

	.ticker-content {
		gap: 30px;
	}

	.company-logo::before {
		width: 16px;
		height: 16px;
		font-size: 8px;
	}

	.main-content {
		padding: 24px 20px;
		gap: 20px;
		order: 1;
	}

	.hero-text {
		font-size: 28px;
	}

	.subtitle {
		font-size: 13px;
	}

	.description {
		font-size: 12px;
	}

	.cta-section {
		flex-direction: column;
		gap: 10px;
	}

	.btn {
		padding: 8px 16px;
		width: 100%;
		justify-content: center;
	}

	.info-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.right-side {
		order: 2;
		padding: 24px 20px;
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.06);
		gap: 16px;
	}

	.projects-grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.skills-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 6px;
	}

	.footer {
		flex-direction: column;
		gap: 16px;
		padding: 20px;
		text-align: center;
	}

	.contact-info {
		flex-direction: column;
		gap: 12px;
	}
}

@media (max-width: 480px) {
	.hero-text {
		font-size: 24px;
	}

	.projects-grid {
		grid-template-columns: 1fr;
	}

	.skills-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.experience-education-section {
		grid-template-columns: repeat(1, 1fr);
	}

	.courses-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.logo::before {
		width: 24px;
		height: 24px;
		font-size: 10px;
	}
}