/* ==========================================================================
   KOKANISA.PT // MASTER STYLESHEET
   ARQUITETURA: MOBILE-FIRST NATIVA COM ALTO CONTRASTE E NITIDEZ
   DISPOSITIVOS: Smart Mobile (base) -> Tablet -> Laptop -> Desktop
   ========================================================================== */

/* ==========================================
   1. RESET GLOBAL & MOBILE-FIRST DEFAULTS
   ========================================== */
:root {
    --verde-lima: #32CD32; 
    --verde-lima-hover: #28a745;
    --verde-lima-glow: rgba(50, 205, 50, 0.4);
    --lilaz: #9370DB;        
    --lilaz-light: #c8b3f5;
    --lilaz-bg: #1d0f2f;        
    --lilas-escuro: #12071d; 
    --lilas-card: rgba(26, 13, 40, 0.94);
    --lilas-card-hover: rgba(38, 19, 58, 0.98);
    --branco: #ffffff;
    --cinza-suave: #f4f0ff; 
    --texto-corpo: #ffffff;
    --texto-muted: #e4ddf2;
    --borda-suave: rgba(147, 112, 219, 0.35);
    --borda-lima: rgba(50, 205, 50, 0.45);
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--branco);
}

/* Regra Global de Alto Contraste para páginas escuras */
body:not(.page-privacidade) {
    color: #ffffff;
}

body:not(.page-privacidade) p,
body:not(.page-privacidade) li,
body:not(.page-privacidade) .lead {
    color: #ffffff;
}

body:not(.page-privacidade) .text-muted,
body:not(.page-privacidade) .text-muted-subtle,
body:not(.page-privacidade) .text-white-50,
body:not(.page-privacidade) .text-white-75,
body:not(.page-privacidade) small,
body:not(.page-privacidade) .small {
    color: var(--texto-muted) !important;
    opacity: 1 !important;
}

body:not(.page-privacidade) h1, 
body:not(.page-privacidade) h2, 
body:not(.page-privacidade) h3, 
body:not(.page-privacidade) h4, 
body:not(.page-privacidade) h5, 
body:not(.page-privacidade) h6,
body:not(.page-privacidade) .display-1,
body:not(.page-privacidade) .display-2,
body:not(.page-privacidade) .display-3,
body:not(.page-privacidade) .display-4,
body:not(.page-privacidade) .display-5,
body:not(.page-privacidade) .display-6 {
    color: #ffffff !important;
    font-weight: 700;
}

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

/* Prevenção de Auto-Zoom no iOS Safari em campos de formulário */
input, select, textarea, button {
    font-size: 16px;
}

@media (min-width: 768px) {
    input, select, textarea {
        font-size: 0.95rem;
    }
}

/* Tipografia Fluida Geral */
h1, .display-1, .display-2, .display-3 {
    font-size: clamp(1.75rem, 5.5vw, 3.2rem) !important;
    line-height: 1.15 !important;
}

h2, .display-4, .display-5 {
    font-size: clamp(1.45rem, 4.2vw, 2.3rem) !important;
    line-height: 1.25 !important;
}

h3, .display-6 {
    font-size: clamp(1.25rem, 3.2vw, 1.75rem) !important;
    line-height: 1.3 !important;
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem) !important;
}

h5 {
    font-size: clamp(1rem, 2vw, 1.15rem) !important;
}

h6 {
    font-size: clamp(0.88rem, 1.6vw, 1rem) !important;
}

.lead {
    font-size: clamp(0.95rem, 2.4vw, 1.2rem) !important;
    line-height: 1.65 !important;
}

/* Áreas de Toque Mínimas (Touch-Friendly) */
.btn, .nav-link, .accordion-button, .choice-card, .chip-label, .form-control, .form-select {
    min-height: 44px;
}


/* ==========================================
   2. PAGE: INDEX.HTML (MOBILE-FIRST)
   ========================================== */
body.page-index { 
    font-family: 'Poppins', sans-serif; 
    color: var(--branco); 
    background-color: var(--lilaz-bg); 
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(147, 112, 219, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(50, 205, 50, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(20, 10, 32, 0.5) 0%, transparent 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    line-height: 1.65;
}

.page-index .bg-white, 
.page-index .bg-missao, 
.page-index .bg-light { 
    background-color: transparent !important; 
}

.page-index h1, .page-index h2, .page-index h3, .page-index h4, .page-index h5, .page-index h6, 
.page-index .section-title, .page-index .display-3, .page-index .display-5 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff !important;
}

.page-index .section-title { 
    color: #ffffff !important; 
    margin-bottom: 1rem; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); 
}

.page-index .section-subtitle {
    color: var(--verde-lima) !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: clamp(0.75rem, 2vw, 0.88rem);
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 0.6rem;
    text-shadow: 0 0 10px rgba(50, 205, 50, 0.3);
}

/* Secções: Base Mobile */
.page-index .py-section { 
    padding-top: 48px !important; 
    padding-bottom: 48px !important; 
    position: relative;
}

@media (min-width: 768px) {
    .page-index .py-section {
        padding-top: 75px !important;
        padding-bottom: 75px !important;
    }
}

@media (min-width: 992px) {
    .page-index .py-section {
        padding-top: 95px !important;
        padding-bottom: 95px !important;
    }
}

.page-index .border-top {
    border-top: 1px solid rgba(147, 112, 219, 0.22) !important;
}

.page-index .border-bottom {
    border-bottom: 1px solid rgba(147, 112, 219, 0.22) !important;
}

/* CARDS GLASSMORPHISM (ALTO CONTRASTE) */
.page-index .glass-card {
    background: var(--lilas-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--borda-suave);
    border-radius: 16px;
    padding: 1.25rem;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    .page-index .glass-card {
        border-radius: 20px;
        padding: 2rem;
    }
}

@media (hover: hover) and (pointer: fine) {
    .page-index .glass-card:hover {
        transform: translateY(-6px);
        border-color: rgba(50, 205, 50, 0.5);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 20px rgba(50, 205, 50, 0.2);
    }
}

.page-index .card {
    background-color: var(--lilas-card) !important; 
    color: #ffffff !important;
    border: 1px solid var(--borda-suave) !important; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
    border-radius: 16px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

@media (min-width: 768px) {
    .page-index .card {
        border-radius: 20px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .page-index .card:hover {
        transform: translateY(-5px);
        border-color: rgba(50, 205, 50, 0.5) !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55), 0 0 20px rgba(50, 205, 50, 0.2) !important;
    }
}

.page-index .card-featured {
    background: linear-gradient(180deg, rgba(35, 17, 56, 0.98) 0%, rgba(20, 10, 32, 0.98) 100%) !important;
    border: 2px solid var(--verde-lima) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55), 0 0 25px rgba(50, 205, 50, 0.25) !important;
    position: relative;
    z-index: 2;
}

