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

:root {
    --cream: #FAF6F0;
    --peach: #F5E6D8;
    --peach2: #EDD5BE;
    --teal: #1D7A61;
    --teal-mid: #2A9974;
    --teal-light: #D4EDE6;
    --orange: #E87A3A;
    --orange-light: #FDE8D8;
    --sky: #B8DFF5;
    --sky-light: #E8F5FC;
    --red-soft: #E84C4C;
    --gold: #D4A843;
    --ink: #1C1917;
    --ink-mid: #4A4540;
    --ink-soft: #8A8480;
    --white: #FFFFFF;
    --r: 16px;
    --r-lg: 28px;
    --r-xl: 40px;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.font-nunito {
    font-family: 'Nunito', sans-serif
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 6vw;
    background: rgba(250, 246, 240, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 163, 67, 0.15);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.nav-logo-img {
    height: 36px;
    width: auto
}

.nav-logo-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--teal);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 28px
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-mid);
    text-decoration: none;
    transition: color .15s;
}

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

.nav-cta {
    background: var(--teal);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 100px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    font-family: 'Nunito', sans-serif;
}

.nav-cta:hover {
    background: var(--teal-mid);
    transform: translateY(-1px)
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 6vw 60px;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center bottom;
    opacity: 0.5;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(250, 246, 240, 0.95) 0%, rgba(250, 246, 240, 0.7) 50%, rgba(250, 246, 240, 0.95) 100%);
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-bottom: 60px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-light);
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
}

.hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.4rem, 4.2vw, 4.4rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 16px;
}

.hero-title .teal,
h2.sec-title .teal {
    color: var(--teal);
    font-size: 2.4rem
}

.hero-title .orange,
h2.sec-title .orange {
    color: var(--orange)
}


.hero-desc {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink-mid);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 40px;
    margin: 0 auto;
    font-family: 'Nunito', sans-serif;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    margin-top: 36px;
}

@keyframes pulse-ring {
    0%   { transform: scale(1);   opacity: 0.55; }
    100% { transform: scale(1.75); opacity: 0; }
}

.btn-primary {
    position: relative;
    background: var(--teal);
    color: #fff;
    font-size: 0.95rem;
    margin-top: 40px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 100px;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 6px 20px rgba(29, 122, 97, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: rgba(29, 122, 97, 0.45);
    animation: pulse-ring 2s ease-out infinite;
    pointer-events: none;
    z-index: -1;
}

.btn-primary:hover::after {
    animation: none;
}

.btn-primary:hover {
    background: var(--teal-mid);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(29, 122, 97, 0.4)
}

.btn-secondary {
    background: var(--orange);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 100px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    font-family: 'Nunito', sans-serif;
}

.btn-secondary:hover {
    background: #d06a2a;
    transform: translateY(-2px)
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(29, 122, 97, 0.15);
}

.proof-stat .num {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--teal);
    font-family: 'Nunito', sans-serif;
    letter-spacing: -0.03em
}

.proof-stat .lbl {
    font-size: 0.72rem;
    color: var(--ink-soft)
}

.proof-sep {
    width: 1px;
    height: 32px;
    background: rgba(29, 122, 97, 0.2)
}

/* HERO PHONES */
.hero-phones {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 480px;
    width: 100%;
    margin-top: 32px;
}

.phones-carousel {
    position: relative;
    width: 580px;
    height: 100%;
    padding: 40px;
}

.phone-wrap {
    position: relative
}

.phone-frame {
    width: 220px;
    background: #fff;
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    position: absolute;
    left: 50%;
    top: 50%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, width 0.5s ease;
}

.phone-frame img {
    width: 100%;
    border-radius: 26px;
    display: block;
}

.phone-frame.pos-center {
    width: 240px;
    z-index: 3;
    transform: translateX(-50%) translateY(-50%);
    opacity: 1;
}

.phone-frame.pos-left {
    width: 200px;
    z-index: 2;
    transform: translateX(calc(-50% - 145px)) translateY(calc(-50% + 24px)) rotate(-5deg) scale(0.9);
    opacity: 0.8;
}

.phone-frame.pos-right {
    width: 200px;
    z-index: 2;
    transform: translateX(calc(-50% + 145px)) translateY(calc(-50% + 24px)) rotate(5deg) scale(0.9);
    opacity: 0.8;
}

.phone-frame.pos-hidden-left {
    width: 180px;
    z-index: 1;
    transform: translateX(calc(-50% - 300px)) translateY(calc(-50% + 40px)) rotate(-10deg) scale(0.75);
    opacity: 0;
    pointer-events: none;
}

