/* --- Variáveis CSS globais --- */
:root {
    /* ✨ Paleta Ballet Premium: Rose · Preto · Branco · Ouro Estratégico */

    /* Rosa principal — botões de CTA, destaques de ação */
    --color-primary: #C9506E;
    --color-primary-hover: #A83C58;

    /* Dourado — APENAS em estrelas, selos, bordas especiais, preço riscado */
    --color-orange: #B8973A;
    --color-orange-hover: #9C7E2E;
    --color-orange-light: #FBF7EE; /* Creme levíssimo para fundos de destaque */

    /* Fundos */
    --bg-light: #FFFFFF;
    --bg-light-gray: #FAF9F7; /* Off-white quente — elegante */
    --bg-dark: #0F0F0F;       /* Preto absoluto para seções premium */
    --bg-dark-card: #1A1A1A;  /* Preto suavizado para cards */

    /* Textos */
    --text-dark: #1A1A1A;     /* Preto elegante */
    --text-gray: #555555;
    --text-gray-light: #B0B0B0;
    --text-white: #FFFFFF;

    /* Borda */
    --border-color: #EBEBEB;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.09);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);

    --space-sm: 12px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
}

h1 { font-size: 3rem; margin-bottom: var(--space-sm); }
h2 { font-size: 2.2rem; margin-bottom: var(--space-sm); }
h3 { font-size: 1.5rem; margin-bottom: 8px; }
h4 { font-size: 1.2rem; margin-bottom: 8px; }