@media (min-width: 1200px) {
    .page-index .card-featured {
        transform: scale(1.03);
    }
    .page-index .card-featured:hover {
        transform: scale(1.05) translateY(-5px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 40px rgba(50, 205, 50, 0.4) !important;
    }
}

.page-index .text-destaque { 
    color: var(--verde-lima) !important; 
    font-weight: 600; 
}

.page-index .text-lilaz {
    color: var(--lilaz-light) !important;
}

/* NAVBAR (MOBILE-FIRST) */
.navbar { 
    background-color: rgba(18, 7, 29, 0.98) !important; 
    border-bottom: 2px solid var(--verde-lima); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 1rem;
    z-index: 1030;
}

.navbar .navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img,
.navbar-brand img {
    height: 42px !important;
    width: auto !important;
    max-height: 42px !important;
    display: block !important;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .navbar .navbar-brand img,
    .navbar-brand img {
        height: 48px !important;
        max-height: 48px !important;
    }
}

.navbar-brand img:hover { 
    transform: scale(1.04); 
}

.navbar .nav-link { 
    color: #ffffff !important; 
    font-weight: 500; 
    padding: 10px 14px !important;
    border-radius: 8px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
}

.navbar .nav-link:hover, .navbar .nav-link:focus { 
    color: var(--verde-lima) !important; 
    background-color: rgba(50, 205, 50, 0.12);
}

.navbar .nav-link.active { 
    color: var(--verde-lima) !important; 
    font-weight: 700; 
    background-color: rgba(50, 205, 50, 0.16);
}

.navbar-toggler { 
    border: 1.5px solid var(--verde-lima) !important; 
    padding: 8px 10px;
    border-radius: 8px;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.35) !important;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2332CD32' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 24px;
    height: 24px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(18, 7, 29, 0.98);
        border-radius: 12px;
        padding: 16px;
        margin-top: 12px;
        border: 1px solid rgba(50, 205, 50, 0.35);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    }
    .navbar-nav .nav-item {
        margin-bottom: 4px;
    }
}

/* HERO SECTION (MOBILE-FIRST) */
.page-index .hero-section {
    padding: 60px 0 40px; 
    border-bottom: 5px solid var(--verde-lima);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: auto;
}

@media (min-width: 768px) {
    .page-index .hero-section {
        padding: 100px 0 80px;
        min-height: 80vh;
    }
}

@media (min-width: 1200px) {
    .page-index .hero-section {
        padding: 130px 0 100px;
        min-height: 85vh;
    }
}

.page-index .carousel-bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #120024;
}

.page-index .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(147, 112, 219, 0.4) 0%, rgba(18, 7, 29, 0.92) 75%);
    z-index: 1;
}

.page-index .hero-content {
    z-index: 2;
    animation: fadeInUp 1s ease-out forwards;
}

/* BOTÕES (TOUCH TARGETS >= 48px) - GLOBAIS */
.btn-lima {
    background-color: var(--verde-lima) !important;
    color: #12071d !important;
    border: none !important;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    min-height: 48px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(50, 205, 50, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-lima:hover { 
    background-color: #38e338 !important; 
    color: #0d0416 !important; 
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.6);
}

.btn-outline-lima {
    color: var(--verde-lima) !important;
    border: 2px solid var(--verde-lima) !important;
    background-color: transparent !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    padding: 12px 24px;
    min-height: 48px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-lima:hover {
    background-color: var(--verde-lima) !important;
    color: #12071d !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.35);
}

.btn-outline-dark {
    color: var(--verde-lima) !important;
    border: 2px solid var(--verde-lima) !important;
    background-color: transparent !important;
    border-radius: 50px;
    min-height: 48px;
    font-weight: 600;
}

.btn-outline-dark:hover {
    background-color: var(--verde-lima) !important;
    color: #12071d !important;
}

.btn-demo {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    min-height: 44px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background-color: var(--verde-lima);
    color: #12071d !important;
    border-color: var(--verde-lima);
}

/* BENEFÍCIOS & ÍCONES MODERNOS */
.page-index .benefit-card {
    padding: 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(147, 112, 219, 0.25);
    transition: all 0.3s ease;
    height: 100%;
}

@media (min-width: 768px) {
    .page-index .benefit-card {
        padding: 24px;
        border-radius: 16px;
    }
}

.page-index .benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--verde-lima);
}

.page-index .icon-bubble {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(50, 205, 50, 0.15);
    border: 1px solid rgba(50, 205, 50, 0.35);
    color: var(--verde-lima);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.2);
}

@media (min-width: 768px) {
    .page-index .icon-bubble {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        font-size: 1.5rem;
    }
}

.page-index .icon-box { 
    color: var(--verde-lima); 
    font-size: 2rem; 
    margin-bottom: 0.85rem; 
}

/* CARDS PÚBLICO-ALVO */
.page-index .card-destinatarios {
    background: var(--lilas-card) !important;
    border: 1px solid var(--borda-suave) !important;
    border-top: 4px solid var(--verde-lima) !important;
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (min-width: 768px) {
    .page-index .card-destinatarios {
        border-radius: 20px;
        padding: 2rem;
    }
    .page-index .card-destinatarios:hover { 
        transform: translateY(-6px); 
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55), 0 0 25px rgba(50, 205, 50, 0.2) !important;
    }
}