.phone-frame.pos-hidden-right {
    width: 180px;
    z-index: 1;
    transform: translateX(calc(-50% + 300px)) translateY(calc(-50% + 40px)) rotate(10deg) scale(0.75);
    opacity: 0;
    pointer-events: none;
}

/* ── SECTION BASE ── */
section {
    overflow-x: hidden;
    padding: 80px 6vw
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    margin-bottom: 12px;
    font-family: 'Nunito', sans-serif;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px
}

h2.sec-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 14px;
}

.sec-desc {
    font-size: 1rem;
    color: var(--ink-mid);
    line-height: 1.7;
    max-width: 520px
}

/* ── PROOF BAR ── */
.proof-bar {
    background: var(--teal);
    padding: 20px 6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.pb-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem
}

.pb-item strong {
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 900
}

.pb-sep {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2)
}

/* ── APP SHOWCASE ── */
.app-showcase {
    background: var(--peach)
}

.showcase-grid {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-phones {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
}

.s-phone {
    background: #fff;
    border-radius: 32px;
    padding: 8px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.s-phone img {
    width: 100%;
    border-radius: 24px;
    display: block
}

.s-phone.tall {
    width: 180px
}

.s-phone.short {
    width: 155px;
    transform: rotate(3deg) translateY(16px);
    opacity: 0.9
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.sf-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: var(--r);
    transition: transform .2s;
}

.sf-item:hover {
    transform: translateX(4px)
}

.sf-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.sf-icon.teal {
    background: var(--teal-light)
}

.sf-icon.orange {
    background: var(--orange-light)
}

.sf-icon.sky {
    background: var(--sky-light)
}

.sf-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    font-family: 'Nunito', sans-serif
}

.sf-desc {
    font-size: 0.84rem;
    color: var(--ink-mid);
    line-height: 1.6
}

/* ── PERSONAGENS (avulsos) ── */
.personagens {
    background: var(--cream)
}

.pers-intro {
    max-width: 560px;
    margin-bottom: 48px
}

.pers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: end;
}

.pers-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 16px 12px 20px;
    text-align: center;
    border: 1.5px solid transparent;
    transition: border-color .2s, transform .2s, box-shadow .2s;
}

.pers-card:hover {
    border-color: var(--teal-light);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1)
}

.pers-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 10px;
    background: #000;
}

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

/* Fallback tap-to-play (WKWebView que bloqueia autoplay) */
.pers-tap {
    cursor: pointer;
}

.pers-tap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 1;
    border-radius: var(--r);
}

.pers-tap::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 2;
}


.pers-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--teal);
    font-family: 'Nunito', sans-serif
}

/* ── BANNER/MUSICAS ── */
.banners {
    background: var(--sky-light)
}

.banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.banner-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

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

/* ── PATRICIA ── */
.patricia {
    background: var(--peach)
}

.pat-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.1fr;
    gap: 64px;
    align-items: center;
    margin-top: 48px;
}

.pat-img-wrap {
    position: relative
}

.pat-img-bg {
    position: absolute;
    inset: 20px 0 0 20px;
    background: var(--teal-light);
    border-radius: var(--r-xl);
}

.pat-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--r-xl);
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
}

.pat-badge {
    position: absolute;
    bottom: 24px;
    right: -20px;
    z-index: 2;
    background: #fff;
    border-radius: var(--r);
    padding: 14px 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pat-badge .num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--teal);
    font-family: 'Nunito', sans-serif;
    line-height: 1
}

.pat-badge .lbl {
    font-size: 0.68rem;
    color: var(--ink-soft)
}

.pat-bio {
    font-size: 1rem;
    color: var(--ink-mid);
    line-height: 1.75;
    margin-bottom: 20px
}

.pat-bio strong {
    color: var(--ink);
    font-weight: 600
}

.creds {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px
}

.cred {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.88rem;
    color: var(--ink-mid);
    padding: 10px 14px;
    background: #fff;
    border-radius: 10px;
}

.cred-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0
}

.cred strong {
    color: var(--ink);
    font-weight: 600
}

/* ── DEPOIMENTOS ── */
.depos {
    background: var(--cream)
}

.depo-carousel-wrapper {
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}

.depo-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.depo-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 26px 22px;
    border: 1.5px solid transparent;
    transition: border-color .2s;
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 0;
}

.depo-card:hover {
    border-color: var(--teal-light)
}

.depo-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.depo-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--teal);
    background: transparent;
    color: var(--teal);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
    line-height: 1;
    padding: 0;
}

.depo-btn:hover {
    background: var(--teal);
    color: #fff;
}

