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

body {
	font-family: 'Inter', 'Arial', sans-serif;
	background: #000;
	color: #fff;
	overflow-x: hidden;
	line-height: 1.6;
	position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .logo, .contact-title {
	font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

/* Animated Background */
.animated-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.1; /* Diminuído de 0.3 para 0.05 */
}

.floating-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
}

.shape {
	position: absolute;
	color: rgba(255, 255, 255, 0.4);
	font-family: 'Helvetica Neue', 'Arial', sans-serif;
	animation: float 20s infinite linear;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Cada shape agora será um símbolo tecnológico */
.shape:nth-child(1)::before {
	content: '</>'; /* Código */
	font-size: 24px;
}

.shape:nth-child(2)::before {
	content: '{ }'; /* Chaves de programação */
	font-size: 20px;
}

.shape:nth-child(3)::before {
	content: '01'; /* Binário */
	font-size: 28px;
}

.shape:nth-child(4)::before {
	content: '⚡'; /* Energia/Velocidade */
	font-size: 18px;
}

.shape:nth-child(5)::before {
	content: '◈'; /* Nó de rede */
	font-size: 32px;
}

.shape:nth-child(6)::before {
	content: '⌘'; /* Comando/Sistema */
	font-size: 22px;
}

/* Adicione brilho aos símbolos */
.shape::before {
	text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
	animation: glow 3s ease-in-out infinite alternate;
}

/* Animação de brilho */
@keyframes glow {
	from {
		text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
	}
	to {
		text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
					 0 0 30px rgba(255, 255, 255, 0.6);
	}
}

/* Ajuste nas propriedades das shapes individuais */
.shape:nth-child(1) {
	width: 80px;
	height: 80px;
	left: 10%;
	animation-delay: 0s;
	animation-duration: 25s;
	background: rgba(255, 255, 255, 0.03); /* Adicionado um fundo sutil */
}

.shape:nth-child(2) {
	width: 60px;
	height: 60px;
	left: 20%;
	animation-delay: -5s;
	animation-duration: 30s;
	background: rgba(255, 255, 255, 0.02);
}

.shape:nth-child(3) {
	width: 100px;
	height: 100px;
	left: 70%;
	animation-delay: -10s;
	animation-duration: 35s;
	background: rgba(255, 255, 255, 0.04);
}

.shape:nth-child(4) {
	width: 40px;
	height: 40px;
	left: 80%;
	animation-delay: -15s;
	animation-duration: 40s;
	background: rgba(255, 255, 255, 0.02);
}

.shape:nth-child(5) {
	width: 120px;
	height: 120px;
	left: 60%;
	animation-delay: -20s;
	animation-duration: 45s;
	background: rgba(255, 255, 255, 0.03);
}

.shape:nth-child(6) {
	width: 70px;
	height: 70px;
	left: 30%;
	animation-delay: -25s;
	animation-duration: 28s;
	background: rgba(255, 255, 255, 0.02);
}

@keyframes float {
	0% {
		transform: translateY(100vh) rotate(0deg);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translateY(-100px) rotate(360deg);
		opacity: 0;
	}
}

/* Subtle grid overlay - Ajuste para maior visibilidade */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.459) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.459) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 60s linear infinite;
    opacity: 0.1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Hero Section */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	background: linear-gradient(45deg, #000 0%, #000000 100%);
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%231a1a1a" stroke-width="0.6"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.15;
}

.hero-content {
	z-index: 2;
	position: relative;
	opacity: 0;
	transform: translateY(50px);
	animation: fadeInUp 1.5s ease forwards;
}

.hero-logo {
	width: 140px;
	height: auto;
	display: inline-block;
	margin-bottom: 16px;
	animation: logoAppear 1.5s ease forwards;
	transition: transform 0.3s ease, filter 0.3s ease;
	will-change: transform, filter;
}

.hero-logo:hover {
	transform: scale(1.06);
	filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.35));
}

