/* ============================================
   LANDING PAGE CLONE — landing.css
   documentodeclasse.com.br — Mobile-First
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    color: #212529;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

/* ---------- ANIMATIONS ---------- */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce-anim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: .7;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes pulse-scale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }
}

@keyframes wa-pulse {
    0% {
        transform: scale(0.85);
        opacity: 0.8;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ---------- SHARED UTILITIES ---------- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.teal-badge {
    background: linear-gradient(135deg, #12b886, #228be6);
    color: #fff;
}

.orange-badge {
    background: linear-gradient(135deg, #fd7e14, #e64980);
    color: #fff;
}

.indigo-badge {
    background: linear-gradient(135deg, #4c6ef5, #7950f2);
    color: #fff;
}

.blue-badge {
    background: linear-gradient(135deg, #228be6, #1864ab);
    color: #fff;
}

.green-badge {
    background: linear-gradient(135deg, #40c057, #12b886);
    color: #fff;
}

.pink-badge {
    background: linear-gradient(135deg, #e64980, #ae3ec9);
    color: #fff;
}

.teal2-badge {
    background: linear-gradient(135deg, #12b886, #15aabf);
    color: #fff;
}

.white-badge {
    background: rgba(255, 255, 255, .18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
}

.violet-badge {
    background: linear-gradient(135deg, #7950f2, #ae3ec9);
    color: #fff;
}

.s-title {
    font-size: clamp(1.5rem, 5.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.22;
    margin-bottom: 10px;
    color: #212529;
}

.s-title.light {
    color: #fff;
}

.s-sub {
    font-size: .95rem;
    color: #868e96;
    line-height: 1.65;
    margin-bottom: 18px;
}

.s-sub.light {
    color: rgba(255, 255, 255, .78);
}

.hl-orange {
    color: #fd7e14;
}

.hl-indigo {
    color: #7950f2;
}

.hl-blue {
    color: #228be6;
}

.hl-green {
    color: #12b886;
}

.hl-teal {
    color: #12b886;
}

.hl-pink {
    color: #e64980;
}

.hl-light {
    color: #a5d8ff;
}

.hl-violet {
    color: #b197fc;
}

.hl-lavender {
    color: #d0bfff;
}

.green-text {
    color: #2f9e44;
}

.bounce-anim {
    animation: bounce-anim 3.5s ease-in-out infinite;
}

/* ---------- STORE / APP BADGES ---------- */
.store-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    border: none;
    transition: opacity .2s;
    font-family: inherit;
}

.store-btn:hover {
    opacity: .85;
}

.store-btn.dark {
    background: #1a1a1a;
}

.store-btn.gray {
    background: #3d3d3d;
}

.store-btn i {
    font-size: 20px;
}

.store-btn .sl {
    display: block;
    font-size: 8.5px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.2;
}

.store-btn .sn {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

/* ---------- CTA BUTTONS ---------- */
.btn-cta-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fd7e14, #e64980);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 18px rgba(253, 126, 20, .35);
    transition: all .2s;
    text-align: center;
    justify-content: center;
}

.btn-cta-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(253, 126, 20, .45);
}

.btn-cta-teal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #12b886, #15aabf);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(18, 184, 134, .35);
    transition: all .2s;
}

.btn-cta-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(18, 184, 134, .45);
}

.btn-cta-blue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #228be6, #1971c2);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 18px rgba(34, 139, 230, .35);
    transition: all .2s;
}

.btn-cta-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(34, 139, 230, .45);
}

.btn-cta-violet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7950f2, #ae3ec9);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 18px rgba(121, 80, 242, .35);
    transition: all .2s;
}

.btn-cta-violet:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(121, 80, 242, .45);
}

/* ====================================================
   NAVBAR
==================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e9ecef;
    animation: slideDown .35s ease;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 58px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 10px;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    color: #228be6;
}

.navbar-links {
    display: none;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    transition: color .2s;
}

.nav-link:hover {
    color: #228be6;
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.btn-nav-portal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #7950f2;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all .2s;
}

.btn-nav-portal:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.nb-label {
    display: none;
}

.btn-nav-emitir {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #228be6;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all .2s;
}

.btn-nav-emitir:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

@media(min-width: 768px) {
    .navbar-links {
        display: flex;
        gap: 20px;
    }

    .nb-label {
        display: inline;
    }
}

/* ====================================================
   SECTION 1 — HERO
==================================================== */
.hero {
    background: linear-gradient(180deg, #e7f5ff 0%, #fff 58%);
    display: flex;
    flex-direction: column;
}

.hero-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 18px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Image — first in DOM → top on mobile */
.hero-img-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 380px;
}

.hero-phone {
    width: 100%;
    max-width: 340px;
    filter: drop-shadow(0 16px 40px rgba(34, 139, 230, .22));
    animation: float 4s ease-in-out infinite;
}

.store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    width: 100%;
}

/* Text — second in DOM → below image on mobile */
.hero-text-col {
    width: 100%;
    text-align: center;
}

.hero-top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.hero-sup {
    font-size: 13px;
    color: #495057;
    font-weight: 500;
    margin-bottom: 4px;
}

.hero-title {
    font-size: clamp(1.65rem, 7vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 10px;
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.br-flag {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: inline-block;
}

.hero-sub {
    font-size: .95rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 14px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: center;
    margin-bottom: 14px;
}

.pill {
    background: linear-gradient(135deg, #228be6, #7950f2);
    color: #fff;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.pill:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 14px rgba(34, 139, 230, .35);
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.stars-row {
    display: flex;
    gap: 2px;
    color: #f59f00;
    font-size: 15px;
}

.rating-count {
    font-size: 13px;
    color: #495057;
    font-weight: 500;
}

.hero-price {
    font-size: .95rem;
    color: #495057;
    margin-bottom: 12px;
}

.hero-icons-row {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 18px;
}

.evt-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: grid;
    place-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.evt-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.hero-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-outline-hero {
    padding: 13px 20px;
    border-radius: 999px;
    background: #e6fcf5;
    color: #0ca678;
    border: 2px solid #12b886;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
}

.btn-outline-hero:hover {
    background: #12b886;
    color: #fff;
}

.btn-blue-hero {
    padding: 13px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #228be6, #1971c2);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(34, 139, 230, .4);
}

.btn-blue-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 139, 230, .5);
}

/* Features strip */
.hero-features-strip {
    background: #fff;
    border-top: 1px solid #f1f3f5;
    padding: 24px 18px;
    margin-top: 20px;
    width: 100%;
}

.hfs-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.hfs-header {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 18px;
}

.hfs-title {
    font-size: .95rem;
    font-weight: 700;
    color: #495057;
}

.hfs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.hfs-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    transition: transform .2s, box-shadow .2s;
}

.hfs-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.hfs-highlight {
    border-color: #a5d8ff;
    background: #e7f5ff;
}

.hfs-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 4px;
}

.blue-icon {
    background: linear-gradient(135deg, #228be6, #1971c2);
}

.teal-icon {
    background: linear-gradient(135deg, #12b886, #0ca678);
}

.grape-icon {
    background: linear-gradient(135deg, #ae3ec9, #7950f2);
}

.orange-icon {
    background: linear-gradient(135deg, #fd7e14, #f76707);
}

.hfs-name {
    font-size: 13px;
    font-weight: 700;
    color: #343a40;
}

.hfs-desc {
    font-size: 11px;
    color: #868e96;
    line-height: 1.4;
}

.hfs-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hfs-tag {
    font-size: 12px;
    color: #2f9e44;
    font-weight: 600;
    display: flex;
    gap: 5px;
    align-items: center;
}

@media(min-width: 768px) {
    .hfs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(min-width: 900px) {
    .hero-wrap {
        flex-direction: row;
        padding: 60px 32px 0;
        gap: 40px;
    }

    .hero-img-col {
        order: 2;
        flex: 0 0 400px;
        max-width: 400px;
    }

    .hero-text-col {
        order: 1;
        text-align: left;
        flex: 1;
    }

    .hero-top-bar,
    .hero-pills,
    .hero-rating,
    .hero-icons-row,
    .hero-btns {
        justify-content: flex-start;
    }

    .hero-title {
        justify-content: flex-start;
    }
}

/* ====================================================
   SECTION 2 — POR QUE ESCOLHER A ANEP (navy dark)
==================================================== */
.s-anep {
    position: relative;
    overflow: hidden;
    padding: 60px 18px;
    background: linear-gradient(135deg, #1a1a4e 0%, #232368 50%, #0f3460 100%);
}

.sanep-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.sanep-orb.o1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -100px;
    background: rgba(121, 80, 242, .2);
}

.sanep-orb.o2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    right: -60px;
    background: rgba(18, 184, 134, .15);
}

.sanep-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.sanep-img-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.sanep-img-frame {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .35);
    max-width: 340px;
    width: 100%;
    position: relative;
}

.sanep-img {
    width: 100%;
    display: block;
}

.sanep-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(0, 0, 0, .35));
}

.sanep-exp-badge {
    position: absolute;
    top: 14px;
    right: 10px;
    background: linear-gradient(135deg, #7950f2, #4c6ef5);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    box-shadow: 0 6px 20px rgba(121, 80, 242, .4);
}

.eb-years {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.eb-label {
    font-size: 10px;
    opacity: .82;
    text-align: center;
}

.sanep-trust-badge {
    position: absolute;
    bottom: 16px;
    left: 10px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 8px 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sanep-text-col {
    color: #fff;
}

.sanep-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sanep-col-hdr {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.sanep-c-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .14);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 14px;
}

.sanep-col-hdr span {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.adv-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.adv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.adv-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(18, 184, 134, .22);
    border: 1px solid rgba(18, 184, 134, .38);
    display: grid;
    place-items: center;
    color: #12b886;
    font-size: 12px;
    flex-shrink: 0;
}

.adv-list li>span {
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
}

@media(min-width: 900px) {
    .sanep-inner {
        flex-direction: row;
        align-items: center;
    }

    .sanep-img-col {
        flex: 0 0 380px;
    }

    .sanep-text-col {
        flex: 1;
    }
}

/* ====================================================
   SECTION 3 — TRANSFORME SUA EDUCAÇÃO (dark purple)
==================================================== */
.s-transform {
    position: relative;
    overflow: hidden;
    padding: 60px 18px;
    background: linear-gradient(135deg, #2d1b69 0%, #3d1a7a 50%, #1e0f4a 100%);
}

.strn-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.strn-shape.sh1 {
    width: 400px;
    height: 400px;
    top: -120px;
    right: -100px;
    background: rgba(174, 62, 201, .2);
}

.strn-shape.sh2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -80px;
    background: rgba(121, 80, 242, .18);
}

.strn-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.strn-text-col {
    color: #fff;
}

.strn-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.strn-stat {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: 12px 18px;
    backdrop-filter: blur(6px);
}

.ss-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
}

.ss-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
}

.strn-img-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.strn-img-frame {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
    max-width: 340px;
    width: 100%;
    position: relative;
}

.strn-img {
    width: 100%;
    display: block;
}

.strn-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(45, 27, 105, .5));
}

.strn-float-badge {
    position: absolute;
    bottom: 16px;
    left: 10px;
    background: rgba(255, 255, 255, .96);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

@media(min-width: 900px) {
    .strn-inner {
        flex-direction: row;
        align-items: center;
    }

    .strn-text-col {
        flex: 1;
        order: 1;
    }

    .strn-img-col {
        flex: 0 0 380px;
        order: 2;
    }
}

/* ====================================================
   SECTION 4 — COMO PEDIR (navy)
==================================================== */
.s5 {
    position: relative;
    overflow: hidden;
    padding: 60px 18px;
    background: linear-gradient(135deg, #1a1a4e 0%, #232368 50%, #0f3460 100%);
}

.s5-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(121, 80, 242, .25), transparent 60%);
    pointer-events: none;
}

.s5-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.s5-header {
    margin-bottom: 32px;
}

.steps-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    margin-bottom: 28px;
}

.step {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 22px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: background .2s, transform .2s;
}

.step:hover {
    background: rgba(255, 255, 255, .13);
    transform: translateY(-3px);
}

.step-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 4px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

.step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    color: #1a1a4e;
    font-size: 12px;
    font-weight: 900;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.step-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.step-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.4;
}

