/* ==========================================================================
   1. IMPORTAÇÕES E VARIÁVEIS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Paleta de Cores */
    --primary: #0a0e12;
    --primary-light: #161c24;
    --accent: #c5a059;
    --accent-light: #d4b886;
    --accent-dark: #a38241;
    --bg-light: #fdfdfd;
    --bg-gray: #f8fafc;
    --text-main: #1a1a1a;
    --text-muted: #64748b;
    --white: #ffffff;
    
    /* Sombras e Transições */
    --transition-base: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 40px 80px rgba(0, 0, 0, 0.12);
    
    /* Bordas e Layout */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --container-width: 1320px;
}

/* ==========================================================================
   2. RESET E CONFIGURAÇÕES GLOBAIS
   ========================================================================== */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    scroll-behavior: smooth; /* Fallback nativo para scroll suave */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Acessibilidade: Outline visível apenas para navegação por teclado */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   3. TIPOGRAFIA
   ========================================================================== */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--primary);
    overflow-wrap: break-word;
    text-wrap: balance; /* Modern CSS: Evita palavras viúvas em títulos */
}

p {
    text-wrap: pretty; /* Modern CSS: Melhora quebra de linha em parágrafos */
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.text-white {
    color: var(--white) !important;
}

span.italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
}

/* ==========================================================================
   4. LAYOUT BÁSICO E UTILITÁRIOS
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section {
    padding: 10rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.sub-title {
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1.5rem;
}

.main-title {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
}

/* Animações de Entrada (Reveal) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
    will-change: opacity, transform; /* Aceleração de hardware */
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   5. COMPONENTES: NAVBAR E DEMO BAR
   ========================================================================== */
.demo-bar {
    background: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 0.6rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    z-index: 1001;
}

.demo-bar a {
    color: var(--white);
    text-decoration: underline;
    transition: var(--transition-base);
}

.demo-bar a:hover {
    color: var(--primary);
}

.navbar {
    position: fixed;
    top: 36px; /* Altura da demo bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition-base);
    will-change: padding, background-color;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 14, 18, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px); /* Suporte Safari */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-sm);
    top: 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 0.9;
    position: relative;
    z-index: 1002;
}

.logo-small {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.4em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.logo-big {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.01em;
    transition: var(--transition-base);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-base);
    position: relative;
}

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

.nav-links a:hover {
    color: var(--accent);
}

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

.cta-nav {
    background: var(--accent);
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 800 !important;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
}

.cta-nav:after {
    display: none; /* Remove a linha embaixo no hover para o botão */
}

/* ==========================================================================
   6. COMPONENTES: HERO SECTION
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--primary);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,14,18,0.7) 0%, rgba(10,14,18,0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding-top: 120px;
}

@keyframes badgePulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(197, 160, 89, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

.hero-badge {
    background: rgba(197, 160, 89, 0.15);
    color: var(--accent-light);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 2rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: badgePulse 3s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 7.5rem);
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 0.95;
    font-weight: 900;
}

.hero-title span {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 4rem;
}

.hero-btns {
    display: flex;
    gap: 2rem;
}

.btn {
    padding: 1.5rem 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-4px);
}

/* ==========================================================================
   7. SEÇÕES: MARCAS E SERVIÇOS (BENTO GRID)
   ========================================================================== */
.brands-reel {
    padding: 3rem 0;
    background: var(--bg-gray);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brands-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.brands-wrapper span {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    opacity: 0.4;
    transition: var(--transition-base);
}

.brands-wrapper span:hover {
    opacity: 1;
    color: var(--accent);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.bento-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-gray);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 450px;
    padding: 3rem;
    transition: var(--transition-base);
}

.bento-card.large { grid-column: span 8; }
.bento-card.medium { grid-column: span 4; }
.bento-card.small { grid-column: span 6; }

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    will-change: transform;
}

.bento-card:hover .card-bg img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10,14,18,0.9) 0%, rgba(10,14,18,0.2) 60%, transparent 100%);
    z-index: 2;
}

.card-content {
    position: relative;
    z-index: 3;
    color: white;
}

.card-tag {
    background: var(--accent);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
}