.depo-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.depo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-light);
    border: none;
    cursor: pointer;
    transition: background .25s, transform .25s;
    padding: 0;
}

.depo-dot.active {
    background: var(--teal);
    transform: scale(1.5);
}

.depo-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.depo-text {
    font-size: 0.88rem;
    color: var(--ink-mid);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 18px
}

.depo-author {
    display: flex;
    align-items: center;
    gap: 10px
}

.d-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    font-family: 'Nunito', sans-serif;
}

.av1 {
    background: linear-gradient(135deg, #2A9974, #1D7A61)
}

.av2 {
    background: linear-gradient(135deg, #E87A3A, #c85f1f)
}

.av3 {
    background: linear-gradient(135deg, #B8DFF5, #5AAAD4)
}

.av4 {
    background: linear-gradient(135deg, #EDD5BE, #c4a07a)
}

.av5 {
    background: linear-gradient(135deg, #D4A843, #a87e20)
}

.av6 {
    background: linear-gradient(135deg, #E84C4C, #c02222)
}

.d-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    font-family: 'Nunito', sans-serif
}

.d-role {
    font-size: 0.72rem;
    color: var(--ink-soft)
}

/* ── INCLUSO ── */
.incluso {
    background: #E87A3A
}

.incluso .eyebrow {
    color: var(--teal-light)
}

.incluso .eyebrow::before {
    background: var(--teal-light)
}

.incluso h2.sec-title {
    color: #fff
}

.incluso .sec-desc {
    color: rgba(255, 255, 255, 0.75)
}

.inc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.inc-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    color: var(--ink);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    transition: box-shadow .25s, transform .25s;
}

.inc-card:hover {
    box-shadow: 0 8px 28px rgba(29, 122, 97, 0.13);
    transform: translateY(-4px);
}

/* aurora mesh — canto inferior direito */
.inc-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background:
        radial-gradient(ellipse 100px 90px at 60% 65%, rgba(29, 122, 97, 0.38) 0%, transparent 70%),
        radial-gradient(ellipse 80px 90px at 88% 38%, rgba(232, 122, 58, 0.28) 0%, transparent 65%),
        radial-gradient(ellipse 70px 60px at 45% 88%, rgba(212, 168, 67, 0.18) 0%, transparent 60%);
    border-radius: 58% 42% 46% 54% / 56% 44% 62% 38%;
    filter: blur(14px);
    pointer-events: none;
    z-index: 0;
}

.inc-card>* {
    position: relative;
    z-index: 1;
}

.inc-icon {
    font-size: 1.8rem;
    margin-bottom: 12px
}

.inc-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    font-family: 'Nunito', sans-serif
}

.inc-desc {
    font-size: 0.8rem;
    color: var(--ink-mid);
    line-height: 1.6
}

/* ── PRICING ── */
.pricing {
    background: url('/assets/imgs/banners/background2.png') center/cover no-repeat;
    text-align: center
}

.pricing-card {
    position: relative;
    overflow: hidden;
    max-width: 500px;
    margin: 48px auto 0;
    background: linear-gradient(145deg, #fde3c8 0%, #ffeedd 30%, #fff8f2 65%, #ffffff 100%);
    border-radius: var(--r-xl);
    padding: 44px 40px;
    border: 2px solid rgba(232, 122, 58, 0.3);
    box-shadow: 0 16px 48px rgba(232, 122, 58, 0.18);
}

/* aurora laranja — canto superior esquerdo */
.pricing-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 240px;
    height: 240px;
    background:
        radial-gradient(ellipse 140px 120px at 45% 42%, rgba(232, 122, 58, 0.50) 0%, transparent 70%),
        radial-gradient(ellipse 100px 110px at 78% 22%, rgba(255, 180, 90, 0.35) 0%, transparent 65%),
        radial-gradient(ellipse 90px 80px at 30% 78%, rgba(212, 168, 67, 0.25) 0%, transparent 60%);
    filter: blur(18px);
    pointer-events: none;
    z-index: 0;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.ptag {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
}

.price-was {
    font-size: 0.85rem;
    color: var(--ink-soft);
    text-decoration: line-through;
    margin-bottom: 4px
}

.price-big {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -0.05em;
    line-height: 1;
    font-family: 'Nunito', sans-serif;
}

.price-big sup {
    font-size: 1.4rem;
    vertical-align: super
}

.price-period {
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-top: 6px;
    margin-bottom: 28px
}

.price-hr {
    border: none;
    border-top: 1px solid #EDE8E8;
    margin-bottom: 22px
}

.price-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
    text-align: left
}

.price-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.88rem;
    color: var(--ink-mid)
}

.price-list li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 800;
    flex-shrink: 0;
    font-family: 'Nunito', sans-serif
}