.page-index .badge-pill-tech {
    background: rgba(147, 112, 219, 0.18);
    border: 1px solid rgba(147, 112, 219, 0.4);
    color: #ffffff;
    font-size: 0.82rem;
    padding: 7px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* TECH SERVIDORES */
.page-index .tech-server-visual { 
    position: relative; 
    width: 100%;
    max-width: 280px; 
    height: 170px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.page-index .server-rack { 
    width: 100%; 
    background: #0f0518; 
    border: 2px solid var(--verde-lima); 
    border-radius: 14px; 
    padding: 14px; 
    box-shadow: 0 12px 35px rgba(50, 205, 50, 0.25), inset 0 0 20px rgba(0,0,0,0.8); 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
    animation: flutuarServidor 4s ease-in-out infinite; 
}

.page-index .server-blade { 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(147, 112, 219, 0.3); 
    border-radius: 8px; 
    height: 34px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 0 12px; 
    position: relative; 
}

.page-index .server-blade.active { 
    border-color: rgba(50, 205, 50, 0.5); 
    background: rgba(50, 205, 50, 0.06); 
}

.page-index .server-line { 
    width: 45%; 
    height: 3px; 
    background: linear-gradient(90deg, var(--verde-lima) 0%, transparent 100%); 
    opacity: 0.8; 
    border-radius: 2px; 
}

.page-index .server-lights { 
    display: flex; 
    gap: 6px; 
}

.page-index .light { 
    width: 8px; 
    height: 8px; 
    border-radius: 50%; 
    display: inline-block; 
}

.page-index .light.green { 
    background-color: #00ff00; 
    box-shadow: 0 0 8px #00ff00; 
}

.page-index .light.blue { 
    background-color: #00d2ff; 
    box-shadow: 0 0 8px #00d2ff; 
}

.page-index .pulse-1 { animation: ledBlink 0.8s infinite alternate; }
.page-index .pulse-2 { animation: ledBlink 1.2s infinite alternate 0.3s; }
.page-index .pulse-3 { animation: ledBlink 1.5s infinite alternate 0.6s; }

.page-index .tech-badge-orbit i { 
    position: absolute; 
    font-size: 1.3rem; 
    background: var(--lilas-escuro); 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 2px solid var(--verde-lima); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.5); 
    z-index: 15; 
}

.page-index .orbit-item-1 { top: -12px; right: -12px; color: var(--verde-lima) !important; animation: flutuarServidor 3.5s ease-in-out infinite 0.5s; }
.page-index .orbit-item-2 { bottom: -12px; left: -12px; color: #ffffff !important; animation: flutuarServidor 4.5s ease-in-out infinite 1s; }

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

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

.page-index .img-confianca-circle {
    width: clamp(180px, 50vw, 260px);
    height: clamp(180px, 50vw, 260px);
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--verde-lima) !important;
    box-shadow: 0 0 25px rgba(50, 205, 50, 0.5), 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index .img-confianca-circle:hover {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(50, 205, 50, 0.75), 0 15px 35px rgba(0, 0, 0, 0.7);
}

/* ==========================================
   FAQ ACCORDION (GLOBAL DARK THEME // TOUCH OTIMIZADO)
   ========================================== */
body:not(.page-privacidade) .accordion,
.page-index .accordion,
.page-pratododia .accordion {
    --bs-accordion-bg: var(--lilas-card) !important;
    --bs-accordion-color: #ffffff !important;
    --bs-accordion-border-color: var(--borda-suave) !important;
    --bs-accordion-border-width: 1px !important;
    --bs-accordion-border-radius: 12px !important;
    --bs-accordion-inner-border-radius: 12px !important;
    --bs-accordion-btn-color: #ffffff !important;
    --bs-accordion-btn-bg: var(--lilas-card) !important;
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    --bs-accordion-btn-icon-transform: rotate(-180deg) !important;
    --bs-accordion-active-color: var(--verde-lima) !important;
    --bs-accordion-active-bg: rgba(50, 205, 50, 0.1) !important;
}

body:not(.page-privacidade) .accordion-item,
.page-index .accordion-item,
.page-pratododia .accordion-item {
    background-color: var(--lilas-card) !important;
    border: 1px solid var(--borda-suave) !important;
    border-radius: 12px !important;
    margin-bottom: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
    transition: all 0.3s ease !important;
}

body:not(.page-privacidade) .accordion-item:hover,
.page-index .accordion-item:hover,
.page-pratododia .accordion-item:hover {
    border-color: rgba(50, 205, 50, 0.45) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 15px rgba(50, 205, 50, 0.15) !important;
}

body:not(.page-privacidade) .accordion-header,
.page-index .accordion-header,
.page-pratododia .accordion-header {
    background-color: transparent !important;
    margin: 0 !important;
}

body:not(.page-privacidade) .accordion-button,
.page-index .accordion-button,
.page-pratododia .accordion-button {
    background-color: var(--lilas-card) !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: clamp(0.95rem, 2.2vw, 1.08rem) !important;
    padding: 18px 20px !important;
    min-height: 52px !important;
    box-shadow: none !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    transition: all 0.3s ease !important;
}

body:not(.page-privacidade) .accordion-button:not(.collapsed),
.page-index .accordion-button:not(.collapsed),
.page-pratododia .accordion-button:not(.collapsed) {
    color: var(--verde-lima) !important;
    background-color: rgba(50, 205, 50, 0.1) !important;
    border-bottom: 1px solid rgba(50, 205, 50, 0.25) !important;
}

body:not(.page-privacidade) .accordion-button:focus,
.page-index .accordion-button:focus,
.page-pratododia .accordion-button:focus {
    box-shadow: 0 0 0 2px rgba(50, 205, 50, 0.35) !important;
    outline: none !important;
}

body:not(.page-privacidade) .accordion-button::after,
.page-index .accordion-button::after,
.page-pratododia .accordion-button::after {
    filter: invert(1) brightness(1.5) !important;
    transition: transform 0.3s ease !important;
}

body:not(.page-privacidade) .accordion-button:not(.collapsed)::after,
.page-index .accordion-button:not(.collapsed)::after,
.page-pratododia .accordion-button:not(.collapsed)::after {
    filter: invert(70%) sepia(80%) saturate(500%) hue-rotate(80deg) brightness(1.2) !important;
}

body:not(.page-privacidade) .accordion-body,
.page-index .accordion-body,
.page-pratododia .accordion-body {
    background-color: rgba(18, 7, 29, 0.85) !important;
    color: #ffffff !important;
    padding: 18px 20px !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    border-top: 1px solid rgba(147, 112, 219, 0.15) !important;
}

body:not(.page-privacidade) .accordion-body strong,
.page-index .accordion-body strong,
.page-pratododia .accordion-body strong {
    color: #ffffff !important;
}

.bg-custom-darker {
    background-color: rgba(18, 7, 29, 0.6) !important;
}

/* GOOGLE WAVE ANIMATION */
.page-index .g-blue { color: #4285f4; }
.page-index .g-red { color: #ea4335; }
.page-index .g-yellow { color: #fbbc05; }
.page-index .g-green { color: #34a853; }
.page-index .google-wave span {
    display: inline-block;
    animation: saltitarWave 2.5s infinite ease-in-out;
}
.page-index .google-wave span:nth-child(1) { animation-delay: 0.0s; }
.page-index .google-wave span:nth-child(2) { animation-delay: 0.15s; }
.page-index .google-wave span:nth-child(3) { animation-delay: 0.3s; }
.page-index .google-wave span:nth-child(4) { animation-delay: 0.45s; }
.page-index .google-wave span:nth-child(5) { animation-delay: 0.6s; }
.page-index .google-wave span:nth-child(6) { animation-delay: 0.75s; }

@keyframes saltitarWave {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        filter: brightness(1);
    }
    15% { 
        transform: translateY(-6px) scale(1.08); 
        filter: brightness(1.3);
        text-shadow: 0 10px 15px rgba(255, 255, 255, 0.4);
    }
}

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

/* BOTÃO FACEBOOK & SUPER DESTAQUE */
@keyframes facebook-color-pulse {
    0%, 100% {
        background-color: #1877F2;
        color: #ffffff;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.4);
    }
    50% {
        background-color: #ffffff;
        color: #1877F2;
        transform: scale(1.02);
        box-shadow: 0 0 16px rgba(24, 119, 242, 0.6);
    }
}

.btn-fb-pulse-alternating {
    animation: facebook-color-pulse 3s infinite ease-in-out;
    border: 2px solid #1877F2 !important;
    transition: all 0.3s ease;
    font-weight: 700 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-fb-pulse-alternating:hover {
    animation: none;
    transform: scale(1.03);
    background-color: #1877F2 !important;
    color: #ffffff !important;
}

@keyframes mudarCor {
    0% { background-color: #32CD32; }    
    50% { background-color: #9370DB; }  
    100% { background-color: #32CD32; } 
}

@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(50, 205, 50, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 0 16px rgba(50, 205, 50, 0.5); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(50, 205, 50, 0); }
}

.btn-super-destaque {
    animation: mudarCor 4s infinite ease-in-out, pulse-animation 3s infinite ease-in-out;
    color: #ffffff !important;
    border: none !important;
    transition: background-color 0.5s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-super-destaque:hover {
    animation: none;
    background-color: #ffffff !important;
    color: var(--lilas-escuro) !important;
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hover-lima:hover { 
    color: var(--verde-lima) !important; 
    transition: 0.3s; 
}

.page-index footer a.text-white:hover { 
    color: var(--verde-lima) !important; 
    transition: 0.3s ease; 
}


/* ==========================================
   3. PAGE: SOBREMIM.HTML (MOBILE-FIRST)
   ========================================== */
body.page-sobremim { 
    font-family: 'Poppins', sans-serif; 
    color: #ffffff; 
    background-color: var(--lilaz-bg); 
    overflow-x: hidden;
    line-height: 1.7;
}

.page-sobremim .bg-lilas-escuro { 
    background-color: var(--lilas-escuro) !important; 
}

.page-sobremim h1, .page-sobremim h2, .page-sobremim h3, .page-sobremim h4, .page-sobremim h5, .page-sobremim h6 {
    font-family: 'Montserrat', sans-serif !important;
    color: #ffffff !important;
}

.page-sobremim p, .page-sobremim li, .page-sobremim span {
    color: #ffffff;
}

.page-sobremim .text-muted, .page-sobremim .small, .page-sobremim small, .page-sobremim p strong {
    color: var(--texto-muted) !important;
}

.page-sobremim .text-lima { color: var(--verde-lima) !important; }
.page-sobremim .text-lilaz { color: var(--lilaz-light) !important; }

.page-sobremim .about-header {
    position: relative;
    padding: 70px 0 45px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    border-bottom: 5px solid var(--verde-lima);
    margin-bottom: 30px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .page-sobremim .about-header {
        padding: 100px 0 70px 0;
        margin-bottom: 45px;
    }
}

.page-sobremim .header-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.9;
}

.page-sobremim .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.4) 0%, rgba(26, 13, 41, 0.88) 100%);
    z-index: 2;
}

.page-sobremim .profile-img {
    width: clamp(180px, 45vw, 240px); 
    height: clamp(180px, 45vw, 240px);
    object-fit: cover; 
    border-radius: 50%; 
    border: 4px solid var(--verde-lima);
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.6), 0 0 40px rgba(50, 205, 50, 0.3);
    animation: glowPulse 3s infinite alternate ease-in-out;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 15px rgba(50, 205, 50, 0.4); transform: scale(1); }
    100% { box-shadow: 0 0 30px rgba(50, 205, 50, 0.8), 0 0 50px rgba(50, 205, 50, 0.3); transform: scale(1.02); }
}

@media (min-width: 992px) {
    .page-sobremim .sticky-profile-column {
        position: -webkit-sticky;
        position: sticky;
        top: 100px; 
        align-self: flex-start;
        z-index: 10;
    }
}

.page-sobremim .profile-card {
    background-color: var(--lilas-escuro);
    border-radius: 16px;
    border: 1px solid rgba(147, 112, 219, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    padding: 1.5rem;
}

.page-sobremim .badge-skill {
    background-color: rgba(147, 112, 219, 0.22);
    color: #ffffff;
    border: 1px solid var(--lilaz);
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 50px;
    margin: 3px;
    display: inline-block;
    font-size: 0.82rem;
    transition: all 0.2s ease;
}

.page-sobremim .badge-skill:hover {
    background-color: var(--verde-lima) !important;
    color: var(--lilas-escuro) !important;
    border-color: var(--verde-lima) !important;
    transform: translateY(-2px);
}

.page-sobremim .professional-timeline {
    border-left: 2px solid rgba(50, 205, 50, 0.6);
    padding-left: 24px;
    margin-left: 10px;
    position: relative;
}

@media (min-width: 768px) {
    .page-sobremim .professional-timeline {
        padding-left: 35px;
        margin-left: 15px;
    }
}

.page-sobremim .timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.page-sobremim .timeline-item:last-child { 
    margin-bottom: 0; 
}

.page-sobremim .timeline-item::before {
    content: '';
    position: absolute;
    left: -31px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--verde-lima);
    box-shadow: 0 0 10px rgba(50, 205, 50, 0.8);
    border: 2px solid var(--lilas-escuro);
}

@media (min-width: 768px) {
    .page-sobremim .timeline-item::before {
        left: -42px;
        width: 16px;
        height: 16px;
        border-width: 3px;
    }
}

.page-sobremim .timeline-date {
    font-size: 0.82rem;
    color: var(--verde-lima);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
    display: block;
}

.page-sobremim .kokanisa-box {
    background: linear-gradient(145deg, var(--lilas-escuro), rgba(46, 26, 71, 0.85));
    border-left: 4px solid var(--verde-lima);
    border-radius: 0 14px 14px 0;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    position: relative;
}

@media (min-width: 768px) {
    .page-sobremim .kokanisa-box {
        border-left-width: 5px;
        border-radius: 0 16px 16px 0;
        padding: 2.5rem;
    }
}

.page-sobremim .timeline-card {
    background-color: var(--lilas-escuro);
    border: 1px solid rgba(147, 112, 219, 0.2);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    margin-top: 8px;
}

@media (min-width: 768px) {
    .page-sobremim .timeline-card {
        padding: 25px;
        border-radius: 16px;
    }
}

.page-sobremim .showcase-card {
    background: linear-gradient(135deg, var(--lilas-escuro) 0%, rgba(46, 26, 71, 0.95) 100%);
    border: 1px solid rgba(50, 205, 50, 0.3);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

@media (min-width: 768px) {
    .page-sobremim .showcase-card {
        border-radius: 20px;
        padding: 35px;
    }
}

.page-sobremim .hobbies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
}

@media (min-width: 576px) {
    .page-sobremim .hobbies-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 18px;
    }
}

.page-sobremim .hobby-card {
    background-color: rgba(26, 13, 41, 0.6);
    border: 1px solid rgba(147, 112, 219, 0.2);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    height: 100%;
}

.page-sobremim .hobby-icon-box {
    width: 42px;
    height: 42px;
    background-color: rgba(50, 205, 50, 0.12);
    border: 1px solid rgba(50, 205, 50, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde-lima);
    font-size: 1.25rem;
    margin-bottom: 12px;
}


/* ==========================================
   4. PAGE: PRATODODIA.HTML (MOBILE-FIRST)
   ========================================== */
body.page-pratododia { 
    font-family: 'Poppins', sans-serif; 
    color: #ffffff; 
    background-color: var(--lilaz-bg); 
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.page-pratododia h1, .page-pratododia h2, .page-pratododia h3, .page-pratododia h4, .page-pratododia h5, .page-pratododia h6 {
    font-family: 'Montserrat', sans-serif !important;
    color: #ffffff !important;
}

.page-pratododia p, .page-pratododia li, .page-pratododia span {
    color: #ffffff;
}

.page-pratododia .prato-header {
    background: linear-gradient(to bottom, rgba(46, 26, 71, 0.85), var(--lilaz-bg)), url('https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(50, 205, 50, 0.25);
}

@media (min-width: 768px) {
    .page-pratododia .prato-header {
        padding: 110px 0 75px;
    }
}

.page-pratododia .price-tag {
    background: var(--verde-lima);
    color: var(--lilas-escuro);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: clamp(0.92rem, 2vw, 1.1rem);
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.35);
    display: inline-block;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-pratododia .detail-card {
    background-color: var(--lilas-escuro);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 22px 18px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

@media (min-width: 768px) {
    .page-pratododia .detail-card {
        border-radius: 16px;
        padding: 30px 22px;
    }
}

.page-pratododia .icon-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.25), rgba(50, 205, 50, 0.08));
    color: var(--verde-lima);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 18px;
    border: 1px solid rgba(50, 205, 50, 0.3);
}

/* Phone Mockup */
.page-pratododia .phone-mockup {
    border: 10px solid #282828;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
    background: var(--lilas-escuro);
    max-width: 270px;
    margin: 0 auto;
    border-top-width: 12px;
    border-bottom-width: 12px;
    position: relative;
}

@media (min-width: 768px) {
    .page-pratododia .phone-mockup {
        border-width: 12px;
        border-top-width: 14px;
        border-bottom-width: 14px;
        border-radius: 36px;
        max-width: 290px;
    }
}

.page-pratododia .phone-screen {
    background: #120b1f;
    color: #ffffff;
    padding: 14px;
    font-size: 0.82rem;
    height: 380px;
    overflow-y: auto;
}

/* Calculadora Interativa Prato do Dia */
.page-pratododia .calculator-box {
    background-color: var(--lilas-escuro);
    border: 1px solid rgba(50, 205, 50, 0.3);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

@media (min-width: 768px) {
    .page-pratododia .calculator-box {
        border-radius: 20px;
        padding: 30px;
    }
}

.page-pratododia .calc-option-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .page-pratododia .calc-option-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

.page-pratododia .calc-btn {
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.18);
    color: #ffffff;
    padding: 12px 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    min-height: 46px;
    transition: all 0.25s ease;
    cursor: pointer;
    text-align: center;
}

.page-pratododia .calc-btn.active {
    background: var(--verde-lima);
    color: var(--lilas-escuro);
    border-color: var(--verde-lima);
    font-weight: 700;
}

.page-pratododia .calc-range {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    margin: 14px 0;
}

.page-pratododia .calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--verde-lima);
    cursor: pointer;
    box-shadow: 0 0 12px rgba(50, 205, 50, 0.7);
}

.page-pratododia .calc-result-box {
    background: rgba(50, 205, 50, 0.08);
    border: 1px dashed rgba(50, 205, 50, 0.4);
    border-radius: 14px;
    padding: 18px;
    height: 100%;
}

.page-pratododia .calc-stat-val {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--verde-lima);
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    line-height: 1.1;
}

