/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a192f;
    --secondary-color: #172a45;
    --accent-color: #3b82f6;
    --accent-hover: #2563eb;
    --text-color: #8892b0;
    --light-text: #ccd6f6;
    --light-bg: #112240;
    --gold-gradient: linear-gradient(135deg, rgba(255, 223, 128, 0.08) 0%, rgba(255, 215, 0, 0.12) 100%);
    --gold-accent: rgba(255, 215, 0, 0.15);
    --white: #ffffff;
    --gradient-primary: linear-gradient(120deg, var(--secondary-color), var(--primary-color));
    --max-width: calc(100% - 300px);
    --padding: 5%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(96, 165, 250, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
    }
}

@keyframes growX {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--padding);
    max-width: var(--max-width);
    margin: 0 auto;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    animation: fadeInUp 1s ease-out;
    padding: 0.5rem 0;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e2e2e2 0%, #a0a0a0 50%, #c8c8c8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.logo-y {
    background: linear-gradient(135deg, #e2e2e2 0%, #a0a0a0 50%, #c8c8c8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-x {
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    font-size: 3rem;
    display: inline-flex;
    align-items: center;
    margin-left: -5px;
    transform-origin: center;
    animation: growX 2s ease-in-out infinite;
    position: relative;
    top: -1px; /* Ajuste fino para centralização vertical */
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: transparent;
    color: var(--accent-color) !important;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background-color: rgba(96, 165, 250, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(70px + 4rem);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.7) 50%, rgba(10, 25, 47, 0.9) 100%);
    z-index: 1;
}

#neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    color: var(--light-text);
}

.hero-content .highlight-text {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-buttons .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 160px;
    letter-spacing: 0.5px;
}

.hero-buttons .cta-button.primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
}

.hero-buttons .cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--light-text);
}

.hero-buttons .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.hero-buttons .cta-button.primary:hover {
    background-color: var(--accent-hover);
}

.hero-buttons .cta-button.secondary:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 1200px) {
    .hero .container {
        max-width: calc(100% - 100px);
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: calc(70px + 2rem);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: calc(100% - 40px);
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .hero-image img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        gap: 1rem;
    }

    .hero-buttons .cta-button {
        min-width: 140px;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Botões */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.cta-button.primary {
    background: var(--accent-color);
    color: var(--light-text);
    border: none;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    background: var(--accent-hover);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--accent-color);
}

.cta-button.secondary:hover {
    background-color: rgba(96, 165, 250, 0.1);
    transform: translateY(-2px);
}

/* Seções */
section {
    padding: 5rem var(--padding);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.section-header .highlight-text {
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 3.2rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .section-header .highlight-text {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* Serviços */
.services {
    background: var(--gold-gradient);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 5%, transparent 95%, var(--primary-color) 100%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    animation: iconPulse 2s infinite;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.learn-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.learn-more:hover {
    gap: 1rem;
}

.learn-more i {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Sobre */
.about {
    background-color: var(--light-bg);
    padding: 6rem var(--padding);
}

.about-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-color);
    border-radius: 8px;
    color: var(--light-text);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Contato */
.contact {
    padding: 6rem var(--padding);
    background-color: var(--primary-color);
    position: relative;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.3) 25%,
        rgba(59, 130, 246, 0.5) 50%,
        rgba(59, 130, 246, 0.3) 75%,
        transparent 100%
    );
}

.contact .container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-info h2 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin: 1rem 0;
}

.contact-info p {
    color: var(--light-text);
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Form */
.contact form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 6rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #333333;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
    outline: none;
    background-color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.form-submit .cta-button {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .contact form {
        padding: 2rem;
        margin-bottom: 4rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1.2rem;
    }

    .form-submit .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* Why AI Section */
.why-ai {
    background-color: var(--light-bg);
    padding: 6rem var(--padding);
    position: relative;
}

.why-ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 5%, transparent 95%, var(--primary-color) 100%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.benefit-card {
    background: var(--primary-color);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out;
    border: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: var(--accent-color);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Animações de Scroll */
.service-card,
.benefit-card,
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-card.animate,
.benefit-card.animate,
section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Animação para cards entrando pelos lados */
.service-card {
    transform: translateX(-50px);
}

.service-card:nth-child(even) {
    transform: translateX(50px);
}

.service-card.animate {
    transform: translateX(0);
}

/* Animação para cards de benefícios */
.benefit-card {
    transform: translateY(50px);
}

.benefit-card.animate {
    transform: translateY(0);
}

/* Ajuste para evitar flash de conteúdo não estilizado */
.js-loading * {
    transition: none !important;
}

/* Notificações */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification.success {
    background-color: #10B981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.notification.error {
    background-color: #EF4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Desabilitar botão */
button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: bottom 0.5s ease-in-out;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--light-text);
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.cookie-link:hover {
    opacity: 0.8;
}

.cookie-button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cookie-button:hover {
    background-color: rgb(29, 100, 216);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-button {
        width: 100%;
        margin-top: 10px;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 4rem var(--padding) 1rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.3) 25%,
        rgba(59, 130, 246, 0.5) 50%,
        rgba(59, 130, 246, 0.3) 75%,
        transparent 100%
    );
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 0 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo .logo-text {
    font-size: 2.5rem;
}

.footer-logo .logo-x {
    font-size: 3rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
}

.footer-section h4 {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info,
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: center;
}

.contact-item i,
.social-link i {
    font-size: 1.8rem;
    width: 32px;
    color: var(--accent-color);
    flex-shrink: 0;
    text-align: center;
}

.contact-item p,
.contact-link span,
.social-link span {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.4;
}

.contact-link,
.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-link:hover,
.social-link:hover {
    color: var(--accent-color);
}

.contact-link:hover i,
.social-link:hover i {
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .footer-section {
        align-items: center;
        text-align: center;
    }

    .footer-description {
        max-width: 100%;
    }

    .contact-info,
    .social-links {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Contact Form */
.contact form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .contact-item, .social-link {
        justify-content: center;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Títulos das seções específicas */
.contact-info h2,
.about-header h2,
.why-ai h2 {
    font-size: 3.2rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-info .highlight-text,
.about-header .highlight-text,
.why-ai .highlight-text {
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .contact-info h2,
    .about-header h2,
    .why-ai h2 {
        font-size: 2.2rem;
    }

    .contact-info .highlight-text,
    .about-header .highlight-text,
    .why-ai .highlight-text {
        font-size: 1.1rem;
    }
}

/* Ajustes Mobile */
@media (max-width: 768px) {
    :root {
        --max-width: 100%;
        --padding: 1.5rem;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 var(--padding);
        margin: 0 auto;
    }

    body {
        overflow-x: hidden;
    }

    main {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    section {
        width: 100%;
        max-width: 100%;
        padding: 4rem var(--padding);
        margin: 0;
    }

    .hero .container {
        width: 100%;
        max-width: 100%;
        padding: 0 var(--padding);
    }

    .services,
    .about,
    .contact {
        width: 100%;
        max-width: 100%;
        padding: 4rem var(--padding);
        margin: 0;
    }

    footer {
        width: 100%;
        max-width: 100%;
        padding: 3rem var(--padding);
        margin: 0;
    }
}