.btn-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--teal);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    padding: 16px;
    border-radius: 100px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 6px 20px rgba(29, 122, 97, 0.35);
}

.btn-cta:hover {
    background: var(--teal-mid);
    transform: translateY(-2px)
}

.guarantee {
    margin-top: 14px;
    font-size: 0.75rem;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

/* ── FAQ ── */
.faq {
    background: var(--peach)
}

.faq-list {
    max-width: 660px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.faq-item {
    background: #fff;
    border-radius: var(--r);
    overflow: hidden
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    text-align: left;
}

.faq-icon {
    color: var(--teal);
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform .25s;
    flex-shrink: 0
}

.faq-a {
    display: none;
    padding: 0 22px 18px;
    font-size: 0.86rem;
    color: var(--ink-mid);
    line-height: 1.7
}

.faq-item.open .faq-a {
    display: block
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

/* ── CTA FINAL ── */
.cta-final {
    background: var(--orange);
    text-align: center;
    padding: 80px 6vw;
    position: relative;
    overflow: hidden;
}

.cta-final h2 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    max-width: 580px;
    margin: 0 auto 14px;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    max-width: 460px;
    margin: 0 auto 32px;
    line-height: 1.65
}

.btn-white {
    display: inline-block;
    background: #fff;
    color: var(--orange);
    font-size: 1rem;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform .15s, box-shadow .2s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2)
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    padding: 28px 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.foot-logo {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    color: #fff
}

.foot-logo span {
    color: var(--teal-mid)
}

.foot-links {
    display: flex;
    gap: 20px
}

.foot-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none
}

.foot-links a:hover {
    color: rgba(255, 255, 255, 0.7)
}

.foot-copy {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3)
}

/* ── RESPONSIVE ── */
@media(max-width:1000px) {

    .hero-text {
        position: relative;
        z-index: 2;
        max-width: 700px;
        width: 100%;
    }

    .hero {
        background-image: url(/assets/imgs/banners/background.png);
        padding-top: 110px;
    }

    .hero-phones {
        height: 380px;
    }

    .phones-carousel {
        width: min(100%, 480px);
    }

    .pat-grid {
        grid-template-columns: 1fr
    }

    .pat-badge {
        right: 0
    }

    .inc-grid {
        grid-template-columns: 1fr 1fr
    }

    .depo-card {
        flex: 0 0 calc((100% - 16px) / 2);
    }

    .pers-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .nav-links {
        display: none
    }

    .banners-grid {
        grid-template-columns: 1fr
    }

    .video-bg {
        width: 100%;
        height: 100%;
        border-radius: var(--r);
        object-fit: contain;
    }
}

@media(max-width:600px) {
    .hero-phones {
        height: 300px;
        padding: 0 20px;
        margin-top: 24px;
    }

    .phones-carousel {
        width: min(100%, 320px);
    }

    .phone-frame.pos-center {
        width: 190px;
    }

    .phone-frame.pos-left {
        width: 160px;
        transform: translateX(calc(-50% - 88px)) translateY(calc(-50% + 16px)) rotate(-5deg) scale(0.88);
    }

    .phone-frame.pos-right {
        width: 160px;
        transform: translateX(calc(-50% + 88px)) translateY(calc(-50% + 16px)) rotate(5deg) scale(0.88);
    }

    .phone-frame.pos-hidden-left {
        transform: translateX(calc(-50% - 180px)) translateY(calc(-50% + 28px)) rotate(-10deg) scale(0.75);
        opacity: 0;
    }

    .phone-frame.pos-hidden-right {
        transform: translateX(calc(-50% + 180px)) translateY(calc(-50% + 28px)) rotate(10deg) scale(0.75);
        opacity: 0;
    }

    .inc-grid {
        grid-template-columns: 1fr
    }

    .depo-card {
        flex: 0 0 100%;
    }

    .pers-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .pricing-card {
        padding: 28px 20px
    }

    nav {
        padding: 14px 4vw
    }

    section {
        padding: 60px 4vw
    }

    .pb-sep {
        display: none
    }

    .proof-bar {
        gap: 20px
    }
}

/* ── VIDEO SECTION ── */
.video-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    width: 100%;
    height: 100%;
    border-radius: var(--r);
    object-fit: contain;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.08s
}

.reveal-delay-2 {
    transition-delay: 0.18s
}

.reveal-delay-3 {
    transition-delay: 0.28s
}

.reveal-delay-4 {
    transition-delay: 0.38s
}

.reveal-delay-5 {
    transition-delay: 0.48s
}