/* Comparação Prato do Dia */
.page-pratododia .compare-card-red,
.page-pratododia .compare-card-green {
    border-radius: 16px;
    padding: 20px;
    height: 100%;
}

.page-pratododia .compare-card-red {
    border: 1px solid rgba(220, 53, 69, 0.3);
    background: rgba(220, 53, 69, 0.05);
}

.page-pratododia .compare-card-green {
    border: 1px solid rgba(50, 205, 50, 0.3);
    background: rgba(50, 205, 50, 0.08);
}

.page-pratododia .compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-pratododia .compare-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #ffffff;
}

.page-pratododia .compare-list li::before {
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.05rem;
}

.page-pratododia .compare-list-red li::before {
    content: "\F622";
    color: #dc3545;
}

.page-pratododia .compare-list-green li::before {
    content: "\F26B";
    color: var(--verde-lima);
}

/* Infinite Marquee Ticker */
.page-pratododia .prato-ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: rgba(20, 10, 32, 0.98);
    border-top: 1px solid rgba(50, 205, 50, 0.35);
    border-bottom: 1px solid rgba(50, 205, 50, 0.35);
    padding: 10px 0;
    white-space: nowrap;
}

.page-pratododia .prato-ticker {
    display: inline-flex;
    animation: tickerInfinite 28s linear infinite;
    gap: 25px;
    align-items: center;
}

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

