:root {
    --bg-dark: #0F0F0F;
    --bg-light: #FFFFFF;
    --text-light: #F3F4F6;
    --text-dark: #111111;
    --accent: #F97316; 
    --accent-hover: #EA580C;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* --- CORREÇÃO DEFINITIVA DA BARRA BRANCA --- */
html {
    background-color: var(--bg-dark); /* Pinta o fundo do navegador de preto */
    height: 100%;
}
/* ------------------------------------------- */

body { 
    font-family: var(--font-main); 
    line-height: 1.5; 
    overflow-x: hidden; 
    font-size: 16px; 
    background-color: var(--bg-dark); 
    min-height: 100vh; /* Garante que o corpo ocupe pelo menos a altura da tela */
} 

/* ANIMAÇÕES GERAIS */
@keyframes slowPulse {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

@keyframes floatCard {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

/* === SCROLL REVEAL (Animação de aparecer) === */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.5px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.highlight-orange { color: var(--accent); font-weight: 700; }
.gray-text { color: #666; font-size: 1rem; margin-bottom: 2rem; font-weight: 500; }

.section-title { font-size: 2rem; margin-bottom: 20px; line-height: 1.2; }
.section-title.dark-text { color: var(--text-dark); }
.mb-large { margin-bottom: 3rem; }
.mt-medium { margin-top: 2rem; }
section { padding: 80px 0; } 

/* HEADER */
.main-header { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 20px 0; background: rgba(15, 15, 15, 0.95); border-bottom: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(5px); }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.4rem; font-weight: 900; color: #fff; text-decoration: none; border: none; }
.logo-criativa { color: var(--accent); font-weight: 400; }

.main-nav a { margin-left: 25px; color: #fff; font-size: 0.9rem; font-weight: 600; transition: 0.3s; text-transform: uppercase; text-decoration: none !important; border: none !important; }
.main-nav a:hover { color: var(--accent); }
.btn-cta-header { background: var(--accent); color: white; padding: 10px 20px; border-radius: 4px; text-decoration: none; font-size: 0.85rem; }
.mobile-nav-toggle { display: none; } .mobile-menu { display: none; }

/* HERO */
#hero { background: radial-gradient(circle at 30% 40%, #2a2a2a 0%, #0F0F0F 70%); color: #fff; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero-split { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.hero-left { flex: 1.1; }
.hero-left h1 { font-size: 3rem; line-height: 1.1; color: #fff; margin-bottom: 0; }
.hero-right { flex: 0.9; display: flex; justify-content: flex-start; }
.hero-right-content { border-left: 3px solid var(--accent); padding-left: 30px; display: flex; flex-direction: column; justify-content: center; }
.hero-right p { font-size: 1rem; color: #ccc; margin-bottom: 30px; line-height: 1.6; }
.hero-buttons { display: flex; flex-direction: column; gap: 15px; width: 100%; }

.btn-primary { background: var(--accent); color: white; padding: 15px 30px; font-weight: 700; border-radius: 50px; text-transform: uppercase; text-decoration: none; text-align: center; transition: 0.3s; font-size: 0.95rem; animation: slowPulse 2s infinite; }
.btn-primary:hover { background: var(--accent-hover); transform: scale(1.02); }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); padding: 15px 30px; font-weight: 700; border-radius: 50px; font-size: 0.95rem; text-transform: uppercase; text-decoration: none; text-align: center; transition: 0.3s; }
.btn-outline:hover { background: rgba(249, 115, 22, 0.1); color: #fff; border-color: #fff; }
.full-width { width: 100%; display: block; }

/* PROBLEMA */
#problema { background: var(--bg-light); padding: 80px 0; color: var(--text-dark); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.interactive-list li { 
    padding: 12px 0; border-bottom: 1px solid #eee; position: relative; padding-left: 30px; font-size: 1rem; 
    transition: all 0.3s ease; cursor: default;
}
.interactive-list li::before { 
    content: '•'; color: var(--accent); position: absolute; left: 0; font-size: 1.5rem; line-height: 1rem; top: 10px; transition: 0.3s; 
}
.interactive-list li:hover { 
    padding-left: 40px; color: #000; background: linear-gradient(90deg, rgba(249,115,22,0.05), transparent);
}
.interactive-list li:hover::before { 
    transform: scale(1.5); color: var(--accent-hover); 
}

.solution-box { 
    border: 2px solid var(--accent); padding: 30px; border-radius: 10px; background: #FFF7ED; text-align: center; font-size: 1rem; transition: 0.3s;
}
.solution-box:hover { transform: scale(1.02); box-shadow: 0 10px 25px rgba(249, 115, 22, 0.2); }

/* MÉTODO */
#metodo { background: var(--bg-dark); color: #fff; padding: 100px 0; position: relative; }
.metodo-scroll-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.metodo-left { position: -webkit-sticky; position: sticky; top: 120px; height: fit-content; }
.metodo-left h2 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 10px; } 
.mb-medium { margin-bottom: 30px; font-size: 1rem; }
.metodo-nav { display: flex; flex-direction: column; gap: 15px; border-left: 2px solid rgba(255, 255, 255, 0.1); padding-left: 30px; }
.nav-item { font-size: 2rem; font-weight: 800; color: #333; cursor: pointer; transition: 0.3s; font-family: var(--font-display); text-transform: uppercase; }
.nav-item.active { color: var(--accent); transform: translateX(10px); }
.metodo-right { display: flex; flex-direction: column; gap: 120px; padding-top: 20px; padding-bottom: 50px; }
.metodo-step h4 { color: var(--accent); font-size: 1.5rem; margin-bottom: 15px; }
.metodo-step p { font-size: 1rem; color: #ccc; line-height: 1.6; }

/* QUEM CONTRATA */
#quem-contrata { background: var(--bg-light); }
    .benefits-centered ul { max-width: 800px; margin: 0 auto; text-align: left; }
.bold-text { font-weight: 800; font-size: 1.1rem; margin-top: 30px; }
.benefits-centered .interactive-list li::before { content: '✔'; font-size: 1rem; top: 12px; }

/* SERVIÇOS */
#servicos-lista { background: var(--bg-dark); color: #fff; }
.grid-servicos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.servico-item { 
    padding: 30px; 
    border: 1px solid #333; 
    background: #141414; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    position: relative; overflow: hidden;
    border-radius: 8px;
}
.servico-item h4 { margin-bottom: 15px; font-size: 1.1rem; font-weight: 800; color: #fff; transition: 0.3s; }
.servico-item p { font-size: 0.9rem; color: #999; transition: 0.3s; }

.servico-item:hover { 
    background: linear-gradient(135deg, #222 0%, #111 100%);
    border-color: var(--accent); 
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.servico-item:hover h4 { color: var(--accent); }
.servico-item:hover p { color: #ccc; }
.servico-item::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 0%; height: 4px; background: var(--accent); transition: 0.4s;
}
.servico-item:hover::after { width: 100%; }

/* PREÇOS */
#precos { background: var(--bg-dark); padding: 80px 0; color: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 40px; align-items: stretch; }

.price-card { 
    background: #fff; color: #111; padding: 30px; border-radius: 8px; 
    display: flex; flex-direction: column; justify-content: flex-start; 
    border: 1px solid #333; transition: all 0.4s ease;
    position: relative;
}

.price-card:hover { 
    transform: translateY(-10px) scale(1.02); 
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.4);
    border-color: var(--accent); 
}
.price-card.popular { 
    border: 3px solid var(--accent); transform: scale(1.05); z-index: 10; 
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}
.price-card.popular:hover {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.6); 
}

.price-card h3 { font-size: 1.2rem; margin-bottom: 15px; font-weight: 800; }
.price-card ul li { font-size: 0.9rem; margin-bottom: 10px; padding-left: 20px; position: relative; list-style: none; color: #444; }
.price-card ul li::before { content: '>'; position: absolute; left: 0; color: var(--accent); font-weight: 900; font-size: 1rem; }
.tag-popular { background: var(--accent); color: white; padding: 5px 12px; font-size: 0.7rem; font-weight: bold; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); border-radius: 15px; text-transform: uppercase; }
.cta-centered-container { text-align: center; margin-top: 50px; }
.btn-glow-large { 
    background: var(--accent); color: white; padding: 18px 40px; border-radius: 50px; 
    font-weight: 900; text-transform: uppercase; text-decoration: none; font-size: 1rem; 
    display: inline-block; transition: 0.3s; animation: slowPulse 2s infinite; 
}
.btn-glow-large:hover { background: var(--accent-hover); transform: scale(1.05); box-shadow: 0 0 30px rgba(249, 115, 22, 0.8); }

/* CASES */
#cases-strip { background: var(--bg-light); padding: 80px 0; color: var(--text-dark); }
.stats-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; text-align: center; margin-bottom: 40px; }

.stat-box { 
    border: 1px solid #eee; padding: 25px; border-radius: 8px; font-size: 1rem; background: #fff;
    transition: 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.15);
}
.stat-box strong { color: var(--accent); display: block; margin-bottom: 10px; font-size: 1.2rem; }
.stat-box span.counter { font-weight: 800; font-size: 1.1rem; }

.main-carousel-container { 
    position: relative; max-width: 800px; margin: 0 auto; height: 450px; 
    border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.2); 
    display: flex; align-items: center; background: #000;
}
.carousel-track { width: 100%; height: 100%; position: relative; }
.carousel-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.5s ease-in-out; cursor: pointer; display: none; }
.carousel-slide.active { opacity: 1; display: block; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 4s linear; }
.carousel-slide.active img { transform: scale(1.1); } 
.slide-label { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); padding: 30px; color: white; }
.slide-label span { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; border-left: 4px solid var(--accent); padding-left: 15px; text-transform: uppercase; }
.nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: white; border: none; font-size: 2rem; padding: 10px; cursor: pointer; z-index: 10; transition: 0.3s; }
.nav-btn:hover { background: var(--accent); }
.nav-btn.prev { left: 0; }
.nav-btn.next { right: 0; }

/* CONTATO */
#contato { background: var(--bg-dark); color: #fff; padding: 80px 0; }
.contact-layout { display: flex; justify-content: space-between; align-items: flex-start; gap: 50px; }
.contact-left { flex: 1; max-width: 600px; }
.contact-title { color: var(--accent); font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
.contact-desc { color: #ccc; margin-bottom: 30px; font-size: 1rem; }
.form-group { margin-bottom: 20px; position: relative; }
.form-group label { display: block; font-size: 0.8rem; color: #999; margin-bottom: 5px; }

/* ESTILOS DOS CAMPOS DO FORMULÁRIO */
.form-input { 
    width: 100%; border: none; border-bottom: 1px solid #555; padding: 10px 0; 
    font-size: 1rem; color: #fff; background: transparent; outline: none; 
    transition: 0.3s; font-family: var(--font-main); 
}
.form-input:focus { border-bottom-color: var(--accent); }

/* CORREÇÃO DO MENU SELECT */
select.form-input option {
    background-color: #0F0F0F;
    color: #fff;
    padding: 10px;
}

.btn-outline-form { width: 100%; background: transparent; border: 1px solid var(--accent); color: var(--accent); padding: 12px; border-radius: 50px; font-weight: 700; text-transform: uppercase; cursor: pointer; margin-bottom: 15px; font-size: 0.8rem; letter-spacing: 1px; transition: 0.3s; }
.btn-outline-form:hover { background: rgba(249, 115, 22, 0.1); }
.btn-glow { width: 100%; background: var(--accent); color: white; border: none; padding: 15px; border-radius: 50px; font-weight: 800; text-transform: uppercase; cursor: pointer; font-size: 0.9rem; letter-spacing: 1px; transition: 0.3s; animation: slowPulse 2s infinite; }
.btn-glow:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 0 20px rgba(249, 115, 22, 0.5); }
.contact-right { flex: 0.8; display: flex; justify-content: center; }
.profile-card { background: white; width: 100%; max-width: 350px; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5); transition: 0.3s; }
.profile-card:hover { transform: translateY(-5px); box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2); }
.card-header-orange { background: var(--accent); height: 180px; width: 100%; }
.card-body { padding: 30px; text-align: center; color: #111; }
.card-body h3 { color: var(--accent); font-size: 1.4rem; margin-bottom: 5px; font-weight: 800; }
.card-body .role { color: #666; font-size: 0.9rem; margin-bottom: 20px; }
.separator { width: 30px; height: 2px; background: var(--accent); margin: 0 auto 15px auto; }
.contact-info { font-weight: 600; color: #333; margin-bottom: 5px; font-size: 0.95rem; }

/* FOOTER */
.main-footer { background: #000; color: #fff; padding: 50px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-logo { color: var(--accent); font-size: 1rem; margin-bottom: 15px; font-weight: 800; }
.footer-col h4 { color: var(--accent); font-size: 0.8rem; margin-bottom: 15px; letter-spacing: 1px; font-weight: 800; }
.footer-col p, .footer-col a { color: #888; font-size: 0.85rem; display: block; margin-bottom: 10px; text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: var(--accent); transform: translateX(5px); }
.copyright-bar { border-top: 1px solid #222; text-align: center; padding-top: 20px; color: #555; font-size: 0.75rem; }

/* WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

.whatsapp-float svg {
    width: 32px !important;
    height: 32px !important;
    fill: #ffffff;
}

/* LIGHTBOX (Mantido o display none para evitar overflow) */
.lightbox { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.95); 
    z-index: 2000; 
    display: none; 
    justify-content: center; 
    align-items: center; 
}
.lightbox.active { 
    display: flex;
}
.lightbox-content { max-width: 90vw; max-height: 90vh; }
.lightbox-content img, .lightbox-content video { max-width: 100%; max-height: 90vh; object-fit: contain; }
.close-btn { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; cursor: pointer; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: white; font-size: 3rem; cursor: pointer; padding: 20px; }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
/* ==========================================================================
   MEDIA QUERIES - RESPONSIVIDADE PARA DISPOSITIVOS MÓVEIS
   ========================================================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    .hero-left h1 {
        font-size: 2.5rem;
    }
    .metodo-left h2 {
        font-size: 2rem;
    }
    .metodo-nav .nav-item {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* AJUSTES GERAIS */
    section {
        padding: 60px 0;
    }
    
    /* FORÇA CENTRALIZAÇÃO DE TEXTO */
    h1, h2, h3, h4, p {
        text-align: center !important;
    }
    
    /* EXCEÇÕES PARA ALINHAMENTO À ESQUERDA */
    .interactive-list, .price-card ul, .hero-right-content p, .hero-right-content {
        text-align: left !important;
    }
    
    /* Garante que os elementos de bloco que contêm texto centralizado também estejam centralizados */
    .hero-left, .metodo-left {
        margin: 0 auto;
        width: 100%;
        max-width: 400px; /* Limita a largura para centralizar melhor, se necessário */
    }
    
    /* Garante que o container do texto do hero não centralize o texto, mas o container sim */
    .hero-right-content {
        margin: 0 auto;
        max-width: 400px;
    }
    
    /* Garante que o texto dentro do hero-right-content volte a ser left-aligned */
    .hero-right-content p {
        text-align: left !important;
    }
    
    /* Garante que o texto dentro do hero-left volte a ser center-aligned */
    .hero-left h1 {
        text-align: center !important;
    }
    .section-title {
        font-size: 1.8rem;
    }
    
    /* HEADER E NAVEGAÇÃO MOBILE */
    .main-nav {
        display: none; /* Esconde a navegação desktop */
    }
    .mobile-nav-toggle {
        display: block; /* Mostra o botão de toggle */
        background: none;
        border: none;
        color: var(--accent);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
    }
    .mobile-menu {
        display: none; /* Inicialmente escondido */
        position: absolute;
        top: 70px; /* Ajustar conforme a altura do header */
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        padding: 10px 0;
        text-align: center;
    }
    .mobile-menu.active {
        display: block;
    }
    .mobile-menu a {
        display: block;
        padding: 15px 20px;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .mobile-menu a:last-child {
        border-bottom: none;
    }

    /* HERO SECTION */
    #hero {
        min-height: auto;
        padding: 120px 0 60px 0; /* Mais padding no topo para compensar o header fixo */
    }
    .hero-split {
        flex-direction: column; /* Empilha as colunas */
        text-align: center;
        gap: 40px;
    }
    .hero-left h1 {
        font-size: 2.2rem;
    }
    .hero-right {
        justify-content: center;
    }
    .hero-right-content {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--accent);
        padding-top: 20px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    /* PROBLEMA SECTION */
    .problem-grid {
        grid-template-columns: 1fr; /* Empilha as colunas */
        max-width: 400px; /* Limita a largura para centralizar melhor */
        margin: 0 auto; /* Centraliza o grid */
    }
    .solution-box {
        margin-top: 20px;
    }

    /* MÉTODO SECTION */
    .metodo-scroll-layout {
        grid-template-columns: 1fr; /* Empilha as colunas */
    }
    .metodo-left {
        position: static; /* Remove o sticky para mobile */
        top: auto;
        height: auto;
        text-align: center;
    }
    .metodo-nav {
        flex-direction: row; /* Transforma a navegação em linha */
        justify-content: center;
        flex-wrap: wrap;
        border-left: none;
        padding-left: 0;
        gap: 10px 20px;
    }
    .metodo-nav .nav-item {
        font-size: 1.2rem;
    }
    .metodo-nav .nav-item.active {
        transform: translateX(0);
    }
    .metodo-right {
        gap: 40px; /* Reduz o espaçamento entre os passos */
    }

    /* SERVIÇOS SECTION */
    .grid-servicos {
        grid-template-columns: 1fr; /* Empilha as colunas */
        max-width: 400px; /* Limita a largura para centralizar melhor */
        margin: 0 auto; /* Centraliza o grid */
    }

    /* PREÇOS SECTION */
    .pricing-grid {
        grid-template-columns: 1fr; /* Empilha as colunas */
        max-width: 400px; /* Limita a largura para centralizar melhor */
        margin: 0 auto; /* Centraliza o grid */
    }
    .price-card.popular {
        transform: scale(1.0); /* Remove o scale extra para mobile */
    }
    .price-card.popular:hover {
        transform: scale(1.02); /* Ajusta o hover para não ser tão agressivo */
    }

    /* CASES STRIP */
    .stats-row {
        grid-template-columns: 1fr; /* Empilha as colunas */
        gap: 15px;
        max-width: 400px; /* Limita a largura para centralizar melhor */
        margin: 0 auto; /* Centraliza o grid */
    }
    .main-carousel-container {
        height: 300px; /* Reduz a altura do carrossel */
        max-width: 90%; /* Limita a largura para centralizar melhor */
        margin: 0 auto; /* Centraliza o carrossel */
    }

    /* CONTATO SECTION */
    .contact-layout {
        flex-direction: column; /* Empilha as colunas */
        gap: 30px;
        align-items: center; /* Centraliza os itens */
    }
    .contact-right {
        order: -1; /* Coloca o cartão de perfil no topo */
    }
    .profile-card {
        max-width: 100%;
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr; /* Empilha as colunas */
        text-align: center;
        max-width: 400px; /* Limita a largura para centralizar melhor */
        margin: 0 auto; /* Centraliza o grid */
    }
    .footer-col h4 {
        margin-top: 20px;
    }
    .footer-col p, .footer-col a {
        display: inline-block;
        margin: 0 10px 10px 10px;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.8rem;
    }
    .btn-primary, .btn-outline {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    .btn-glow-large {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    /* ... (código anterior) ... */
    .mobile-menu.active {
        display: block;
    }
    /* ... (código posterior) ... */
}