.s5-info-pill {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: 10px 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.s5-disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    max-width: 640px;
    line-height: 1.5;
}

@media(min-width: 768px) {
    .steps-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ====================================================
   SECTION 5 — FAQ
==================================================== */
.faq-section {
    padding: 60px 18px;
    background: #fff;
}

.faq-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-hdr {
    margin-bottom: 24px;
    text-align: center;
}

.accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.acc-item {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.acc-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #343a40;
    text-align: left;
    transition: background .2s;
}

.acc-btn:hover {
    background: #f8f9fa;
}

.acc-chevron {
    font-size: 13px;
    color: #adb5bd;
    transition: transform .3s;
    flex-shrink: 0;
}

.acc-btn.open .acc-chevron {
    transform: rotate(180deg);
}

.acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: #f8f9fa;
}

.acc-panel.open {
    max-height: 200px;
}

.acc-panel p {
    padding: 14px 18px;
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.partner-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    opacity: .78;
}

/* ====================================================
   SECTION 6 — CARTEIRA FÍSICA (orange/green)
==================================================== */
.s-card {
    position: relative;
    overflow: hidden;
    padding: 60px 18px;
    background: linear-gradient(135deg, #fff8f5, #fff 50%, #fff5fb);
}

.scard-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.scard-blob.bc1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: rgba(253, 126, 20, .07);
}