/* Container Responsivo do Google Maps */
.page-pratododia .maps-wrapper {
    border: 2px solid rgba(50, 205, 50, 0.4);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    width: 100%;
    min-height: 280px;
    height: clamp(280px, 45vw, 420px);
    position: relative;
    overflow: hidden;
    background-color: #12071d;
}

.page-pratododia .maps-iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    border: 0 !important;
    display: block !important;
}

.page-pratododia .maps-badge {
    background: rgba(26, 13, 41, 0.92);
    border: 1.5px solid var(--verde-lima);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 5;
    padding: 6px 16px;
}


/* ==========================================
   5. PAGE: BLOG.HTML (MOBILE-FIRST)
   ========================================== */
body.page-blog { 
    font-family: 'Poppins', sans-serif; 
    color: #ffffff; 
    background-color: var(--lilaz-bg); 
    overflow-x: hidden;
}

.page-blog h1, .page-blog h2, .page-blog h3, .page-blog h4, .page-blog h5, .page-blog h6 {
    font-family: 'Montserrat', sans-serif !important;
    color: #ffffff !important;
}

.page-blog p, .page-blog li, .page-blog span {
    color: #ffffff;
}

.page-blog .blog-hero {
    position: relative;
    padding: 60px 0 35px;
    background: linear-gradient(180deg, var(--lilas-escuro) 0%, var(--lilaz-bg) 100%);
    border-bottom: 2px solid rgba(50, 205, 50, 0.25);
    overflow: hidden;
}

@media (min-width: 768px) {
    .page-blog .blog-hero {
        padding: 85px 0 50px;
    }
}