.card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 80%;
}

.card-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: var(--transition-base);
}

.card-link:hover {
    color: var(--white);
    gap: 1.2rem;
}

/* ==========================================================================
   8. SEÇÕES: GALERIA COMPARATIVA E DEPOIMENTOS
   ========================================================================== */
.comparison-section {
    background: var(--primary);
    color: white;
}

.comparison-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/9;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 100%;
    touch-action: pan-y; /* Permite scroll vertical, bloqueia scroll horizontal ao arrastar */
}

.img-comp {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-comp img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-comp-overlay {
    width: 50%;
    border-right: 3px solid var(--accent);
    z-index: 10;
}

.slider-handle {
    position: absolute;
    z-index: 11;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease;
}

.slider-handle:hover, .slider-handle:active {
    transform: translate(-50%, -50%) scale(1.1);
}

.label-before, .label-after {
    position: absolute;
    bottom: 2rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 4px;
    z-index: 5;
}

.label-before { left: 1.5rem; }
.label-after { right: 1.5rem; }

.testimonials-section {
    background: var(--bg-gray);
}

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

.testimonial-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testi-stars {
    color: var(--accent);
    margin-bottom: 2rem;
    font-size: 0.8rem;
    display: flex;
    gap: 0.3rem;
}

.testi-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   9. SEÇÕES: CONTATO E FOOTER
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.contact-methods {
    margin: 4rem 0;
}

.method {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-gray);
    color: var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-text h4 {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.method-text p {
    font-size: 1.25rem;
    font-weight: 600;
}

.social-connect {
    margin-bottom: 4rem;
}

.social-connect .sub-title {
    margin-bottom: 1.5rem;
    font-size: 0.7rem;
}

.social-links-grid {
    display: flex;
    gap: 1.2rem;
}

.social-btn {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-btn:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
    color: var(--white);
}

.contact-form {
    background: rgba(255, 255, 255, 0.8);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
}

.submit-btn:hover {
    background: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

.footer {
    background: var(--primary);
    color: white;
    padding: 10rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(197, 160, 89, 0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 8rem;
}

.brand-col .logo {
    margin-bottom: 2rem;
}

.brand-col .logo-big { color: white; }

.footer-about {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.footer-col h4 {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1.2rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 1rem;
    display: inline-block;
}

.footer-col ul a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 0.3rem;
}

.footer-contact-item span {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    color: #25d366;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1rem;
    transition: var(--transition-base);
    font-size: 0.9rem;
}

.footer-whatsapp:hover {
    background: #25d366;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-credit a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* ==========================================================================
   10. MEDIA QUERIES E RESPONSIVIDADE
   ========================================================================== */

/* Botão Menu Mobile */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1200px) {
    .bento-card.large { grid-column: span 12; }
    .bento-card.medium, .bento-card.small { grid-column: span 6; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

@media (max-width: 992px) {
    .section { padding: 8rem 0; }
    .section-header { margin-bottom: 4rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .footer-top { flex-direction: column; gap: 4rem; }
    .bento-card.medium, .bento-card.small { grid-column: span 12; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn { width: 100%; text-align: center; }
    
    .testimonials-grid { grid-template-columns: 1fr; }
    
    .mobile-toggle { display: flex; }
    
    .navbar {
        top: 0;
        padding: 1.5rem 0;
    }
    
    .nav-links {
        display: flex; /* Mudado de 'none' para 'flex' para animação suave */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 1000;
        padding: 2rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.25rem;
        color: white !important;
        width: 100%;
        text-align: center;
    }
    
    .cta-nav {
        width: auto !important;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .section { padding: 5rem 0; }
    .contact-form { padding: 2rem; }
    .bento-card { padding: 2rem; min-height: 400px; }
    .card-title { font-size: 1.8rem; }
    .label-before, .label-after { bottom: 1rem; font-size: 0.6rem; padding: 0.4rem 0.8rem; }
    .label-before { left: 1rem; }
    .label-after { right: 1rem; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: 1rem; }
    .contact-form { padding: 1.5rem; }
    .main-title { font-size: 1.8rem; }
    .hero-content { padding-top: 100px; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
}