/* ===================================================
   KLEBER CAMPOS — PERSONAL TRAINER
   style.css — Premium Dark Fitness Theme
   =================================================== */

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

:root {
    --red:        #e60000;
    --red-light:  #ff3333;
    --red-dark:   #b30000;
    --red-glow:   rgba(230, 0, 0, 0.45);
    --red-soft:   rgba(230, 0, 0, 0.08);
    --red-border: rgba(230, 0, 0, 0.25);

    --bg:        #080808;
    --bg2:       #0e0e0e;
    --bg3:       #141414;
    --bg-card:   #111111;
    --bg-card2:  #1a1a1a;

    --border:    rgba(255, 255, 255, 0.07);
    --border2:   rgba(255, 255, 255, 0.12);

    --white:     #ffffff;
    --gray1:     #cccccc;
    --gray2:     #999999;
    --gray3:     #555555;

    --gold:      #ffd700;

    --ff-head:   'Bebas Neue', sans-serif;
    --ff-body:   'Montserrat', sans-serif;

    --ease:      cubic-bezier(0.4, 0, 0.2, 1);
    --tr:        all 0.3s var(--ease);

    --shadow-red:  0 0 40px rgba(230, 0, 0, 0.25);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.6);

    --r:   10px;
    --r-lg: 18px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ff-body);
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; }

::-webkit-scrollbar          { width: 5px; }
::-webkit-scrollbar-track    { background: var(--bg); }
::-webkit-scrollbar-thumb    { background: var(--red-dark); border-radius: 3px; }

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 110px 0; }

.section-line-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
    opacity: 0.5;
}

.red       { color: var(--red); }
.red-glow  {
    color: var(--red);
    text-shadow: 0 0 30px var(--red-glow), 0 0 70px rgba(230,0,0,0.2);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid var(--red-border);
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
    background: var(--red-soft);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-family: var(--ff-head);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.divider-center {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    margin: 0 auto 18px;
    border-radius: 2px;
}

.divider-left {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--red), transparent);
    margin: 0 0 20px;
    border-radius: 2px;
}

.section-desc {
    color: var(--gray2);
    font-size: 0.96rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.25s ease;
}
.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn-primary {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(230,0,0,0.45);
}
.btn-primary:hover {
    box-shadow: 0 6px 36px rgba(230,0,0,0.65);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
    box-shadow: 0 6px 36px rgba(37,211,102,0.55);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 0.92rem;
    letter-spacing: 2px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--tr);
}

.navbar.scrolled {
    background: rgba(6, 6, 6, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 64px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(230,0,0,0.35));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.navbar.scrolled .nav-logo-img {
    height: 52px;
}

.nav-logo-img:hover {
    filter: drop-shadow(0 2px 18px rgba(230,0,0,0.6));
    transform: scale(1.04);
}

/* keep legacy text logo fallback */
.logo-text {
    font-family: var(--ff-head);
    font-size: 1.9rem;
    letter-spacing: 3px;
    color: var(--white);
    line-height: 1;
}

.logo-sub {
    font-size: 0.58rem;
    letter-spacing: 3.5px;
    color: var(--gray3);
    text-transform: uppercase;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--gray2);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }

.btn-nav-wpp {
    background: rgba(37,211,102,0.1) !important;
    color: #2ddc6d !important;
    border: 1px solid rgba(37,211,102,0.25);
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 0.75rem !important;
}
.btn-nav-wpp:hover {
    background: rgba(37,211,102,0.2) !important;
    color: #25d366 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--tr);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 110px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060606 0%, #0c0c0c 100%);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,
            transparent, transparent 79px,
            rgba(255,255,255,0.018) 79px, rgba(255,255,255,0.018) 80px),
        repeating-linear-gradient(90deg,
            transparent, transparent 79px,
            rgba(255,255,255,0.018) 79px, rgba(255,255,255,0.018) 80px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(8,8,8,1)     0%,
        rgba(8,8,8,0.85)  40%,
        rgba(8,8,8,0.5)   70%,
        rgba(8,8,8,0.25) 100%
    );
}