/* Banner de Atalho para WordPress */
.page-blog .wp-version-banner {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    background: linear-gradient(135deg, rgba(26, 13, 41, 0.95), rgba(46, 26, 71, 0.95)) !important;
    border: 2px solid var(--verde-lima) !important;
    border-radius: 50px !important;
    padding: 10px 22px !important;
    text-decoration: none !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.25) !important;
    transition: all 0.3s ease !important;
    max-width: 100% !important;
}

.page-blog .wp-version-banner:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 28px rgba(50, 205, 50, 0.45) !important;
    border-color: #38e338 !important;
    color: #ffffff !important;
}

.page-blog .wp-version-banner img {
    height: 32px !important;
    width: auto !important;
    flex-shrink: 0 !important;
    display: block !important;
}

.page-blog .highlight-wp {
    color: var(--verde-lima) !important;
    font-weight: 700 !important;
}

.page-blog .blog-subtitle {
    color: var(--verde-lima) !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    font-size: clamp(0.75rem, 2vw, 0.85rem) !important;
    letter-spacing: 2px !important;
    margin-bottom: 0.5rem !important;
}

.page-blog .category-badge {
    display: inline-block !important;
    background: rgba(50, 205, 50, 0.15) !important;
    color: var(--verde-lima) !important;
    border: 1px solid rgba(50, 205, 50, 0.35) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 4px 12px !important;
    border-radius: 50px !important;
    margin-bottom: 0.6rem !important;
    align-self: flex-start !important;
}

.page-blog .blog-card {
    background-color: var(--lilas-escuro) !important;
    border: 2px solid rgba(50, 205, 50, 0.25) !important;
    border-radius: 14px !important;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.page-blog .blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(50, 205, 50, 0.5) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(50, 205, 50, 0.15);
}

.page-blog .blog-card-img-wrapper {
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 10;
    width: 100%;
}

.page-blog .blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-blog .blog-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .page-blog .blog-card-body {
        padding: 1.5rem;
    }
}

.page-blog .blog-card-title,
.page-blog h2.blog-card-title {
    font-size: clamp(1.02rem, 1.6vw, 1.18rem) !important;
    font-weight: 700 !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.6rem !important;
    color: #ffffff !important;
    line-height: 1.4 !important;
}

.page-blog .blog-card-excerpt {
    font-size: 0.92rem;
    color: var(--texto-muted) !important;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.page-blog .btn-read-more {
    background: transparent;
    color: var(--verde-lima);
    border: 2px solid var(--verde-lima);
    padding: 8px 18px;
    min-height: 44px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.page-blog .btn-read-more:hover {
    background: var(--verde-lima);
    color: var(--lilas-escuro);
}

.page-blog .modal-content {
    background-color: var(--lilas-escuro) !important;
    border: 2px solid var(--verde-lima) !important;
    color: #ffffff !important;
    border-radius: 16px !important;
}

.page-blog .post-content-full p {
    line-height: 1.75;
    font-size: 1rem;
    color: #ffffff !important;
    margin-bottom: 1rem;
}

/* ==========================================
   6. PAGE: CONTATO.HTML (MOBILE-FIRST)
   ========================================== */
body.page-contato { 
    font-family: 'Poppins', sans-serif; 
    color: #ffffff; 
    background-color: var(--lilaz-bg); 
    overflow-x: hidden;
}

.page-contato h1, .page-contato h2, .page-contato h3, .page-contato h4, .page-contato h5, .page-contato h6,
.page-contato .form-label {
    font-family: 'Montserrat', sans-serif !important;
    color: #ffffff !important;
}

.page-contato p, .page-contato li, .page-contato span {
    color: #ffffff;
}

.page-contato .contact-header {
    position: relative;
    padding: 50px 0 35px;
    min-height: 220px;
    max-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid var(--verde-lima);
    text-align: center;
    overflow: hidden;
    background: #12071d;
}

@media (min-width: 768px) {
    .page-contato .contact-header {
        padding: 70px 0 50px;
        min-height: 260px;
        max-height: 340px;
    }
}

.page-contato .contact-header-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.92;
    filter: contrast(1.08) brightness(0.95);
    pointer-events: none;
}

.page-contato .contact-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(18, 7, 29, 0.4) 0%, rgba(18, 7, 29, 0.85) 100%);
    z-index: 2;
}

.page-contato .contact-card {
    background: var(--lilas-card) !important;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45); 
    padding: 22px;
    border: 2px solid var(--verde-lima) !important; 
    color: #ffffff !important;
    height: 100%;
}

@media (min-width: 768px) {
    .page-contato .contact-card {
        padding: 32px;
    }
}

.page-contato .contact-card h3 {
    color: #ffffff !important;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
}

.page-contato .form-label {
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    margin-bottom: 7px !important;
    display: inline-block;
}

.page-contato .form-control, 
.page-contato .form-select {
    background-color: rgba(18, 7, 29, 0.85) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(147, 112, 219, 0.45) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    min-height: 50px !important;
    font-size: 16px !important;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.3s ease !important;
}

.page-contato .form-control::placeholder {
    color: rgba(228, 221, 242, 0.65) !important;
    opacity: 1 !important;
}

.page-contato .form-control:focus, 
.page-contato .form-select:focus {
    background-color: rgba(26, 13, 41, 0.98) !important;
    color: #ffffff !important;
    border-color: var(--verde-lima) !important;
    box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.3) !important;
    outline: none !important;
}

/* Corrigir opções do Dropdown (Select) */
.page-contato .form-select option {
    background-color: #12071d !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    padding: 10px !important;
}

.page-contato textarea.form-control {
    min-height: 130px !important;
    resize: vertical;
}

.page-contato .info-icon {
    width: 48px; 
    height: 48px;
    background: rgba(50, 205, 50, 0.18) !important;
    color: var(--verde-lima) !important;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.35rem;
    border: 1.5px solid rgba(50, 205, 50, 0.4);
    flex-shrink: 0;
}

.page-contato .contact-link {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.page-contato .contact-link:hover { 
    color: var(--verde-lima) !important; 
}

.page-contato .social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-contato .social-link:hover {
    background: var(--verde-lima);
    color: #12071d !important;
    border-color: var(--verde-lima);
    transform: translateY(-2px);
}

.page-contato .btn-enviar {
    background-color: var(--verde-lima) !important;
    color: var(--lilas-escuro) !important;
    border: none;
    padding: 14px 30px;
    font-weight: 700;
    min-height: 48px;
    width: 100%;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media (min-width: 576px) {
    .page-contato .btn-enviar {
        width: auto;
        min-width: 220px;
    }
}

.page-contato .btn-enviar:hover {
    background-color: #28a745 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.6);
}

.page-contato .boneco-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 2rem;
}

.page-contato .boneco-img {
    max-width: clamp(200px, 45vw, 340px);
    width: 100%;
    height: auto;
    display: block;
}


/* ==========================================
   7. PAGE: BRIEFING.HTML (MOBILE-FIRST WIZARD)
   ========================================== */
body.page-briefing { 
    font-family: 'Poppins', sans-serif; 
    color: #ffffff; 
    background-color: var(--lilaz-bg); 
    overflow-x: hidden;
}

.page-briefing h1, .page-briefing h2, .page-briefing h3, .page-briefing h4, .page-briefing h5, .page-briefing h6 {
    font-family: 'Montserrat', sans-serif !important;
    color: #ffffff !important;
}

.page-briefing p, .page-briefing li, .page-briefing span {
    color: #ffffff;
}

.page-briefing .form-card {
    background-color: var(--lilas-escuro) !important;
    border: 2px solid var(--verde-lima) !important;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    margin-bottom: 1.25rem !important;
}

.page-briefing .form-card-header {
    background-color: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.9rem 1.25rem;
    border-radius: 12px 12px 0 0;
}

.page-briefing .form-card-header h2 {
    margin: 0;
    font-size: clamp(1.05rem, 3vw, 1.25rem);
    color: var(--verde-lima) !important;
    font-weight: 700;
}

.page-briefing .form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
}