.scard-blob.bc2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    right: -100px;
    background: rgba(230, 73, 128, .06);
}

.scard-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.scard-img-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scard-img-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .14);
    max-width: 340px;
    width: 100%;
}

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

.scard-app-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
}

.scard-discount {
    position: absolute;
    top: 14px;
    right: 10px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fd7e14, #e64980);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(253, 126, 20, .4);
}

.pulse-anim {
    animation: pulse-scale 2.5s ease-in-out infinite;
}

.dc-value {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.dc-label {
    font-size: 10px;
    line-height: 1.2;
}

.scard-text-col {
    display: flex;
    flex-direction: column;
}

.scard-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.scb-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    border: 1px solid #ffe8d6;
    border-radius: 12px;
    padding: 12px;
    transition: transform .2s, box-shadow .2s;
}

.scb-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .07);
}

.scb-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #fd7e14, #e64980);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 15px;
}

.scb-title {
    font-size: 13px;
    font-weight: 700;
    color: #343a40;
}

.scb-desc {
    font-size: 11px;
    color: #868e96;
    margin-top: 2px;
}

@media(min-width: 900px) {
    .scard-inner {
        flex-direction: row;
        align-items: center;
    }

    .scard-img-col {
        flex: 0 0 380px;
    }

    .scard-text-col {
        flex: 1;
    }
}