.hero-radial {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 40%, rgba(230,0,0,0.09) 0%, transparent 60%),
        radial-gradient(ellipse at 15% 85%, rgba(230,0,0,0.05) 0%, transparent 45%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero — content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid var(--red-border);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
    background: var(--red-soft);
}
.hero-badge i { font-size: 0.65rem; }

.hero-title {
    font-family: var(--ff-head);
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    line-height: 1.0;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.hero-sub {
    font-size: 0.97rem;
    color: var(--gray2);
    line-height: 1.85;
    margin-bottom: 30px;
    max-width: 490px;
}

.hero-bullets {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-bottom: 40px;
}
.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--gray1);
}
.hero-bullets li i {
    color: var(--red);
    font-size: 0.82rem;
    flex-shrink: 0;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;       /* mantém os dois botões na mesma linha */
    align-items: center;
}

/* Botões do hero levemente compactos para caber lado a lado */
.hero-btns .btn {
    padding: 13px 20px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Hero — image */
.hero-image {
    display: flex;
    justify-content: center;
}

.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.hero-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-card2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.hero-photo-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(230,0,0,0.04) 0%, transparent 60%);
}

.photo-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.photo-inner i {
    font-size: 6rem;
    color: var(--red);
    opacity: 0.3;
}

.photo-name {
    font-family: var(--ff-head);
    font-size: 1.6rem;
    letter-spacing: 4px;
    color: var(--gray1);
}

.photo-title {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray3);
    font-weight: 600;
}

.photo-hint {
    font-size: 0.68rem;
    color: var(--gray3);
    letter-spacing: 1px;
    border: 1px dashed var(--gray3);
    padding: 4px 12px;
    border-radius: 4px;
    margin-top: 8px;
}

.hero-photo-real {
    padding: 0;
    background: var(--bg);
}

.hero-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--r-lg);
    display: block;
}

/* Photo corners */
.photo-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--red);
    border-style: solid;
    opacity: 0.5;
}
.photo-corner.tl { top: 14px; left: 14px; border-width: 2px 0 0 2px; }
.photo-corner.tr { top: 14px; right: 14px; border-width: 2px 2px 0 0; }
.photo-corner.bl { bottom: 14px; left: 14px; border-width: 0 0 2px 2px; }
.photo-corner.br { bottom: 14px; right: 14px; border-width: 0 2px 2px 0; }

.hero-glow-ring {
    position: absolute;
    top: -30px; right: -30px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(230,0,0,0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

/* Stats bar */
.hero-stats-bar {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: stretch;
    background: rgba(8,8,8,0.96);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card), 0 0 30px rgba(230,0,0,0.1);
    min-width: 290px;
}

.hero-stat {
    flex: 1;
    text-align: center;
    padding: 14px 18px;
    position: relative;
}

.hero-stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

.hero-stat-num {
    display: block;
    font-family: var(--ff-head);
    font-size: 2rem;
    color: var(--red);
    line-height: 1;
    text-shadow: 0 0 20px var(--red-glow);
}

.hero-stat-sym {
    font-family: var(--ff-head);
    font-size: 1.2rem;
    color: var(--red);
}

.hero-stat-label {
    display: block;
    font-size: 0.6rem;
    color: var(--gray3);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 3px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-dot {
    width: 22px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 11px;
    position: relative;
}

.scroll-dot::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--red);
    border-radius: 2px;
    animation: scrollBounce 2.2s ease-in-out infinite;
}

/* ===== SOBRE ===== */
.sobre {
    background: var(--bg2);
    position: relative;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 80px;
    align-items: center;
}

.sobre-frame {
    position: relative;
}

.sobre-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg3) 100%);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    color: var(--gray3);
    overflow: hidden;
    position: relative;
}

.sobre-photo-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(230,0,0,0.06), transparent);
}

.sobre-photo-real {
    padding: 0;
    background: var(--bg);
    overflow: hidden;
}

.sobre-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--r-lg);
    display: block;
    transition: transform 0.5s var(--ease);
}

.sobre-frame:hover .sobre-photo-img {
    transform: scale(1.03);
}