.page-briefing .form-control, .page-briefing .form-select {
    background-color: rgba(18, 7, 29, 0.85) !important;
    border: 1.5px solid rgba(147, 112, 219, 0.45) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    min-height: 48px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.page-briefing .form-control::placeholder {
    color: rgba(228, 221, 242, 0.65) !important;
    opacity: 1 !important;
}

.page-briefing .form-control:focus, .page-briefing .form-select:focus {
    background-color: rgba(26, 13, 41, 0.98) !important;
    color: #ffffff !important;
    border-color: var(--verde-lima) !important;
    box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.3) !important;
    outline: none !important;
}

.page-briefing .form-select option {
    background-color: #12071d !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    padding: 10px !important;
}

.page-briefing .obrigatorio::after {
    content: " *";
    color: #ff4d4d;
}

/* Multi-step Wizard Progress Bar (Mobile-First) */
.page-briefing .step-progress-wrapper {
    margin: 20px auto 35px;
    max-width: 700px;
    position: relative;
    padding: 0 5px;
}

.page-briefing .step-progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.page-briefing .step-progress-line {
    position: absolute;
    top: 18px;
    left: 10px;
    right: 10px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.page-briefing .step-progress-line-fill {
    position: absolute;
    top: 18px;
    left: 10px;
    height: 3px;
    background-color: var(--verde-lima);
    width: 0%;
    z-index: 0;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(50, 205, 50, 0.6);
}

.page-briefing .step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    flex: 1;
}

.page-briefing .step-node-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--lilas-escuro);
    border: 2px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .page-briefing .step-node-number {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

.page-briefing .step-node.active .step-node-number {
    border-color: var(--verde-lima);
    color: var(--verde-lima);
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.55);
}

.page-briefing .step-node.completed .step-node-number {
    background-color: var(--verde-lima);
    border-color: var(--verde-lima);
    color: var(--lilas-escuro);
}

.page-briefing .step-node-label {
    margin-top: 8px;
    font-size: clamp(0.68rem, 1.8vw, 0.78rem);
    font-weight: 600;
    color: var(--texto-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
    line-height: 1.2;
    max-width: 80px;
}

@media (min-width: 768px) {
    .page-briefing .step-node-label {
        max-width: 120px;
        font-size: 0.82rem;
    }
}

.page-briefing .step-node.active .step-node-label {
    color: #ffffff;
    font-weight: 700;
}

.page-briefing .step-node.completed .step-node-label {
    color: var(--verde-lima);
}

/* Step Panels */
.page-briefing .step-panel {
    display: none;
}

.page-briefing .step-panel.active {
    display: block;
    animation: fadeInStep 0.4s ease-out forwards;
}

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

/* Step Navigation Buttons */
.page-briefing .step-navigation {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    margin-top: 25px;
}

@media (min-width: 576px) {
    .page-briefing .step-navigation {
        flex-direction: row;
        justify-content: space-between;
    }
}

.page-briefing .btn-prev {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 12px 26px;
    min-height: 48px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.page-briefing .btn-next {
    background-color: var(--verde-lima);
    color: var(--lilas-escuro) !important;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    min-height: 48px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
    transition: all 0.3s ease;
}

/* Dropzone & Preview */
.page-briefing .file-dropzone {
    background: rgba(255, 255, 255, 0.04);
    border: 2px dashed rgba(50, 205, 50, 0.45);
    border-radius: 12px;
    padding: 24px 16px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.page-briefing .file-preview-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(147, 112, 219, 0.35);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Choice Cards */
.page-briefing .choice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 576px) {
    .page-briefing .choice-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 14px;
    }
}

.page-briefing .choice-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    min-height: 48px;
    transition: all 0.25s ease;
    user-select: none;
}

.page-briefing .choice-card-input:checked + .choice-card {
    background: rgba(50, 205, 50, 0.16) !important;
    border-color: var(--verde-lima) !important;
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.3) !important;
}

/* Chips Grid */
.page-briefing .chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.page-briefing .chip-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    min-height: 44px;
    transition: all 0.2s ease;
}

.page-briefing .chip-input:checked + .chip-label {
    background: rgba(50, 205, 50, 0.22) !important;
    border-color: var(--verde-lima) !important;
    color: #ffffff !important;
    font-weight: 600;
}


/* ==========================================
   8. PAGE: CLICKS.HTML (VÍDEO NÍTIDO & BANNER COMPACTO)
   ========================================== */
body.page-clicks { 
    font-family: 'Poppins', sans-serif; 
    color: #ffffff; 
    background-color: var(--lilaz-bg); 
    overflow-x: hidden;
}

.page-clicks .clicks-header { 
    position: relative;
    padding: 45px 0 35px;
    min-height: 230px;
    max-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid var(--verde-lima);
    overflow: hidden;
}

@media (min-width: 768px) {
    .page-clicks .clicks-header {
        padding: 65px 0 50px;
        min-height: 270px;
        max-height: 360px;
    }
}

.page-clicks .header-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0.92; /* Vídeo nítido e com alta opacidade */
    filter: contrast(1.08) brightness(0.95);
}

.page-clicks .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(18, 7, 29, 0.42) 0%, rgba(18, 7, 29, 0.68) 100%);
    z-index: 2;
}

.page-clicks .clicks-header h1 {
    font-size: clamp(1.6rem, 4.5vw, 2.6rem) !important;
    text-shadow: 0 3px 14px rgba(0,0,0,0.85);
    margin-bottom: 0.75rem !important;
}

.page-clicks .clicks-header p.lead {
    font-size: clamp(0.95rem, 2.2vw, 1.15rem) !important;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.85);
    opacity: 1 !important;
    line-height: 1.55 !important;
    max-width: 650px;
}

.page-clicks .gallery-container { 
    padding: 35px 10px; 
}

@media (min-width: 768px) {
    .page-clicks .gallery-container { 
        padding: 55px 15px; 
    }
}