/* ====================================================
   SECTION 7 — CONHEÇA / VIDEO (dark navy+purple)
==================================================== */
.s-video {
    position: relative;
    overflow: hidden;
    padding: 60px 18px;
    background: linear-gradient(135deg, #1a1a4e 0%, #232368 50%, #0f3460 100%);
}

.svid-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.svid-circle.vc1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -80px;
    background: rgba(121, 80, 242, .2);
}

.svid-circle.vc2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -60px;
    background: rgba(18, 184, 134, .12);
}

.svid-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.svid-feats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 24px;
}

.svid-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
}

.svf-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #12b886, #228be6);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 14px;
}

/* Video container */
.svid-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 28px;
}

.svid-glow {
    position: absolute;
    inset: -12px;
    background: radial-gradient(ellipse, rgba(18, 184, 134, .18), transparent);
    border-radius: 22px;
    pointer-events: none;
}

.svid-glow.svid-glow-violet {
    background: radial-gradient(ellipse, rgba(121, 80, 242, .22), transparent);
}

.svid-thumb {
    position: absolute;
    inset: 0;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.svid-play-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    display: grid;
    place-items: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .3);
    z-index: 2;
    position: relative;
    transition: transform .2s;
}

.svid-play-btn:hover {
    transform: scale(1.1);
}

.svid-play-btn.svid-play-violet {
    background: linear-gradient(135deg, #7950f2, #ae3ec9);
}

.svid-ripple {
    position: absolute;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(18, 184, 134, .35);
    animation: ripple 2s ease-out infinite;
}

.svid-ripple.svid-ripple-violet {
    background: rgba(121, 80, 242, .4);
}

.svid-anep-label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

/* ANEP section header within video section */
.svid-anep-hdr {
    margin-bottom: 16px;
}

.svid-anep-title {
    font-size: clamp(1.3rem, 4vw, 1.9rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 8px;
}

/* CTA card */
.svid-cta-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    backdrop-filter: blur(6px);
    max-width: 400px;
    width: 100%;
}

.svid-cta-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.svid-cta-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 16px;
}

/* ====================================================
   FOOTER
==================================================== */
.footer {
    background: #0f0f2d;
    color: rgba(255, 255, 255, .78);
    padding: 40px 18px 20px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
    opacity: .9;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    transition: background .2s, color .2s;
}

.social-ic:hover {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}

.footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    transition: color .2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1100px;
    margin: 20px auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, .32);
}

@media(min-width: 768px) {
    .footer-top {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 2;
        min-width: 200px;
    }

    .footer-col {
        flex: 1;
        min-width: 130px;
    }
}