p { margin-bottom: var(--space-sm); }
p.subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Utilitários de Layout --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.pt-xl { padding-top: var(--space-xl); }
.pb-xl { padding-bottom: var(--space-xl); }
.mt-xl { margin-top: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-md); }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: var(--space-md); }
.mt-auto { margin-top: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-xl { margin-left: var(--space-lg); }

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

.grid {
    display: grid;
    gap: var(--space-md);
}

.hidden { display: none !important; }
.cursor-pointer { cursor: pointer; }

/* --- Cores Utilitárias --- */
.bg-light { background-color: var(--bg-light); }
.bg-light-gray { background-color: var(--bg-light-gray); }
.bg-dark { background-color: var(--bg-dark); }
.bg-white { background-color: white; }
.bg-orange-light { background-color: var(--color-orange-light); }
.bg-orange { background-color: var(--color-orange); }
.bg-green-light { background-color: #E8F5E9; }

.text-orange { color: var(--color-orange); }
.text-orange-light { color: #ffb800; }
.text-primary { color: var(--color-primary); }
.text-green { color: var(--color-primary); }
.text-white { color: var(--text-white); }
.text-gray { color: var(--text-gray); }
.text-gray-light { color: var(--text-gray-light); }
.text-red { color: #EF4444; }

.font-bold { font-weight: 700; }
.small { font-size: 0.9rem; }
.small-caps { font-size: 0.8rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }
.tracking-wide { letter-spacing: 1px; }

.rounded { border-radius: var(--radius-md); }
.rounded-xl { border-radius: var(--radius-lg); }
.rounded-full { border-radius: 9999px; }

.shadow-lg { box-shadow: var(--shadow-lg); }
.border-t { border-top: 1px solid var(--border-color); }
.border-gray-dark { border-color: #374151; }
.border-green { border: 1px solid var(--color-primary); }

/* --- Botões --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

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

.btn-gray {
    background-color: #D1D5DB;
    color: var(--text-dark);
}

.btn-gray:hover {
    background-color: #9CA3AF;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 40px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

.security-text {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 12px;
}

.security-icons {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-gray-light);
    margin-top: 16px;
    justify-content: center;
}

/* --- Badges --- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--bg-dark);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.badge-green {
    background-color: var(--color-primary);
}

/* --- Cards --- */
.card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* --- Seção Específica: Hero --- */
.hero {
    padding: var(--space-xl) 0;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: var(--space-md) auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: #000;
}

.video-img {
    width: 100%;
    display: block;
    opacity: 0.7;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 20px;
    color: white;
    background: linear-gradient(to top, rgba(255,122,0,0.8), transparent);
}

.video-overlay i {
    font-size: 3rem;
    margin: 10px 0;
}

/* --- Seção Específica: Social Proof --- */
.social-proof {
    padding: var(--space-lg) 0;
}

.chat-mockup img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    max-height: 500px;
}

/* --- Seção Específica: Features --- */
.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--color-orange-light);
    color: var(--color-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto var(--space-sm);
}

/* --- Seção Específica: Content Grid --- */
.content-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card-outline {
    border: 1px solid var(--border-color);
    box-shadow: none;
    text-align: left;
}

.icon-box-small {
    background-color: var(--color-orange-light);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.rating {
    margin-top: var(--space-sm);
    font-weight: 700;
    color: var(--color-orange);
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating span {
    font-weight: 400;
    color: var(--text-gray);
    font-size: 0.8rem;
}

.card-highlight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-orange);
}

.text-large {
    font-size: 3rem;
    line-height: 1;
}

.icon-plus {
    width: 40px;
    height: 40px;
    background-color: var(--color-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--space-md) 0;
}

/* --- Seção Específica: Dores --- */
.pain-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    max-width: 900px;
}

.card-red-outline {
    background-color: white;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--color-primary);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    font-size: 0.95rem;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card-red-outline:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.card-red-outline i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background-color: #FDF2F8; /* Rosa bem claro */
    color: var(--color-primary) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-top: 0;
}

/* --- Seção Específica: Bônus (Dark) --- */
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
.card-dark h1, .card-dark h2, .card-dark h3, .card-dark h4, .card-dark h5, .card-dark h6 {
    color: white;
}

.bg-dark p.subtitle {
    color: #E2E8F0;
}

.bonus-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card-dark {
    background-color: var(--bg-dark-card);
    border: 1px solid #374151;
    color: white;
    text-align: left;
    padding: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-dark img {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    display: block;
}

.card-dark h4 {
    padding: var(--space-md) var(--space-md) 8px;
    margin-bottom: 0;
    color: white;
}

.bonus-subtitle {
    color: var(--color-orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    padding: 0 var(--space-md);
}

.card-dark p {
    color: #E2E8F0; /* Lighter gray for better contrast */
    font-size: 0.95rem;
    padding: 0 var(--space-md);
    flex: 1;
}

.price-tag {
    margin-top: var(--space-md);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 var(--space-md) var(--space-md);
}

.price-tag del {
    color: var(--text-gray-light);
}

.tag-free {
    background-color: var(--color-primary);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.total-bonus-box {
    border: 1px solid var(--color-orange);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    display: inline-block;
}

.total-bonus-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray-light);
}

.total-bonus-box del {
    color: #EF4444;
}

/* --- Seção Específica: Passos --- */
.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto var(--space-sm);
}

.step-num {
    margin-bottom: 4px;
}

/* --- Seção Específica: Pricing --- */
.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    max-width: 800px;
    align-items: end;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: var(--space-lg);
    height: 100%;
}

.card-premium {
    border: 2px solid var(--color-orange);
    transform: scale(1.02);
    z-index: 10;
}

