/* ===========================
   MOUNJARO LANDING PAGE CSS
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --green:       #25D366;
    --green-dark:  #128C7E;
    --green-hover: #1ebe57;
    --blue:        #1a73e8;
    --blue-dark:   #0d5dc4;
    --white:       #ffffff;
    --gray-light:  #f7f9fc;
    --gray:        #e8ecf1;
    --text:        #1a1a2e;
    --text-muted:  #5a6474;
    --shadow:      0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg:   0 8px 40px rgba(0,0,0,0.15);
    --radius:      16px;
    --radius-sm:   10px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== BOTÕES ===== */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: all .25s ease;
    border: none;
    cursor: pointer;
    letter-spacing: .3px;
}
.btn-whatsapp:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}
.btn-whatsapp svg { width: 26px; height: 26px; fill: #fff; flex-shrink: 0; }
.btn-whatsapp.large { font-size: 1.25rem; padding: 20px 48px; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2027 0%, #1a3a4a 40%, #0d5dc4 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 20px 60px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
}
.hero-blob-1 { width: 500px; height: 500px; background: #25D366; top: -100px; right: -100px; }
.hero-blob-2 { width: 350px; height: 350px; background: #1a73e8; bottom: -80px; left: -80px; }

.hero-inner {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}
.hero-badge {
    display: inline-block;
    background: rgba(37,211,102,.2);
    border: 1px solid rgba(37,211,102,.4);
    color: #7affb3;
    font-size: .8rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 span { color: #7affb3; }
.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.hero-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
    align-items: center;
}
.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.9);
    font-size: .95rem;
    font-weight: 500;
}
.hero-bullets li::before {
    content: '✔';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    background: var(--green);
    border-radius: 50%;
    font-size: .7rem;
    flex-shrink: 0;
}
.hero-cta-note {
    margin-top: 16px;
    color: rgba(255,255,255,.5);
    font-size: .82rem;
}

/* ===== SECTION SHARED ===== */
section { padding: 80px 20px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-tag {
    display: inline-block;
    background: #e8f5e9;
    color: var(--green-dark);
    font-size: .75rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.25;
}
.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ===== ANTES E DEPOIS ===== */
.results { background: var(--gray-light); }
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.result-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s;
}
.result-card:hover { transform: translateY(-4px); }
.result-img {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}
.result-img.before { background: linear-gradient(135deg, #e0e0e0, #bdbdbd); }
.result-img.after  { background: linear-gradient(135deg, #c8f7d8, #7affb3); }
.result-img-label {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.result-body { padding: 20px; }
.result-body strong { display: block; font-size: 1.1rem; color: var(--green-dark); font-weight: 700; }
.result-body span { font-size: .85rem; color: var(--text-muted); }

/* ===== SOBRE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
}
.about-visual {
    background: linear-gradient(135deg, #1a3a4a, #0d5dc4);
    border-radius: var(--radius);
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.about-visual::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 200px; height: 200px;
    background: rgba(37,211,102,.2);
    border-radius: 50%;
}
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}
.about-hl {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--gray-light);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--green);
}
.about-hl-icon { font-size: 1.4rem; }
.about-hl-text { font-size: .95rem; font-weight: 600; color: var(--text); }

/* ===== BENEFÍCIOS ===== */
.benefits { background: var(--gray-light); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 48px;
}
.benefit-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all .25s;
    border-bottom: 4px solid transparent;
}
.benefit-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--green);
    box-shadow: var(--shadow-lg);
}
.benefit-icon { font-size: 2.4rem; margin-bottom: 14px; }
.benefit-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }

/* ===== AUTORIDADE ===== */
.authority-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
    background: linear-gradient(135deg, #0f2027, #1a3a4a);
    border-radius: var(--radius);
    padding: 60px 48px;
    color: #fff;
}
.authority-avatar {
    width: 180px; height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #1a73e8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border: 4px solid rgba(255,255,255,.2);
    flex-shrink: 0;
}
.authority-content h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 14px; }
.authority-content p { color: rgba(255,255,255,.8); margin-bottom: 24px; line-height: 1.7; }
.authority-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 900; color: #7affb3; display: block; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.6); letter-spacing: .5px; }

/* ===== DEPOIMENTOS ===== */
.testimonials { background: var(--gray-light); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform .25s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px; left: 24px;
    font-size: 5rem;
    color: var(--green);
    opacity: .15;
    font-family: Georgia, serif;
    line-height: 1;
}
.stars { color: #FFB800; font-size: 1rem; margin-bottom: 14px; }
.testimonial-text {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.av-1 { background: #fce4ec; }
.av-2 { background: #e8f5e9; }
.av-3 { background: #e3f2fd; }
.author-name { font-weight: 700; font-size: .95rem; }
.author-tag { font-size: .78rem; color: var(--text-muted); }

/* ===== URGÊNCIA ===== */
.urgency {
    background: linear-gradient(135deg, #c62828, #e53935);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: .5px;
}
.urgency h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900; margin-bottom: 10px; }
.urgency p { color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: 32px; }
.urgency-counter {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.counter-box {
    background: rgba(255,255,255,.15);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    min-width: 80px;
}
.counter-num { font-size: 2rem; font-weight: 900; display: block; }
.counter-label { font-size: .7rem; opacity: .8; letter-spacing: 1px; text-transform: uppercase; }

/* ===== CTA FINAL ===== */
.cta-final {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0fdf4, #e8f5e9);
}
.cta-final h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 14px; }
.cta-final p { color: var(--text-muted); margin-bottom: 40px; font-size: 1.05rem; }
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 500;
}
.trust-icon { font-size: 1.1rem; }

/* ===== FAQ ===== */
.faq { background: var(--gray-light); }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: background .2s;
}
.faq-question:hover { background: var(--gray-light); }
.faq-arrow {
    font-size: 1.2rem;
    transition: transform .3s;
    color: var(--green-dark);
    flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 22px; }

/* ===== RODAPÉ ===== */
footer {
    background: #0f2027;
    color: rgba(255,255,255,.7);
    text-align: center;
    padding: 48px 20px;
}
.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.footer-logo span { color: var(--green); }
footer p { font-size: .82rem; line-height: 1.7; max-width: 560px; margin: 0 auto 24px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .82rem; }
.footer-links a:hover { color: var(--green); }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.3); }

/* ===== STICKY BOTTOM BAR (mobile) ===== */
.sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--green);
    padding: 14px 20px;
    display: flex;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,.2);
    display: none;
}
.sticky-cta a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== BEFORE/AFTER CARDS ===== */
.rc-new {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
}
.rc-new:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.rc-panels { display: flex; min-height: 260px; }
.rc-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 0 14px;
    position: relative;
    overflow: hidden;
}
.rc-panel-photo {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
}
.rc-before .rc-panel-photo {
    filter: grayscale(75%) brightness(0.8) contrast(1.05);
}
.rc-after .rc-panel-photo {
    filter: saturate(1.15) brightness(1.05);
}
.rc-before { background: #9e9e9e; }
.rc-after  { background: #2e7d32; }
.rc-label {
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: .6rem;
    font-weight: 800;
    padding: 4px 13px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 2;
    backdrop-filter: blur(2px);
}
.rc-badge {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.2);
}
.rc-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    background: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--green-dark);
    flex-shrink: 0;
}
.rc-footer { padding: 16px 20px; border-top: 1px solid #f0f0f0; }
.rc-footer strong { display: block; font-size: 1rem; color: var(--green-dark); font-weight: 700; margin-bottom: 3px; }
.rc-footer span { font-size: .82rem; color: var(--text-muted); }

/* ===== TESTIMONIAL FOTO ===== */
.author-avatar-img {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green);
    flex-shrink: 0;
}

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.float-wpp {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.float-btn {
    width: 64px; height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.55);
    animation: wpp-pulse 2.2s ease-in-out infinite;
    text-decoration: none;
    transition: transform .2s;
    flex-shrink: 0;
}
.float-btn:hover { transform: scale(1.12); animation-play-state: paused; }
.float-btn svg { width: 34px; height: 34px; fill: #fff; }

@keyframes wpp-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.8); }
    65%  { box-shadow: 0 0 0 22px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.float-balloon {
    background: #fff;
    color: #1a1a2e;
    font-size: .82rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 20px 20px 4px 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,.15);
    position: relative;
    white-space: nowrap;
    animation: balloon-bob 3.5s ease-in-out infinite;
    cursor: default;
    line-height: 1.3;
}
.float-balloon::after {
    content: '';
    position: absolute;
    bottom: -9px; right: 18px;
    width: 0; height: 0;
    border-top: 9px solid #fff;
    border-left: 9px solid transparent;
}
@keyframes balloon-bob {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%       { transform: translateY(-7px) rotate(1deg); }
}
.balloon-close {
    position: absolute;
    top: -7px; right: -7px;
    width: 18px; height: 18px;
    background: #ef4444;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: .55rem;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    line-height: 1;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    section { padding: 60px 16px; }

    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-visual { height: 220px; font-size: 3.5rem; }

    .authority-inner { grid-template-columns: 1fr; text-align: center; padding: 40px 24px; gap: 28px; }
    .authority-avatar { margin: 0 auto; }
    .authority-stats { justify-content: center; }

    .sticky-cta { display: flex; }
    body { padding-bottom: 60px; }
    .hero { padding: 60px 16px 80px; }
}

@media (max-width: 480px) {
    .btn-whatsapp.large { font-size: 1rem; padding: 16px 28px; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .urgency-counter { gap: 10px; }
    .counter-box { padding: 12px 16px; min-width: 70px; }
    .counter-num { font-size: 1.5rem; }
}