/* ====================================================
   SOCIAL PROOF BAR (fixed)
==================================================== */
.proof-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: rgba(255, 255, 255, .97);
    border-top: 1px solid #e9ecef;
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
    padding: 10px 16px;
}

.proof-bar-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.proof-text {
    font-size: 13px;
    color: #495057;
}

.proof-num {
    font-weight: 700;
    color: #228be6;
}

.proof-divider {
    width: 1px;
    height: 20px;
    background: #dee2e6;
}

.proof-order {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.proof-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 999px;
    margin-bottom: 2px;
}

.green-badge-sm {
    background: #ebfbee;
    color: #2f9e44;
}

.proof-order-name {
    font-size: 12px;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.proof-order-city {
    font-size: 11px;
    color: #868e96;
    margin: 0;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 74px;
    right: 18px;
    z-index: 900;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #1da851);
    display: grid;
    place-items: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .5);
    transition: transform .2s;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.wa-ripple {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(37, 211, 102, .4);
    animation: wa-pulse 2s ease-out infinite;
}

/* ====================================================
   POPUP
==================================================== */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-box {
    background: #fff;
    border-radius: 20px;
    padding: 28px 22px;
    max-width: 360px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .25);
    animation: slideDown .35s ease;
}

.popup-close-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 22px;
    color: #adb5bd;
    cursor: pointer;
    line-height: 1;
    transition: color .2s;
}

.popup-close-btn:hover {
    color: #495057;
}

.popup-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 8px;
}

.popup-text {
    font-size: 14px;
    color: #495057;
    margin-bottom: 14px;
    line-height: 1.5;
}

.popup-coupon {
    background: #fff3bf;
    border: 2px dashed #f59f00;
    border-radius: 10px;
    padding: 12px;
    font-size: 1.4rem;
    font-weight: 900;
    color: #e67700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.popup-urgency {
    font-size: 13px;
    color: #fa5252;
    font-weight: 600;
    margin-bottom: 16px;
}

.popup-btn {
    width: 100%;
    justify-content: center;
}

/* ====================================================
   ORDER NOTIFICATION — replica fiel do SocialProof
==================================================== */
@keyframes slideInNotif {
    from {
        transform: translateX(-18px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* A tag envolvente — fixed bottom-left, flutuando sobre a página */
.order-notif {
    position: fixed;
    bottom: 16px;
    left: 12px;
    z-index: 850;
    display: none;
    flex-direction: row;
    align-items: stretch;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    text-decoration: none;
    width: 280px;
    animation: slideInNotif .35s ease;
    cursor: pointer;
}

/* Flex interno */
.on-inner {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

/* Thumbnail do card (professor / estudante) */
.on-card-img {
    width: 94px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    border-radius: 0;
}

/* Bloco de texto à direita da imagem */
.on-text {
    flex: 1;
    min-width: 0;
    padding: 8px 10px;
}

/* Linha "Novo pedido" + "há X min" */
.on-top-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
}

/* Badge verde "Novo pedido" */
.on-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #2f9e44;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px 2px 5px;
    border-radius: 4px;
    white-space: nowrap;
    line-height: 1.6;
}

.on-badge svg {
    display: block;
    flex-shrink: 0;
}

/* Timestamp "há X min" */
.on-time {
    font-size: 11px;
    color: #868e96;
    margin: 0;
    white-space: nowrap;
}

/* Nome da pessoa — bold, 1 linha */
.on-name {
    font-size: 12px;
    font-weight: 700;
    color: #343a40;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Cidade + tipo do cartão */
.on-city {
    font-size: 11px;
    color: #6c757d;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ====================================================
   VIDEO PLAY BUTTON OVERLAY
   (positioned absolutely via inline style on the thumb div)
==================================================== */
.svid-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform .2s, background .2s;
}

.svid-play-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translate(-50%, -50%) scale(1.08);
}

/* Teal variant (tutorial) */
.svid-play-btn i {
    pointer-events: none;
}

/* Violet variant (ANEP) */
.svid-play-violet {
    border-color: rgba(174, 130, 255, 0.5);
    background: rgba(103, 65, 217, 0.25);
}

/* Ripple ring animation */
@keyframes ripplePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.65);
        opacity: 0;
    }
}

.svid-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(18, 184, 134, .6);
    animation: ripplePulse 1.8s ease-out infinite;
    pointer-events: none;
}

.svid-ripple-violet {
    border-color: rgba(174, 130, 255, .6);
}