.card-premium:hover {
    transform: scale(1.04);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pricing-header {
    margin-bottom: var(--space-md);
}

.price {
    margin-bottom: var(--space-md);
}

.price del {
    color: var(--text-gray-light);
    font-size: 0.9rem;
}

.price h2 {
    font-size: 3.5rem;
    margin: 0;
    line-height: 1;
}

.cents {
    font-size: 1.5rem;
}

.features-list {
    margin-bottom: var(--space-lg);
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.features-list li.has-icon i {
    color: var(--color-primary);
}

/* --- Seção Específica: Guarantee --- */
.guarantee-card {
    max-width: 600px;
}

.guarantee-seal {
    width: 140px;
    height: 140px;
    object-fit: cover;
    margin-top: -70px;
    margin-bottom: var(--space-md);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    border: 4px solid white;
}

/* --- Seção Específica: Author --- */
.author-card {
    max-width: 800px;
    align-items: center;
    padding: 0; /* padding resetado para imagem ocupar 100% altura */
    overflow: hidden;
}

.author-img-container {
    flex: 0 0 40%;
}

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

.author-content {
    flex: 1;
    padding: var(--space-lg);
}

/* --- Seção Específica: Testimonials --- */
.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 900px;
}

.testimonial-card {
    position: relative;
}

.stars {
    margin-bottom: 12px;
}

.quote-icon {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 2rem;
    opacity: 0.3;
}

.review-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-dark);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info p {
    margin-bottom: 0;
}

.avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- Seção Específica: FAQ --- */
.faq-container {
    max-width: 800px;
}

.faq-item {
    padding: 20px;
    border: 1px solid var(--border-color);
}

.faq-question {
    font-size: 1.05rem;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

/* --- Responsividade --- */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .pt-xl { padding-top: var(--space-lg); }
    .pb-xl { padding-bottom: var(--space-lg); }
    .mt-xl { margin-top: var(--space-lg); }
    
    .grid {
        gap: var(--space-lg);
    }
    
    .author-card {
        flex-direction: column;
    }
    
    .author-content {
        margin-left: 0;
        padding: var(--space-md);
    }
    
    .pricing-grid {
        align-items: stretch;
        gap: 40px; /* Espaço extra por causa da badge */
    }
    
    .card-premium {
        transform: scale(1);
        margin-top: 15px; /* Compensa o topo da badge */
    }
    
    .card-premium:hover {
        transform: scale(1);
    }
    
    .btn {
        width: 100%;
        padding: 16px 20px;
    }
    
    .carousel-container {
        position: relative;
        max-width: 100%;
        gap: 0;
    }
    
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
        width: 36px;
        height: 36px;
    }
    
    #prev-btn {
        left: 0px;
    }
    
    #next-btn {
        right: 0px;
    }
    
    .android-mockup {
        width: 320px;
        height: 640px;
    }
    
    .wa-header {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .wa-icons {
        gap: 8px;
    }
    
    .wa-contact strong {
        font-size: 0.8rem;
}

/* --- VSL Video --- */
#vsl-container {
    position: relative;
    max-width: 450px;
    margin: var(--space-lg) auto var(--space-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
    background-color: black;
    cursor: pointer;
}

.video-vsl {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#vsl-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(184, 151, 58, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transition: opacity 0.3s ease;
    z-index: 10;
}

#vsl-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.overlay-text-top {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.mute-icon-pulse {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    animation: pulse 2s infinite;
    backdrop-filter: blur(4px);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.overlay-text-bottom {
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* --- Offer Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal-content {
    position: relative;
    max-width: 480px;
    width: 100%;
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 30px 24px;
    border: 2px solid var(--color-orange);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-overlay.hidden .modal-content {
    transform: translateY(-40px);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray-light);
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #EF4444;
}

#continue-basic:hover {
    color: var(--color-primary);
}

/* --- WhatsApp Mockup Carousel --- */
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    max-width: 600px;
    margin: 0 auto;
}

.carousel-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--color-orange-light);
    color: var(--color-orange);
}

/* =========================================
   iPhone + WhatsApp Dark Mode — Pixel Perfect
   ========================================= */

.android-mockup {
    width: 300px;
    height: 600px;
    background-color: #0B141A; /* Fundo real do WA dark mode */
    border-radius: 36px;
    border: 8px solid #141A21; /* Borda escura do celular Android */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-shrink: 0; /* IMPEDE QUE A TELA SEJA ESPREMIDO */
    box-shadow:
        0 0 0 2px #0B141A,
        0 25px 50px rgba(0,0,0,0.6);
}