.sobre-accent-line {
    position: absolute;
    left: -20px;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--red), transparent);
    border-radius: 2px;
}

.sobre-badge-float {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--r);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-red);
}

.sobre-intro {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--gray1);
    margin-bottom: 18px;
}

.sobre-text {
    color: var(--gray2);
    line-height: 1.85;
    margin-bottom: 36px;
    font-size: 0.95rem;
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: var(--tr);
}

.feature-item:hover {
    border-color: var(--red-border);
    background: var(--red-soft);
    transform: translateX(5px);
    box-shadow: -3px 0 0 var(--red);
}

.feature-icon {
    width: 46px;
    height: 46px;
    background: rgba(230,0,0,0.1);
    border: 1px solid var(--red-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: var(--tr);
}

.feature-item:hover .feature-icon {
    background: rgba(230,0,0,0.2);
    box-shadow: 0 0 15px rgba(230,0,0,0.25);
}

.feature-txt { display: flex; flex-direction: column; gap: 2px; }
.feature-txt strong { font-size: 0.92rem; font-weight: 700; }
.feature-txt span   { font-size: 0.8rem; color: var(--gray2); }

/* ===== PARA QUEM ===== */
.para-quem {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.para-quem-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(230,0,0,0.035) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card-pq {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 26px;
    text-align: center;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.card-pq::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.card-pq:hover {
    border-color: var(--red-border);
    background: rgba(17, 17, 17, 0.9);
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(230,0,0,0.12), var(--shadow-card);
}

.card-pq:hover::after { transform: scaleX(1); }

.card-pq-icon {
    width: 62px;
    height: 62px;
    background: rgba(230,0,0,0.08);
    border: 1px solid rgba(230,0,0,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.55rem;
    color: var(--red);
    transition: var(--tr);
}

.card-pq:hover .card-pq-icon {
    background: rgba(230,0,0,0.18);
    box-shadow: 0 0 22px rgba(230,0,0,0.3);
    transform: scale(1.08);
}

.card-pq h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.card-pq p {
    font-size: 0.85rem;
    color: var(--gray2);
    line-height: 1.65;
}

/* ===== PLANOS ===== */
.planos {
    background: var(--bg2);
    position: relative;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
    margin-bottom: 50px;
}

.plano-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 38px 30px;
    transition: var(--tr);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plano-card:hover {
    border-color: var(--border2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.plano-destaque {
    background: linear-gradient(160deg, rgba(230,0,0,0.07) 0%, var(--bg-card2) 100%);
    border: 1px solid rgba(230, 0, 0, 0.4);
    transform: scale(1.04);
    box-shadow: 0 0 50px rgba(230,0,0,0.18), var(--shadow-card);
    z-index: 1;
}

.plano-destaque:hover {
    transform: scale(1.04) translateY(-5px);
    box-shadow: 0 0 70px rgba(230,0,0,0.28), var(--shadow-card);
}

.plano-badge-top {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 5px 22px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(230,0,0,0.55);
    text-transform: uppercase;
}

.plano-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.plano-periodo {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--gray2);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.plano-preco {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.moeda {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray2);
    margin-top: 8px;
    line-height: 1;
}

.valor {
    font-family: var(--ff-head);
    font-size: 4rem;
    line-height: 1;
    color: var(--white);
}

.plano-destaque .valor {
    color: var(--red);
    text-shadow: 0 0 30px rgba(230,0,0,0.5);
}

.plano-per {
    font-size: 0.8rem;
    color: var(--gray2);
    align-self: flex-end;
    margin-bottom: 8px;
}

.plano-items {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 30px;
}

.plano-items li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 0.88rem;
    color: var(--gray2);
}

.plano-items li i {
    color: var(--red);
    font-size: 0.72rem;
    background: rgba(230,0,0,0.1);
    width: 20px; height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-plano {
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid var(--border2);
    color: var(--white);
    background: rgba(255,255,255,0.04);
    transition: var(--tr);
}

.btn-plano:hover {
    border-color: var(--red-border);
    background: var(--red-soft);
    color: var(--red);
}

.btn-plano-destaque {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-color: transparent;
    box-shadow: 0 4px 22px rgba(230,0,0,0.45);
}

.btn-plano-destaque:hover {
    background: linear-gradient(135deg, var(--red-light), var(--red));
    box-shadow: 0 6px 32px rgba(230,0,0,0.65);
    color: var(--white);
    border-color: transparent;
}

.plano-economia {
    text-align: center;
    margin-top: 10px;
    font-size: 0.72rem;
    color: #4ade80;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ===== CARD PRESENCIAL — WhatsApp ===== */
.plano-card-wpp {
    background: linear-gradient(160deg, rgba(37,211,102,0.06) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(37, 211, 102, 0.35);
    box-shadow: 0 0 40px rgba(37,211,102,0.10);
}

.plano-card-wpp:hover {
    border-color: rgba(37, 211, 102, 0.6);
    box-shadow: 0 0 60px rgba(37,211,102,0.20), var(--shadow-card);
    transform: translateY(-5px);
}

.plano-wpp-icon {
    text-align: center;
    margin-bottom: 14px;
}

.plano-wpp-icon i {
    font-size: 2.6rem;
    color: #25D366;
    filter: drop-shadow(0 0 12px rgba(37,211,102,0.55));
}

.plano-header-wpp {
    border-bottom-color: rgba(37, 211, 102, 0.2);
}

.plano-periodo-wpp {
    color: #25D366;
    letter-spacing: 2px;
    font-size: 1.05rem;
    line-height: 1.3;
}

.plano-subtitulo-wpp {
    font-size: 0.8rem;
    color: var(--gray2);
    margin-bottom: 14px;
    margin-top: -6px;
    text-align: center;
}

.plano-consulta {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 6px 18px;
    background: rgba(255,255,255,0.07);
}

.plano-items-wpp li i {
    color: #25D366;
    background: rgba(37,211,102,0.12);
}

.btn-plano-wpp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 22px rgba(37,211,102,0.40);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-plano-wpp:hover {
    background: linear-gradient(135deg, #2eea73, #25D366);
    box-shadow: 0 6px 32px rgba(37,211,102,0.60);
    color: #fff;
    border-color: transparent;
}

.btn-plano-wpp i {
    font-size: 1.1rem;
}

.plano-local-wpp {
    text-align: center;
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--gray2);
    line-height: 1.4;
}

/* Pagamento */
.pagamento-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pagamento-label {
    font-size: 0.82rem;
    color: var(--gray2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pagamento-label i { color: var(--red); }

.mp-brand {
    color: var(--red);
    font-size: 0.88rem;
}

.pagamento-methods {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pay-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--gray2);
}

.pay-item i { color: var(--gray3); }

.pay-sep {
    width: 1px;
    height: 18px;
    background: var(--border);
}

/* ===== PRESENCIAL ===== */
.presencial {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.presencial-glow {
    position: absolute;
    right: -150px; top: 50%;
    transform: translateY(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(230,0,0,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.presencial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.presencial-title {
    font-family: var(--ff-head);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    letter-spacing: 2px;
    line-height: 1.0;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.presencial-content > p {
    color: var(--gray2);
    line-height: 1.85;
    margin-bottom: 28px;
    font-size: 0.96rem;
}

.presencial-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 32px;
}

.presencial-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray1);
}

.presencial-list li i {
    color: var(--red);
    width: 18px;
    flex-shrink: 0;
}

.btn-presencial {
    margin-bottom: 18px;
    font-size: 0.88rem;
    padding: 16px 30px;
}

.presencial-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray2);
}
.presencial-tel i { color: var(--red); }

/* Presencial visual */
.presencial-frame {
    position: relative;
    border-radius: var(--r-lg);
}

.presencial-photo-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg3) 100%);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 4rem;
    color: var(--gray3);
    overflow: hidden;
    position: relative;
}

.presencial-photo-placeholder span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gray3);
}

.presencial-photo-placeholder small {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray3);
    opacity: 0.6;
}

.presencial-photo-real {
    padding: 0;
    background: var(--bg);
    overflow: hidden;
}

.presencial-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--r-lg);
    display: block;
    transition: transform 0.5s var(--ease);
}

.presencial-frame:hover .presencial-photo-img {
    transform: scale(1.04);
}

.presencial-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--red);
    border-style: solid;
    opacity: 0.5;
}
.presencial-corner.tl { top: 14px; left: 14px; border-width: 2px 0 0 2px; }
.presencial-corner.tr { top: 14px; right: 14px; border-width: 2px 2px 0 0; }
.presencial-corner.bl { bottom: 14px; left: 14px; border-width: 0 0 2px 2px; }
.presencial-corner.br { bottom: 14px; right: 14px; border-width: 0 2px 2px 0; }