.logo {
	font-size: 4rem;
	font-weight: 100;
	letter-spacing: 8px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.tagline {
	font-size: 1.2rem;
	font-weight: 300;
	opacity: 0.8;
	letter-spacing: 2px;
	position: relative;
}

.tagline::after {
	content: "// Digital Evolution";
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.8rem;
	opacity: 0.4;
	font-family: 'Inter', 'Arial', sans-serif;
	white-space: nowrap;
}

/* Navigation */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 20px 0;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	z-index: 1000;
	transform: translateY(-100%);
	transition: transform 0.3s ease;
}

.nav.visible {
	transform: translateY(0);
}

.nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo {
	font-size: 1.5rem;
	font-weight: 300;
	letter-spacing: 3px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.nav-logo img {
	height: 28px;
	width: auto;
	display: block;
}

.nav-links {
	display: flex;
	gap: 40px;
}

.nav-links a {
	color: #fff;
	text-decoration: none;
	font-weight: 300;
	transition: opacity 0.3s ease;
}

.nav-links a:hover {
	opacity: 0.6;
}

.language-toggle {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	padding: 8px 16px;
	border-radius: 20px;
	cursor: pointer;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.language-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

.language-toggle.active {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.8);
}


/* Contact Section */
.contact-section {
	padding: 120px 0;
	background: #ffffff;
	color: #000000;
}

.contact-header {
	text-align: center;
	margin-bottom: 80px;
}

.contact-title {
	font-size: 3rem;
	font-weight: 200;
	letter-spacing: 8px;
	margin-bottom: 20px;
	opacity: 0.9;
}

.contact-subtitle {
	font-size: 1.2rem;
	font-weight: 300;
	opacity: 0.7;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
	max-width: 800px;
	margin: 0 auto;
}

.contact-card {
	text-align: center;
	padding: 40px 20px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	background: #ffffff;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 0, 0, 0.2);
	background: #ffffff;
}

.contact-card:hover::before {
	opacity: 1;
}

.contact-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	background: #ffffff;
	transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
	background: #ffffff;
	border-color: rgba(0, 0, 0, 0.2);
	transform: scale(1.1);
}