/* Label "Conheça a ANEP" at bottom of second video thumb */
.svid-anep-label {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(103, 65, 217, 0.75);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
    z-index: 3;
    backdrop-filter: blur(4px);
}

/* ====================================================
   CENTRALIZAR — Seção "Transforme sua educação no Brasil"
==================================================== */
.strn-text-col {
    text-align: center;
}

.strn-stats {
    justify-content: center;
}

.strn-text-col .btn-cta-violet {
    margin: 0 auto;
    display: inline-flex;
}

/* ======================================================
   SEÇÃO — CARTEIRA PROFISSIONAL  (s-prof)
====================================================== */
.s-prof {
    background: #f0f4ff;
    padding: 60px 0 56px;
    text-align: center;
}

.s-prof-inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 20px;
}

.blue-badge {
    background: #1971c2;
    color: #fff;
}

.hl-blue {
    color: #1971c2;
}

.s-sub-dark {
    color: #495057;
}

.prof-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
    border: 1px solid #dee2e6;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.prof-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f3f5;
    font-size: 15px;
    font-weight: 500;
    color: #212529;
    transition: background .15s;
}

.prof-list li:last-child {
    border-bottom: none;
}

.prof-list li:hover {
    background: #f8f9ff;
}

.prof-list li i {
    color: #12b886;
    font-size: 18px;
    flex-shrink: 0;
}

.prof-list-more span {
    color: #868e96;
    font-style: italic;
}

.btn-cta-blue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    background: linear-gradient(135deg, #1971c2, #1864ab);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(25, 113, 194, .35);
    transition: transform .2s, box-shadow .2s;
}

.btn-cta-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(25, 113, 194, .45);
}

.prof-cta {
    margin-top: 4px;
}

/* ======================================================
   SEÇÃO — DEPOIMENTOS REAIS  (s-depo)
====================================================== */
.s-depo {
    background: linear-gradient(160deg, #fff0f6 0%, #fce4ec 100%);
    padding: 60px 0 56px;
    text-align: center;
    overflow: hidden;
}

.s-depo-inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 20px;
}

.pink-badge {
    background: #e64980;
    color: #fff;
}

.hl-pink {
    color: #e64980;
}

/* Rating row */
.depo-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 20px 0 28px;
    font-size: 15px;
}

.depo-stars {
    color: #f59f00;
    font-size: 20px;
}

.depo-score {
    font-weight: 800;
    font-size: 18px;
    color: #212529;
}

.depo-base {
    color: #868e96;
    font-size: 13px;
}

/* Scrollable container */
.depo-scroll-wrap {
    margin: 0 -20px;
}

.depo-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 20px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.depo-scroll::-webkit-scrollbar {
    display: none;
}

/* WhatsApp-style card */
.depo-card {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .10);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #075e54;
    padding: 10px 14px;
    color: #fff;
}

.wa-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.wa-name {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
}

.wa-icons {
    display: flex;
    gap: 12px;
    font-size: 16px;
    opacity: .85;
}

.wa-body {
    padding: 12px;
    background: #e5ddd5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' opacity='.07'%3E%3Ccircle cx='30' cy='30' r='20' fill='%23075e54'/%3E%3C/svg%3E");
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.wa-msg {
    max-width: 85%;
    padding: 7px 10px 4px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.45;
    position: relative;
}

.wa-msg p {
    margin: 0 0 3px;
}

.wa-msg p:last-of-type {
    margin-bottom: 0;
}

.wa-msg.received {
    background: #fff;
    border-radius: 0 8px 8px 8px;
    align-self: flex-start;
    color: #212529;
}

.wa-msg.sent {
    background: #dcf8c6;
    border-radius: 8px 0 8px 8px;
    align-self: flex-end;
    color: #212529;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 10px;
    color: #888;
    margin-top: 2px;
}

/* Stars at bottom of card */
.depo-stars-sm {
    padding: 10px 14px;
    background: #fff;
    color: #f59f00;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid #f1f3f5;
}

/* "Arraste para ver mais" hint */
.depo-hint {
    font-size: 13px;
    color: #868e96;
    margin: 10px 0 28px;
}

.depo-hint i {
    margin-right: 4px;
}

/* Pink CTA */
.btn-cta-pink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    background: linear-gradient(135deg, #e64980, #c2255c);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(230, 73, 128, .35);
    transition: transform .2s, box-shadow .2s;
}

.btn-cta-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(230, 73, 128, .45);
}