.presencial-frame-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(230,0,0,0.04), transparent 60%);
    border-radius: var(--r-lg);
    pointer-events: none;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
    background: var(--bg2);
    position: relative;
}

.dep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.dep-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 30px 28px;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
}

.dep-card:hover {
    border-color: var(--red-border);
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.45);
}

.dep-highlight {
    background: linear-gradient(160deg, rgba(230,0,0,0.05) 0%, var(--bg-card) 100%);
    border-color: rgba(230,0,0,0.18);
}

.dep-quote {
    position: absolute;
    top: -16px;
    right: 18px;
    font-family: Georgia, serif;
    font-size: 9rem;
    color: rgba(230,0,0,0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.dep-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}
.dep-stars i { color: var(--gold); font-size: 0.85rem; }

.dep-card > p {
    font-size: 0.86rem;
    color: var(--gray2);
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.dep-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dep-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.dep-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dep-info strong {
    font-size: 0.88rem;
    font-weight: 700;
}

.dep-info span {
    font-size: 0.73rem;
    color: var(--gray2);
}

.dep-badge {
    display: inline-block;
    background: rgba(230,0,0,0.1);
    border: 1px solid rgba(230,0,0,0.2);
    color: var(--red) !important;
    padding: 2px 9px;
    border-radius: 4px;
    font-size: 0.68rem !important;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* ===== FAQ ===== */
.faq {
    background: var(--bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: var(--red-border);
    box-shadow: 0 0 24px rgba(230,0,0,0.08);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    color: var(--white);
    font-family: var(--ff-body);
    font-size: 0.93rem;
    font-weight: 600;
    text-align: left;
    transition: color 0.25s;
}

.faq-q:hover { color: var(--red); }

.faq-icon {
    color: var(--red);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.35s var(--ease);
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-a { max-height: 250px; }

.faq-a p {
    padding: 0 24px 22px;
    color: var(--gray2);
    font-size: 0.88rem;
    line-height: 1.75;
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--bg2);
}

.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(230,0,0,0.09) 0%, transparent 70%);
}

.cta-line-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--ff-head);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--gray2);
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.6fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    max-width: 220px;
    display: block;
    align-self: flex-start;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(230,0,0,0.25));
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--gray2);
    line-height: 1.7;
    max-width: 270px;
}

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