/* ----- Status Bar Android ----- */
.android-status-bar {
    background-color: #0B141A;
    height: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    color: white;
    z-index: 15;
    font-family: 'Roboto', sans-serif;
    flex-shrink: 0;
}

.status-left, .status-right {
    display: flex;
    align-items: center;
}



/* ----- Carousel Track ----- */
.carousel-track {
    flex: 1;
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    width: 100%;
    min-height: 0;
}

.chat-slide {
    min-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

/* ----- WA Header ----- */
.wa-header {
    background-color: #0B141A;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    flex-shrink: 0;
    z-index: 5;
}

.text-blue { color: #53BDEB; font-size: 1.1rem; line-height: 1; }

.wa-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.wa-contact {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 1px;
    overflow: hidden;
}

.wa-contact strong {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #E9EDEF;
}

.wa-contact span {
    font-size: 0.65rem;
    color: #8696A0;
    white-space: nowrap;
}

.wa-icons {
    display: flex;
    gap: 10px;
    color: #8696A0;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ----- WA Body (chat area) ----- */
.wa-body {
    flex: 1;
    padding: 8px 10px;
    background-color: #0B141A;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.02) 1px, transparent 0);
    background-size: 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    min-height: 0;
}

/* ----- Date chip ----- */
.wa-date {
    background-color: #182229;
    color: #8696A0;
    font-size: 0.62rem;
    padding: 3px 9px;
    border-radius: 8px;
    align-self: center;
    margin: 4px 0 6px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* ----- Bubbles ----- */
.bubble {
    max-width: 82%;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 0.72rem;
    line-height: 1.35;
    position: relative;
    text-align: left;
    color: #E9EDEF;
    margin-bottom: 1px;
}

/* cauda das bolhas */
.bubble.sent {
    background-color: #005C4B;
    align-self: flex-end;
    border-top-right-radius: 0;
    box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
}

.bubble.sent::before {
    content: "";
    position: absolute;
    top: 0;
    right: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 8px;
    border-color: transparent transparent transparent #005C4B;
}

.bubble.received {
    background-color: #202C33;
    align-self: flex-start;
    border-top-left-radius: 0;
    box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
}

.bubble.received::before {
    content: "";
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 10px 0;
    border-color: transparent #202C33 transparent transparent;
}

.bubble-meta {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
    float: right;
    margin-left: 10px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 2px;
    line-height: 1;
}

.bubble-meta i {
    font-size: 0.85rem;
}

/* ----- WA Footer ----- */
.wa-footer {
    background-color: #0B141A;
    padding: 6px 8px;
    display: flex;
    align-items: center; /* Center to avoid mic misalignment */
    gap: 6px;
    flex-shrink: 0;
}

.wa-input-container {
    flex: 1;
    background-color: #202C33;
    border-radius: 24px;
    display: flex;
    align-items: center;
    padding: 6px 10px;
    gap: 6px;
    min-width: 0; /* allows flex-shrink to work */
}

.wa-input-container i {
    flex-shrink: 0; /* Impede que os ícones do rodapé sejam esmagados */
}

.wa-input {
    flex: 1;
    font-size: 0.8rem;
    color: #8696A0;
    text-align: left;
}

.wa-mic {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #00A884;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ----- Android Nav ----- */
.android-nav {
    background-color: #0B141A;
    height: 44px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D1D5DB;
    transition: all 0.3s;
}

.dot.active {
    background-color: var(--color-orange);
    width: 24px;
    border-radius: 4px;
}

/* --- Elegant Badges --- */
.inline-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-elegant {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.badge-elegant:hover {
    transform: translateY(-2px);
}

.badge-elegant.dark {
    background-color: var(--bg-dark);
    color: white;
    border: 1px solid #374151;
}

.badge-elegant.light {
    background-color: var(--color-orange-light);
    color: var(--color-primary);
    border: 1px solid rgba(233, 30, 99, 0.2);
}