.contact-icon svg {
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.contact-card:hover .contact-icon svg {
	opacity: 1;
}

.contact-card h3 {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 1px;
	margin-bottom: 16px;
	opacity: 0.8;
	text-transform: uppercase;
}

.contact-link {
	color: inherit;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 300;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}

.contact-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 1px;
	background: currentColor;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.contact-link:hover {
	opacity: 1;
}

.contact-link:hover::after {
	width: 100%;
}

.contact-text {
	font-size: 1.1rem;
	font-weight: 300;
	opacity: 0.8;
	margin: 0;
}

/* Footer */
.footer {
	padding: 60px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
	font-weight: 300;
	opacity: 0.6;
	letter-spacing: 1px;
	position: relative;
}

.footer p::before {
	content: "v2.0.2.5";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -25px;
	font-size: 0.7rem;
	opacity: 0.3;
	font-family: 'Inter', 'Arial', sans-serif;
}

/* Animations */
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes logoAppear {
	0% {
		opacity: 0;
		transform: scale(0.9);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

/* Back to Top Button */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.8);
	border: 1px solid rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.back-to-top:hover {
	background: rgba(0, 0, 0, 0.9);
	border-color: rgba(0, 0, 0, 0.5);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.back-to-top:active {
	transform: translateY(0);
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top svg {
	transition: transform 0.3s ease;
}

.back-to-top:hover svg {
	transform: translateY(-2px);
}

/* Alternative style for light sections */
.back-to-top.light-theme {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(0, 0, 0, 0.2);
	color: #000;
}

.back-to-top.light-theme:hover {
	background: rgba(255, 255, 255, 1);
	border-color: rgba(0, 0, 0, 0.3);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 900px) and (min-width: 769px) {
	.contact-grid {
		gap: 40px;
		max-width: 700px;
	}
	
	.contact-card {
		padding: 35px 18px;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}

	.logo {
		font-size: 2.5rem;
		letter-spacing: 4px;
	}

	.tagline {
		font-size: 1rem;
		letter-spacing: 1px;
	}

	.tagline::after {
		font-size: 0.7rem;
		bottom: -25px;
	}

	.hero-logo {
		width: 96px;
		margin-bottom: 12px;
	}

	.section {
		padding: 60px 0;
		min-height: auto;
	}

	.section-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.section-text h2 {
		font-size: 2rem;
		letter-spacing: 2px;
		margin-bottom: 20px;
	}

	.section-text p {
		font-size: 1rem;
		line-height: 1.6;
	}

	.section-visual {
		height: 300px;
		order: -1;
	}

	.philosophy-animation {
		width: 150px;
		height: 150px;
		transform: scale(0.8);
	}

	.technology-animation {
		width: 180px;
		height: 180px;
		transform: scale(0.8);
	}

	.nav-content {
		justify-content: center;
	}

	.nav-logo {
		font-size: 1.2rem;
		letter-spacing: 2px;
	}

	.nav-links {
		display: none;
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-top: 40px;
	}

	.service-card {
		padding: 30px 20px;
	}

	.service-card h3 {
		font-size: 1.3rem;
		letter-spacing: 1px;
		margin-bottom: 15px;
	}

	.service-card p {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.contact-section {
		padding: 80px 0;
	}

	.contact-header {
		margin-bottom: 60px;
	}

	.contact-title {
		font-size: 2.2rem;
		letter-spacing: 4px;
		margin-bottom: 16px;
	}

	.contact-subtitle {
		font-size: 1rem;
		padding: 0 20px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 0 10px;
	}

	.contact-card {
		padding: 30px 20px;
	}

	.contact-icon {
		width: 40px;
		height: 40px;
		margin-bottom: 20px;
	}

	.contact-card h3 {
		font-size: 0.9rem;
		margin-bottom: 12px;
	}

	.contact-link,
	.contact-text {
		font-size: 1rem;
	}

	.footer {
		padding: 40px 0;
	}

	.footer p {
		font-size: 0.9rem;
	}

	.footer p::before {
		top: -20px;
		font-size: 0.6rem;
	}

	.hero {
		padding: 0 15px;
	}

	/* Hide complex animations on mobile for better performance */
	.animated-bg {
		display: none;
	}

	.shape {
		animation-duration: 40s;
	}

	/* Back to top button mobile adjustments */
	.back-to-top {
		bottom: 20px;
		right: 20px;
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 480px) {
	.logo {
		font-size: 2rem;
		letter-spacing: 3px;
	}

	/* Mostrar apenas o símbolo na navbar em telas muito pequenas */
	.nav-logo span {
		display: none;
	}

	.nav-logo img {
		height: 24px;
	}

	.tagline {
		font-size: 0.9rem;
	}

	.section-text h2 {
		font-size: 1.8rem;
	}

	.hero-logo {
		width: 72px;
	}

	.section-text p {
		font-size: 0.95rem;
	}

	.service-card {
		padding: 25px 15px;
	}

	.service-card h3 {
		font-size: 1.2rem;
	}

	.service-card p {
		font-size: 0.9rem;
	}

	.philosophy-animation,
	.technology-animation {
		transform: scale(0.7);
	}

	.contact-title {
		font-size: 1.8rem;
		letter-spacing: 3px;
	}

	.contact-subtitle {
		font-size: 0.95rem;
		padding: 0 15px;
	}

	.contact-grid {
		gap: 30px;
		padding: 0 5px;
	}

	.contact-card {
		padding: 25px 15px;
	}

	.contact-icon {
		width: 36px;
		height: 36px;
		margin-bottom: 16px;
	}

	.contact-card h3 {
		font-size: 0.85rem;
		margin-bottom: 10px;
	}

	.contact-link,
	.contact-text {
		font-size: 0.95rem;
	}
}

/* Ajuste para que a animação apareça apenas em seções escuras */
.section {
    position: relative; /* Garante que podemos posicionar elementos dentro */
}

/* Novo - Classe para seções escuras */
.section-dark {
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden; /* Evita que as formas saiam da seção */
}

/* Novo - Container específico para animação em seções escuras */
.section-dark .section-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.02; /* Diminuído de 0.03 para 0.02 */
}

.section-dark .floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.section-dark .shape {
    position: absolute;
    border: 1px solid #fff;
    animation: float 20s infinite linear;
}

.section-dark .shape:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.section-dark .shape:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 20%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.section-dark .shape:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 70%;
    animation-delay: -10s;
    animation-duration: 35s;
}

.section-dark .shape:nth-child(4) {
    width: 40px;
    height: 40px;
    left: 80%;
    animation-delay: -15s;
    animation-duration: 40s;
}

.section-dark .shape:nth-child(5) {
    width: 120px;
    height: 120px;
    left: 60%;
    animation-delay: -20s;
    animation-duration: 45s;
}

.section-dark .shape:nth-child(6) {
    width: 70px;
    height: 70px;
    left: 30%;
    animation-delay: -25s;
    animation-duration: 28s;
}

/* Filosofia */
.philosophy-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding-top: 64px;
    padding-bottom: 64px;
}
.philosophy-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
}
.philosophy-visual {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.philosophy-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(79, 142, 247, 0.08);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s;
}
.philosophy-card:hover {
    box-shadow: 0 16px 48px rgba(79, 142, 247, 0.16);
}
.philosophy-icon {
    margin-bottom: 16px;
    animation: rotateIcon 4s linear infinite;
}
@keyframes rotateIcon {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}
.philosophy-text {
    flex: 2 1 400px;
}

/* Tecnologia */
.technology-section {
    background: linear-gradient(135deg, #e0f7fa 0%, #00c9a7 100%);
    padding-top: 64px;
    padding-bottom: 64px;
}
.technology-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
    flex-direction: row-reverse;
}
.technology-visual {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.technology-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 201, 167, 0.08);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s;
}
.technology-card:hover {
    box-shadow: 0 16px 48px rgba(0, 201, 167, 0.16);
}
.technology-icon {
    margin-bottom: 16px;
    animation: pulseIcon 2s infinite alternate;
}
@keyframes pulseIcon {
    0% { transform: scale(1);}
    100% { transform: scale(1.08);}
}
.technology-text {
    flex: 2 1 400px;
}



@media (max-width: 480px) {
	.logo {
		font-size: 2rem;
		letter-spacing: 3px;
	}

	/* Mostrar apenas o símbolo na navbar em telas muito pequenas */
	.nav-logo span {
		display: none;
	}

	.nav-logo img {
		height: 24px;
	}

	.tagline {
		font-size: 0.9rem;
	}

	.section-text h2 {
		font-size: 1.8rem;
	}

	.hero-logo {
		width: 72px;
	}

	.section-text p {
		font-size: 0.95rem;
	}

	.service-card {
		padding: 25px 15px;
	}

	.service-card h3 {
		font-size: 1.2rem;
	}

	.service-card p {
		font-size: 0.9rem;
	}

	.philosophy-animation,
	.technology-animation {
		transform: scale(0.7);
	}

	.plans-container {
		gap: 1rem;
		margin-top: 1.2rem;
	}
	.plan-card {
		width: 98%;
		max-width: 98vw;
		padding: 0.8rem;
		border-radius: 10px;
	}
	.featured-label {
		font-size: 0.7rem;
		padding: 5px 10px;
		top: -8px;
		right: 8px;
	}
	.amount {
		font-size: 1.5rem;
	}
}