.social-btn {
    width: 38px;
    height: 38px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray2);
    font-size: 0.95rem;
    transition: var(--tr);
}

.social-btn:hover {
    border-color: var(--red-border);
    color: var(--red);
    box-shadow: 0 0 14px rgba(230,0,0,0.2);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-nav a {
    color: var(--gray2);
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--red); }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.fc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray2);
}

.fc-item i { color: var(--red); width: 15px; flex-shrink: 0; }

.fc-item a {
    color: var(--gray2);
    transition: color 0.2s;
}
.fc-item a:hover { color: var(--red); }

.footer-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--gray3);
}

.footer-mp {
    font-size: 0.78rem;
    color: var(--gray3);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-mp i { color: var(--red); }

/* ===== WHATSAPP FLOAT ===== */
.wpp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25d366, #1aad53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    z-index: 900;
    box-shadow: 0 4px 24px rgba(37,211,102,0.5);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    animation: floatBob 3s ease-in-out infinite;
    opacity: 0;
    transform: scale(0.8);
}

.wpp-float.visible {
    opacity: 1;
    transform: scale(1);
    animation: floatBob 3s ease-in-out 0.3s infinite;
}

.wpp-float:hover {
    transform: scale(1.12) !important;
    box-shadow: 0 6px 36px rgba(37,211,102,0.7);
    animation-play-state: paused;
}