.page-clicks .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: #12061c;
    padding: 8px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.35); 
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-clicks .gallery-item:hover {
    transform: translateY(-3px);
    border-color: rgba(50, 205, 50, 0.4);
}

.page-clicks .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}


/* ==========================================
   9. PAGE: PAGAMENTO.HTML (MOBILE-FIRST)
   ========================================== */
body.page-pagamento { 
    font-family: 'Poppins', sans-serif; 
    color: #ffffff; 
    background-color: var(--lilaz-bg); 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh;
}

.page-pagamento h1, .page-pagamento h2, .page-pagamento h3, .page-pagamento h4, .page-pagamento h5, .page-pagamento h6 {
    color: #ffffff !important;
}

.page-pagamento p, .page-pagamento li, .page-pagamento span {
    color: #ffffff;
}

.page-pagamento .pricing-card { 
    background-color: var(--lilas-escuro) !important; 
    color: #ffffff !important; 
    border: 1px solid rgba(255, 255, 255, 0.12) !important; 
    border-radius: 16px; 
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.page-pagamento .price-amount {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--verde-lima);
    font-family: 'Montserrat', sans-serif;
}

.page-pagamento .btn-lima { 
    background-color: var(--verde-lima); 
    color: var(--lilas-escuro); 
    border: none; 
    padding: 14px 24px; 
    min-height: 48px;
    font-weight: 700; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s; 
}

.page-pagamento .trust-banner {
    background: linear-gradient(135deg, rgba(26, 13, 41, 0.8) 0%, rgba(46, 26, 71, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 4px solid var(--verde-lima);
    border-radius: 8px;
    padding: 16px 20px;
}


/* ==========================================
   10. PAGE: PRIVACIDADE.HTML (MOBILE-FIRST)
   ========================================== */
body.page-privacidade { 
    font-family: 'Poppins', sans-serif; 
    background-color: var(--cinza-suave); 
    color: #333333;
    line-height: 1.7;
}

.page-privacidade .privacy-container {
    max-width: 850px;
    margin: 25px auto;
    background: var(--branco) !important;
    padding: 24px 18px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-top: 6px solid var(--lilaz);
}

@media (min-width: 768px) {
    .page-privacidade .privacy-container {
        margin: 50px auto;
        padding: 45px;
        border-radius: 20px;
        border-top-width: 8px;
    }
}

.page-privacidade h1 { 
    color: var(--lilaz); 
    font-weight: 700; 
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 20px; 
}

.page-privacidade h2 { 
    color: var(--verde-lima); 
    font-size: clamp(1.15rem, 3vw, 1.4rem); 
    font-weight: 600; 
    margin-top: 30px; 
    border-left: 4px solid var(--verde-lima);
    padding-left: 12px;
}

.page-privacidade .btn-back {
    background-color: var(--lilaz);
    color: white !important;
    border-radius: 50px;
    padding: 12px 28px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}


/* ==========================================
   11. COMPONENTES GLOBAIS E FLOATING WIDGETS
   ========================================== */
footer.bg-dark {
    background-color: var(--lilas-escuro) !important;
    padding-bottom: calc(2rem + var(--safe-area-bottom)) !important;
}

footer a.hover-lima:hover {
    color: var(--verde-lima) !important;
}

/* WHATSAPP FLOATING WIDGET */
.wa-widget-wrapper {
    position: fixed;
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    right: 16px;
    z-index: 10050;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
    .wa-widget-wrapper {
        bottom: 24px;
        right: 24px;
    }
}

.wa-floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    outline: none;
}

@media (min-width: 768px) {
    .wa-floating-btn {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
}

.wa-floating-btn:hover {
    transform: scale(1.08) translateY(-2px);
}

.wa-badge-pulse {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 13px;
    height: 13px;
    background-color: #32CD32;
    border: 2px solid #ffffff;
    border-radius: 50%;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(50, 205, 50, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(50, 205, 50, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(50, 205, 50, 0); }
}

.wa-popup-card {
    position: fixed;
    bottom: max(78px, calc(env(safe-area-inset-bottom, 16px) + 64px));
    right: 16px;
    width: 320px;
    max-width: calc(100vw - 32px);
    background: #180c26;
    border: 2px solid var(--verde-lima, #32CD32);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(50, 205, 50, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 10051;
    animation: waSlideUp 0.35s ease-out;
}

@media (min-width: 768px) {
    .wa-popup-card {
        bottom: 96px;
        right: 24px;
        border-radius: 18px;
    }
}

@keyframes waSlideUp {
    from { opacity: 0; transform: translateY(15px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-popup-header {
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.3) 0%, rgba(30, 14, 48, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-avatar-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--verde-lima, #32CD32);
    flex-shrink: 0;
    position: relative;
}

.wa-avatar-img {
    width: 80%;
    height: auto;
}

.wa-close-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-popup-body {
    padding: 14px;
    background: #140a20;
}

.wa-input {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-size: 16px !important;
}

.wa-btn-send {
    background: var(--verde-lima, #32CD32) !important;
    color: #12071d !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    min-height: 44px;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    width: 100%;
}

/* COOKIE BANNER */
.cookie-banner { 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    background: var(--lilas-escuro); 
    z-index: 10000; 
    display: none; 
    border-top: 3px solid var(--verde-lima); 
    transform: translateZ(0);
    will-change: transform;
    padding-bottom: var(--safe-area-bottom);
}

.cookie-banner .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   MODAL: EXEMPLOS DE WEBSITES COMPLETOS
   ========================================== */
.modal-exemplos-websites .modal-dialog {
    max-width: 1100px;
}

.modal-exemplos-content {
    background-color: var(--lilas-escuro) !important;
    background: linear-gradient(165deg, rgba(28, 14, 44, 0.98) 0%, rgba(18, 7, 29, 0.99) 100%) !important;
    border: 2px solid var(--verde-lima) !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(50, 205, 50, 0.3) !important;
    color: #ffffff !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.modal-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(50, 205, 50, 0.15);
    border: 1px solid var(--verde-lima);
    flex-shrink: 0;
}

.demo-card {
    background: rgba(26, 13, 40, 0.9);
    border: 1px solid var(--borda-suave);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-6px);
    border-color: var(--verde-lima);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65), 0 0 25px rgba(50, 205, 50, 0.25);
}

.demo-card-img-wrap {
    height: 180px;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(38, 19, 58, 0.9) 0%, rgba(15, 7, 24, 0.98) 100%);
    border-bottom: 1px solid rgba(147, 112, 219, 0.2);
    position: relative;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-card-img {
    max-height: 100%;
    max-width: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.6));
    border-radius: 8px;
}

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

.demo-card-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e4ddf2;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.demo-card:hover .feature-tag {
    background: rgba(50, 205, 50, 0.08);
    border-color: rgba(50, 205, 50, 0.25);
}