.wpp-tooltip {
    position: absolute;
    right: 68px;
    background: rgba(4,4,4,0.92);
    color: var(--white);
    padding: 6px 13px;
    border-radius: 7px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    border: 1px solid var(--border);
}

.wpp-float:hover .wpp-tooltip { opacity: 1; }

/* ===== AOS (Animate On Scroll) ===== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-aos="fade-up"]    { transform: translateY(32px); }
[data-aos="fade-left"]  { transform: translateX(32px); }
[data-aos="fade-right"] { transform: translateX(-32px); }

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
}

/* ===== ANIMATIONS ===== */
@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1);   }
    50%       { opacity: 0.8; transform: scale(1.12); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(9px); }
}

@keyframes floatBob {
    0%, 100% { transform: scale(1) translateY(0);  }
    50%       { transform: scale(1) translateY(-7px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container    { gap: 40px; }
    .sobre-grid        { grid-template-columns: 1fr 1.2fr; gap: 50px; }
    .planos-grid       { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .dep-grid          { grid-template-columns: repeat(2, 1fr); }
    .footer-grid       { grid-template-columns: 1fr 1fr; }
    .footer-brand      { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(4,4,4,0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 48px 36px;
        gap: 22px;
        border-left: 1px solid var(--border);
        transition: right 0.35s var(--ease);
        z-index: 1050;
    }

    .nav-links.open { right: 0; }
    .hamburger { display: flex; }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content { order: 2; }
    .hero-image   { order: 1; }
    .hero-sub, .hero-btns { margin-left: auto; margin-right: auto; }
    .hero-btns    { justify-content: center; }
    .hero-bullets { grid-template-columns: 1fr; }
    .hero-bullets li { justify-content: center; }
    .hero-img-wrap { max-width: 300px; margin: 0 auto; }

    .sobre-grid   { grid-template-columns: 1fr; gap: 40px; }
    .sobre-img-area { max-width: 280px; margin: 0 auto; }

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

    .planos-grid  { grid-template-columns: 1fr; }
    .plano-destaque { transform: none; }
    .plano-destaque:hover { transform: translateY(-5px); }

    .presencial-grid { grid-template-columns: 1fr; }
    .presencial-visual { display: none; }

    .dep-grid     { grid-template-columns: 1fr; }
    .footer-grid  { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .section { padding: 80px 0; }
}

@media (max-width: 480px) {
    .cards-grid  { grid-template-columns: 1fr; }
    .hero-btns   { flex-direction: column; align-items: center; }
    .btn         { justify-content: center; width: 100%; max-width: 320px; }
    .cta-btns    { flex-direction: column; align-items: center; }
    .pagamento-box { flex-direction: column; gap: 18px; }
    .pagamento-methods { flex-wrap: wrap; justify-content: center; }
    .hero-stats-bar { min-width: unset; width: 92%; }
}

/* ===================================================
   NOVOS ESTILOS — CONVERSÃO, FORM, TRUST, ANTES/DEPOIS
   =================================================== */

/* ===== NAVBAR: botão Avaliação Gratuita ===== */
.btn-nav-avaliacao {
    background: rgba(230,0,0,0.12) !important;
    color: var(--red) !important;
    border: 1px solid var(--red-border);
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    transition: var(--tr);
}
.btn-nav-avaliacao:hover {
    background: rgba(230,0,0,0.22) !important;
    color: var(--red-light) !important;
}

/* ===== BTN SMALL ===== */
.btn-sm {
    padding: 11px 24px;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
}

/* ===== MINI CTA ===== */
.mini-cta {
    background: rgba(230,0,0,0.04);
    border-top: 1px solid rgba(230,0,0,0.12);
    border-bottom: 1px solid rgba(230,0,0,0.12);
    padding: 22px 0;
    margin-top: 60px;
}

.mini-cta-alt {
    background: rgba(255,255,255,0.02);
    border-color: var(--border);
}

.mini-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.mini-cta-inner p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray1);
    margin: 0;
}

/* ===== FORMULÁRIO DE LEADS ===== */
.form-section {
    background: var(--bg3);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    right: -200px; top: 50%;
    transform: translateY(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(230,0,0,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

/* Coluna esquerda — promo */
.form-promo h2 {
    font-family: var(--ff-head);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.form-promo-text {
    color: var(--gray2);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.form-promo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 32px;
}

.form-promo-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray1);
}

.form-promo-list li i { color: var(--red); flex-shrink: 0; }

.form-promo-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 24px;
}

.fps-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 16px 20px;
    text-align: center;
}

.fps-sep {
    width: 1px;
    align-self: stretch;
    background: var(--border);
}

.fps-num {
    font-family: var(--ff-head);
    font-size: 1.8rem;
    color: var(--red);
    line-height: 1;
    text-shadow: 0 0 20px var(--red-glow);
}

.fps-label {
    font-size: 0.62rem;
    color: var(--gray3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.form-seals {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.seal-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray2);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 50px;
}

.seal-item i { color: var(--red); font-size: 0.72rem; }

/* Coluna direita — card do formulário */
.form-card {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-dark));
}

.form-card-inner {
    padding: 36px 32px;
}

.form-title {
    font-family: var(--ff-head);
    font-size: 1.65rem;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--gray2);
    margin-bottom: 28px;
}

/* Campos */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.field-group label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray2);
}

.req { color: var(--red); }

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrap > i {
    position: absolute;
    left: 14px;
    color: var(--gray3);
    font-size: 0.88rem;
    pointer-events: none;
    transition: color 0.2s;
    z-index: 1;
}

.input-wrap input,
.input-wrap select {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 13px 14px 13px 42px;
    color: var(--white);
    font-family: var(--ff-body);
    font-size: 0.9rem;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.input-select-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--gray3);
    pointer-events: none;
}

.input-wrap input::placeholder { color: var(--gray3); }
.input-wrap select option       { background: var(--bg3); color: var(--white); }

.input-wrap input:focus,
.input-wrap select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(230,0,0,0.12);
}

.input-wrap:focus-within > i { color: var(--red); }

.input-wrap input.field-invalid,
.input-wrap select.field-invalid {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255,68,68,0.1);
}

.field-error {
    font-size: 0.72rem;
    color: #ff5555;
    font-weight: 600;
    min-height: 16px;
    display: block;
}

/* Botão de envio */
.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--ff-body);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--tr);
    box-shadow: 0 4px 22px rgba(230,0,0,0.45);
    margin-top: 6px;
}

.btn-submit-text,
.btn-submit-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-loading { display: none; }

.btn-submit:hover:not(:disabled) {
    box-shadow: 0 6px 32px rgba(230,0,0,0.65);
    transform: translateY(-1px);
}

.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.7rem;
    color: var(--gray3);
    margin-top: 6px;
    text-align: center;
}

.form-privacy i { color: #4ade80; }

/* Estado de sucesso */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    gap: 16px;
}

.success-icon {
    font-size: 3.5rem;
    color: #4ade80;
    animation: successPop 0.5s var(--ease);
}

@keyframes successPop {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.form-success h3 {
    font-family: var(--ff-head);
    font-size: 1.9rem;
    letter-spacing: 1px;
}

.form-success p {
    color: var(--gray2);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 290px;
}

/* ===== SELOS DE CONFIANÇA ===== */
.trust-section {
    background: var(--bg2);
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    cursor: default;
    transition: var(--tr);
}

.trust-badge:hover .trust-icon {
    color: var(--red);
    transform: translateY(-3px);
}

.trust-icon {
    font-size: 1.4rem;
    color: var(--gray2);
    transition: var(--tr);
}

.trust-badge span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray2);
    white-space: nowrap;
}

.trust-sep {
    width: 1px;
    height: 40px;
    background: var(--border);
    align-self: center;
}

/* ===== ANTES E DEPOIS ===== */
.antes-depois {
    background: var(--bg);
    position: relative;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Card wrapper */
.ba-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--tr);
}

.ba-card:hover {
    border-color: var(--red-border);
    box-shadow: 0 20px 50px rgba(230,0,0,0.1);
    transform: translateY(-4px);
}

/* Container de comparação */
.ba-container {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    touch-action: none;
    background: var(--bg-card2);
}

/* Imagens */
.ba-before-wrap,
.ba-after-wrap {
    position: absolute;
    inset: 0;
}

.ba-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    pointer-events: none;
}

/* Placeholder quando a imagem não carrega */
.ba-ph {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-ph::after {
    content: attr(data-label);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: var(--ff-head);
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--gray3);
    background: var(--bg-card2);
    border: 2px dashed var(--border);
}

/* Adiciona label via CSS nas divs placeholder */
.ba-before-wrap.ba-ph { background: #0a0a0a; }
.ba-after-wrap.ba-ph  { background: rgba(230,0,0,0.04); }

.ba-before-wrap.ba-ph .ba-img { display: none; }
.ba-after-wrap.ba-ph  .ba-img { display: none; }

/* ANTES preenche toda a largura (base).
   DEPOIS fica sobreposto em cima, revelado da esquerda para a direita */
.ba-before-wrap {
    z-index: 1;   /* fica abaixo */
}

.ba-after-wrap {
    z-index: 2;                     /* fica acima */
    clip-path: inset(0 0 0 50%);     /* ocupa metade direita por padrão */
}

/* Tags ANTES / DEPOIS */
.ba-tag {
    position: absolute;
    top: 12px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
    pointer-events: none;
}

.ba-tag-before {
    left: 12px;
    background: rgba(0,0,0,0.7);
    color: var(--gray2);
    border: 1px solid var(--border);
}

.ba-tag-after {
    right: 12px;
    background: rgba(230,0,0,0.85);
    color: var(--white);
}

/* Linha divisória */
.ba-divider-line {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: var(--white);
    z-index: 3;
    pointer-events: none;
    transition: left 0.05s linear;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.ba-handle i {
    font-size: 0.55rem;
    color: #111;
}

/* Range input invisível mas funcional */
.ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
    margin: 0;
    -webkit-appearance: none;
}

/* Info do card */
.ba-info {
    padding: 16px 20px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.ba-aluna {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.ba-meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ba-meta span {
    font-size: 0.75rem;
    color: var(--gray2);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ba-meta i { font-size: 0.7rem; }

.ba-result {
    color: #4ade80 !important;
    font-weight: 700 !important;
}

/* CTA da seção Antes/Depois */
.ba-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.ba-cta p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray1);
}

/* ===== RESPONSIVE — Novos componentes ===== */
@media (max-width: 1024px) {
    .ba-grid { grid-template-columns: 1fr 1fr; }
    .ba-grid .ba-card:last-child { grid-column: 1 / -1; max-width: 380px; margin: 0 auto; }
}

@media (max-width: 768px) {
    /* Form */
    .form-grid    { grid-template-columns: 1fr; gap: 40px; }
    .form-promo-stats { flex-direction: column; gap: 0; }
    .fps-sep      { width: auto; height: 1px; align-self: auto; }
    .fps-item     { padding: 12px 16px; }
    .form-card-inner { padding: 28px 20px; }

    /* Trust */
    .trust-grid   { gap: 0; }
    .trust-badge  { padding: 10px 14px; }
    .trust-sep    { display: none; }

    /* Antes/Depois */
    .ba-grid      { grid-template-columns: 1fr; }
    .ba-grid .ba-card:last-child { max-width: 100%; }

    /* Mini CTA */
    .mini-cta-inner { flex-direction: column; text-align: center; }
    .mini-cta-inner .btn { width: auto; max-width: none; }
}

@media (max-width: 480px) {
    .form-seals   { flex-direction: column; gap: 8px; }
    .trust-grid   { flex-direction: column; align-items: flex-start; padding: 0 16px; }
}
