/* ============================================
   CSS VARIABLES - Color System
   ============================================ */
:root {
    /* Primary Colors */
    --color-primary: #362C72;
    --color-primary-dark: #2a2259;

    /* Background Colors */
    --color-bg-white: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-hero-start: #f5f0ff;
    --color-bg-hero-end: #e8dfff;

    /* Text Colors */
    --color-text-primary: #333333;
    --color-text-secondary: #666666;
    --color-text-placeholder: #999999;
    --color-text-white: #ffffff;

    /* Border Colors */
    --color-border-light: #e5e5e5;
    --color-border-medium: #d0d0d0;
    --color-border-divider: #f0f0f0;

    /* Overlay & Shadow Colors */
    --color-overlay: rgba(0, 0, 0, 0.5);
    --color-shadow-light: rgba(0, 0, 0, 0.1);
}

/* ============================================
   Base Styles
   ============================================ */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.2s ease;
}

.main-header.scrolled {
    box-shadow: 0 2px 16px var(--color-shadow-light);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* ── Logo ── */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.header-logo img {
    height: 28px;
    width: auto;
    display: block;
}

/* ── Desktop nav ── */
.header-nav {
    display: none;
    align-items: center;
    gap: 4px;
}

@media (min-width: 1024px) {
    .header-nav {
        display: flex;
    }
}

/* ── Nav item ── */
.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-item--dropdown.open>.nav-link {
    color: var(--color-text-primary);
    background: var(--color-bg-hero-start);
}

.nav-chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.nav-item--dropdown.open .nav-chevron {
    transform: rotate(180deg);
}

/* ── Dropdown ── */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    min-width: 240px;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

.nav-item--dropdown.open .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.nav-dropdown-item:hover {
    background: var(--color-bg-hero-start);
    color: var(--color-primary);
}

/* ── Join button ── */
.btn-join-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    padding: 9px 20px;
    background: var(--color-primary);
    color: var(--color-text-white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-join-now:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    color: #fff;
}

/* ── Hamburger ── */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ── Active dropdown item (current page) ── */
.nav-dropdown-item--active {
    background-color: #f5f0ff;
    color: var(--color-primary);
    font-weight: 500;
    border-radius: 6px;
}

.nav-dropdown-item--active:hover {
    background-color: #ece6ff;
    color: var(--color-primary);
}

/* ── Active parent button (when inside that section) ── */
.nav-link--active {
    color: var(--color-primary);
}

.nav-link--active .nav-chevron {
    stroke: var(--color-primary);
}


/* ═══════════════════════════════════════════
   MOBILE OVERLAY
═══════════════════════════════════════════ */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--color-overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ── Panel ── */
.mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    background: var(--color-bg-white);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-overlay.active .mobile-panel {
    transform: translateX(0);
}

/* Panel header */
.mobile-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--color-border-divider);
    flex-shrink: 0;
}

.mobile-logo {
    height: 24px;
    width: auto;
}

.mobile-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    transition: background 0.15s ease;
}

.mobile-close:hover {
    background: var(--color-border-light);
}

/* ── Mobile nav ── */
.mobile-nav {
    flex: 1;
    padding: 12px 0;
    overflow-y: auto;
}

.mobile-nav-group {
    border-bottom: 1px solid var(--color-border-divider);
}

.mobile-nav-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: left;
    transition: background 0.15s ease;
}

.mobile-nav-toggle:hover {
    background: var(--color-bg-hero-start);
}

/* Grupo com item ativo: destaca o toggle pai */
.mobile-nav-group--active>.mobile-nav-toggle {
    color: var(--color-primary);
}

.mobile-chevron {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.mobile-nav-group.open .mobile-chevron {
    transform: rotate(180deg);
}

/* Submenu */
.mobile-nav-sub {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    background: var(--color-bg-light);
}

.mobile-nav-group.open .mobile-nav-sub {
    grid-template-rows: 1fr;
}

.mobile-nav-sub>* {
    overflow: hidden;
}

.mobile-nav-link {
    display: block;
    padding: 11px 20px 11px 28px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.15s ease, background 0.15s ease;
}

.mobile-nav-link:hover {
    color: var(--color-primary);
    background: var(--color-bg-hero-end);
}

/* ── Link ativo ── */
.mobile-nav-link--active {
    color: var(--color-primary);
    font-weight: 700;
    background: var(--color-bg-hero-end);
    border-left: 3px solid var(--color-primary);
    padding-left: 25px;
}

.mobile-nav-link--active:hover {
    color: var(--color-primary);
    background: var(--color-bg-hero-end);
}

/* Panel footer */
.mobile-panel-footer {
    padding: 20px;
    border-top: 1px solid var(--color-border-divider);
    flex-shrink: 0;
}

.btn-mobile-join {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background: var(--color-primary);
    color: var(--color-text-white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-mobile-join:hover {
    background: var(--color-primary-dark);
}


/* ============================================
   Hero Section Styles
   ============================================ */
.hero-section {
    background: #F7F6FF;
    background: linear-gradient(180deg, rgba(247, 246, 255, 1) 0%, rgba(234, 232, 251, 1) 46%, rgba(251, 250, 254, 1) 100%);
    padding: 130px 0 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text-content {
    max-width: 900px;
    margin: 0 auto 60px;
    width: 100%;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
    text-align: center;
}

/* Quebra de linha no desktop */
@media (min-width: 769px) {
    .hero-title-break::before {
        content: '\A';
        white-space: pre;
    }
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0 0 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-cta {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.hero-email-form {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 500px;
    width: 100%;
    justify-content: center;
}

.hero-email-input {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 14px 20px;
    border: 1px solid var(--color-border-medium);
    border-radius: 50px 0 0 50px;
    background-color: var(--color-bg-white);
    color: var(--color-text-primary);
    flex: 1;
    min-width: 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.hero-email-input::placeholder {
    color: var(--color-text-placeholder);
}

.hero-email-input:focus {
    border-color: var(--color-primary);
}

.btn-get-started {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 0 50px 50px 0;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border: 1px solid var(--color-primary);
    border-left: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-get-started:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.hero-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.hero-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.hero-link-separator {
    color: var(--color-primary);
    font-size: 16px;
    margin: 0 4px;
}

.hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 40px;
    position: relative;
    padding-bottom: 60px;
}

.hero-main-image {
    width: 678px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
}

/* Hero Info Blocks */
.hero-info-block {
    position: absolute;
    background-color: var(--color-bg-white);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px var(--color-shadow-light);
    z-index: 10;
    font-family: 'Inter', sans-serif;
}

.hero-info-smart {
    bottom: 130px;
    left: 7%;
    width: 335px;
    height: 128px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px;
    overflow: hidden;
}

.hero-info-icon {
    width: 73px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.hero-info-smart .hero-info-icon {
    margin-bottom: 0;
}

.hero-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    text-align: left;
}

.hero-info-line1 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.3;
}

.hero-info-line2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.3;
}

.hero-info-patented {
    bottom: 50px;
    right: 8%;
    padding: 12px 18px;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.hero-info-patented-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-info-patented .hero-info-icon {
    width: 16px;
    height: 16px;
}

/* Hero Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-email-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 0;
        margin-top: 70px;
    }

    .hero-text-content {
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-title-break::before {
        content: '';
        display: none;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-email-form {
        flex-direction: column;
        gap: 12px;
    }

    .hero-email-input {
        border-radius: 50px;
        width: 100%;
    }

    .btn-get-started {
        border-radius: 50px;
        border-left: 1px solid var(--color-primary);
        width: 100%;
    }

    .hero-visual {
        margin-top: 30px;
        padding-bottom: 40px;
    }

    .hero-main-image {
        max-width: 100%;
    }

    .hero-info-smart {
        bottom: 60px;
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
        padding: 16px 20px;
    }

    .hero-info-line1 {
        font-size: 16px;
    }

    .hero-info-line2 {
        font-size: 14px;
    }

    .hero-info-patented {
        bottom: 20px;
        right: 10px;
        padding: 10px 14px;
    }

    .hero-info-patented-text {
        font-size: 11px;
    }

    .hero-info-patented .hero-info-icon {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0 0;
        margin-top: 0;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-title-break::before {
        content: '';
        display: none;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-email-input,
    .btn-get-started {
        padding: 12px 20px;
        font-size: 15px;
    }

    .hero-link {
        font-size: 14px;
    }

    .hero-link-separator {
        font-size: 14px;
    }

    .hero-visual {
        padding-bottom: 30px;
    }

    .hero-info-smart {
        bottom: 10px;
        left: -12px;
        right: 5px;
        max-width: calc(32% - 10px);
        padding: 14px 16px;
        height: 120px;
    }


    .hero-info-line1 {
        font-size: 15px;
    }

    .hero-info-line2 {
        font-size: 13px;
    }

    .hero-info-patented {
        bottom: 15px;
        right: 5px;
        padding: 8px 12px;
    }

    .hero-info-patented-text {
        font-size: 10px;
    }

    .hero-info-patented .hero-info-icon {
        width: 12px;
        height: 12px;
    }

    .car-brands-section span {
        color: var(--color-text-placeholder);
        font-size: 13px;
        margin: 30px 0 0 0;
        width: 100%;
        float: left;
        padding: 0 30px !important;
    }

}


/***CAR BRANDS SECTION***/
.car-brands-section {
    text-align: center;
    padding: 40px 0;
    overflow: hidden;
    background: #FBFAFE;
}

.car-brands-section p {
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 30px;
}

.car-brands-section span {
    color: var(--color-text-placeholder);
    font-size: 13px;
    margin: 30px 0 0 0;
    width: 100%;
    float: left;
    padding: 0 0;
}

.brands-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    /* Fade nas bordas */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.brands-carousel-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: scroll-brands 35s linear infinite;
}

.brands-carousel-track img {
    height: 40px;
    width: auto;
    max-width: 60px;
    /* evita logos muito largas quebrarem o ritmo */
    object-fit: contain;
    filter: grayscale(100%) opacity(0.45);
    transition: filter 0.3s ease;
    flex-shrink: 0;
}

.brands-carousel-track img:hover {
    filter: grayscale(0%) opacity(1);
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exatamente metade (o primeiro conjunto) */
        transform: translateX(-50%);
    }
}

/***DREAM SECTION***/
.dream-section {
    padding: 60px 0 80px;
    background: #FBFAFE;
}

.dream-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.dream-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #111;
    margin: 0 0 12px;
}

.dream-header p {
    font-size: 15px;
    color: #777;
    margin: 0;
}

/* ═══════════════════════════════════════════
   CAROUSEL WRAPPER
═══════════════════════════════════════════ */
.products-section {
    overflow: hidden;
    /* evita scroll horizontal na página */
    width: 100%;
}

.products-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    padding: 30px 0px;
}

.products-carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ═══════════════════════════════════════════
   CARDS — largura por breakpoint
═══════════════════════════════════════════ */

/* 1920px → 5 cards */
.product-card {
    flex-shrink: 0;
    width: calc((100%) / 5 - 14px);
    height: 380px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 1200px → 4 cards */
@media (max-width: 1200px) {
    .product-card {
        width: calc((100%) / 4 - 13px);
    }
}

/* 750px → 3 cards */
@media (max-width: 750px) {
    .products-carousel-wrapper {
        padding: 10px 20px 20px;
    }

    .product-card {
        width: calc((100%) / 3 - 11px);
        height: 340px;
    }

    .dream-section {
        padding: 60px 10px 80px;
        background: #FBFAFE;
    }

}

/* 480px → 2 cards */
@media (max-width: 480px) {
    .products-carousel-wrapper {
        padding: 10px 0;
    }

    .product-card {
        width: calc((100%) / 2 - 9px);
        height: 300px;
    }
}

/* ═══════════════════════════════════════════
   CARD — imagem e hover
═══════════════════════════════════════════ */
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* ═══════════════════════════════════════════
   BADGES — LIVE / COMING SOON
═══════════════════════════════════════════ */
.badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
}

.badge-live {
    background: #22c55e;
    color: #fff;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.badge-soon {
    background: rgba(80, 80, 80, 0.75);
    color: #fff;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* ═══════════════════════════════════════════
   OVERLAY — gradiente + título + botão
═══════════════════════════════════════════ */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 18px 20px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.4) 60%,
            transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-overlay h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

@media (max-width: 750px) {
    .card-overlay h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .card-overlay h3 {
        font-size: 16px;
    }

    .card-overlay {
        padding: 40px 14px 16px;
    }
}

/* ═══════════════════════════════════════════
   BOTÃO — Get Started / Learn More
═══════════════════════════════════════════ */
.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s ease, gap 0.2s ease;
}

.btn-card:hover {
    opacity: 1;
    gap: 10px;
}

.btn-card span {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.btn-card:hover span {
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .btn-card {
        font-size: 11px;
    }
}

/* ═══════════════════════════════════════════
   CONTROLES — dots + setas
═══════════════════════════════════════════ */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.carousel-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
    font-size: 20px;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: #f0f0f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

@media (max-width: 480px) {
    .carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 17px;
    }
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
    flex-shrink: 0;
}

.dot.active {
    width: 28px;
    background: #2d2460;
}


/* ═══════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════ */
.problem-section {
    background: #FBFAFE;
    padding: 80px 20px;
}

.problem-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

/* ── Header ── */
.problem-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.problem-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
}

.problem-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #2a2a2a;
    line-height: 1.15;
    margin: 0;
    text-align: center;
}

.problem-description {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    text-align: center;
    margin: 0;
    max-width: 680px;
}

/* ── Cards ── */
.problem-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.problem-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-card h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #2a2a2a;
    margin: 0;
    line-height: 1;
}

.problem-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ── Footer ── */
.problem-footer {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

/* ── Responsivo ── */
@media (max-width: 650px) {
    .problem-section {
        padding: 60px 16px;
    }

    .problem-cards {
        grid-template-columns: 1fr;
    }

    .problem-card {
        padding: 30px 24px;
    }
}


/* ═══════════════════════════════════════════
   FEATURES SECTION
═══════════════════════════════════════════ */
.features-section {
    background: #FBFAFE;
    padding: 80px 20px;
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* ── Header ── */
.features-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.features-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2a2a2a;
    line-height: 1.2;
    margin: 0;
}

.features-description {
    font-size: 16px;
    line-height: 1.75;
    color: #666;
    text-align: center;
    max-width: 540px;
    margin: 0;
}

/* ── Grid com colunas de larguras fixas ── */
.features-grid {
    display: grid;
    grid-template-columns: 322px 350px 304px;
    gap: 16px;
    justify-content: center;
}

/* ── Card base ── */
.feature-card {
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── Cores intercaladas ── */
.feature-card:nth-child(1) {
    background: #FFFFFF;
}

.feature-card:nth-child(2) {
    background: #F2F0FF;
}

.feature-card:nth-child(3) {
    background: #F3F2F6;
}

.feature-card:nth-child(4) {
    background: #EFEEF3;
}

.feature-card:nth-child(5) {
    background: #FFFFFF;
}

.feature-card:nth-child(6) {
    background: #F2F0FF;
}

/* ── Ícone ── */
.feature-icon {
    width: 58px;
    height: auto;
    object-fit: contain;
    margin-bottom: 4px;
}

/* ── Título ── */
.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

/* ── Subtítulo ── */
.feature-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #2a2a2a;
    letter-spacing: -0.8px;
    line-height: 140%;
    margin: 0;
}

/* ── Corpo do texto ── */
.feature-body {
    font-size: 13px;
    line-height: 1.75;
    color: #888;
    margin: 0;
}

/* ── Responsivo ── */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .features-section {
        padding: 60px 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 28px 22px;
    }
}


/* ═══════════════════════════════════════════
   COMPARISON SECTION
═══════════════════════════════════════════ */
.comparison-section {
    background: var(--color-bg-light);
    padding: 80px 20px;
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 52px;
}

/* ── Header ── */
.comparison-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.comparison-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin: 0;
    max-width: 780px;
}

.comparison-description {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 620px;
    margin: 0;
}

/* ═══════════════════════════════════════════
   TABLE WRAPPER
═══════════════════════════════════════════ */
.comparison-table-wrapper {
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

/* Larguras das colunas */
.col-feature {
    width: 22%;
}

.col-cash {
    width: 22%;
}

.col-bank {
    width: 26%;
}

.col-sc {
    width: 30%;
}

/* ═══════════════════════════════════════════
   THEAD — tr transparente, só col-sc destacada
═══════════════════════════════════════════ */
.comparison-table thead tr {
    background: transparent;
}

.comparison-table thead th {
    padding: 20px 20px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    text-align: center;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
}

.comparison-table thead th.col-feature {
    text-align: left;
    background: transparent;
}

/* Apenas a célula Savings.Club tem destaque */
.comparison-table thead th.col-sc {
    background: var(--color-primary);
    border-radius: 12px 12px 0 0;
    padding: 24px 20px;
    vertical-align: middle;
    color: var(--color-text-white);
    box-shadow: none;
}

.table-logo {
    width: 130px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════
   TBODY — linhas zebradas
═══════════════════════════════════════════ */
.comparison-table tbody tr:nth-child(odd) {
    background: #EFEEF3;
}

.comparison-table tbody tr:nth-child(even) {
    background: #ffffff;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--color-border-divider);
    transition: filter 0.15s ease;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    filter: brightness(0.97);
}

/* ── Células ── */
.comparison-table tbody td {
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-secondary);
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid var(--color-border-divider);
}

.comparison-table tbody td:last-child {
    border-right: none;
}

/* ── Feature label (1ª coluna) ── */
.feature-label {
    text-align: left !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--color-text-primary) !important;
    background: transparent !important;
}

/* ── Coluna Savings.Club — cor roxa, fundo sutil ── */
.comparison-table tbody td.sc-value {
    font-weight: 600;
    font-size: 14px !important;
    color: var(--color-primary) !important;
    border-left: 1px solid #e0dbff;
    border-right: none;
}

.comparison-table tbody tr:nth-child(odd) td.sc-value {
    background: #ebe7ff;
}

.comparison-table tbody tr:nth-child(even) td.sc-value {
    background: #f3f0ff;
}

/* ═══════════════════════════════════════════
   MOBILE — ocultar tabela, mostrar cards
═══════════════════════════════════════════ */
.comparison-mobile {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.mobile-row {
    background: var(--color-bg-white);
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 1px 6px var(--color-shadow-light);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-feature {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border-divider);
}

.mobile-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.mobile-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 8px;
    border-radius: 8px;
    background: var(--color-bg-light);
}

.mobile-col--sc {
    background: #f3f0ff;
}

.mobile-col-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-placeholder);
}

.mobile-col--sc .mobile-col-label {
    color: var(--color-primary);
}

.mobile-col-value {
    font-size: 12px;
    line-height: 1.4;
    color: var(--color-text-secondary);
}

.mobile-col--sc .mobile-col-value {
    color: var(--color-primary);
    font-weight: 600;
}

/* ═══════════════════════════════════════════
   BREAKPOINTS
═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 16px;
    }

    .comparison-table-wrapper {
        display: none;
    }

    .comparison-mobile {
        display: flex;
    }
}

@media (max-width: 420px) {
    .mobile-cols {
        grid-template-columns: 1fr;
    }

    .mobile-col--sc {
        border-top: 2px solid var(--color-primary);
    }
}



/* ═══════════════════════════════════════════
   INDUSTRY SECTION
═══════════════════════════════════════════ */
.industry-section {
    background: var(--color-bg-light);
    padding: 100px 20px;
}

.industry-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

/* ── Título ── */
.industry-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #2a2a2a;
    line-height: 1.2;
    margin: 0;
}

/* ── Parágrafos ── */
.industry-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.industry-body p {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin: 0;
}

.industry-body em {
    font-style: italic;
}

/* ── Link ── */
.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    transition: gap 0.2s ease, opacity 0.2s ease;
}

.industry-link:hover {
    gap: 10px;
    opacity: 0.8;
}

.industry-link span {
    font-size: 17px;
    transition: transform 0.2s ease;
}

.industry-link:hover span {
    transform: translateX(3px);
}

/* ── Responsivo ── */
@media (max-width: 600px) {
    .industry-section {
        padding: 70px 20px;
    }

    .industry-body p {
        font-size: 15px;
    }
}


/* ═══════════════════════════════════════════
   STATS + SECURITY SECTION
═══════════════════════════════════════════ */
.stats-security-section {
    background: #1A1A2E;
    padding: 100px 20px;
}

.stats-security-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* ═══════════════════════════════════════════
   STATS BLOCK
═══════════════════════════════════════════ */
.stats-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    text-align: center;
    padding: 60px 0;
}

.stats-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
    max-width: 700px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.stat-number {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    line-height: 1.5;
    color: #B6B6BC;
    text-align: left;
    max-width: 160px;
}

/* ── Divider ── */
.section-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

/* ═══════════════════════════════════════════
   SECURITY BLOCK
═══════════════════════════════════════════ */
.security-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 55px;
}

.security-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 620px;
}

.security-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #B6B6BC;
}

.security-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.security-description {
    font-size: 15px;
    line-height: 1.75;
    color: #B6B6BC;
    margin: 0;
}

/* ── Cards ── */
.security-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    position: relative;
}


.security-card {
    background: #2A2A3E;
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s ease;
}

.security-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.security-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
}

.security-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #B6B6BC;
    margin: 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

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

@media (max-width: 560px) {
    .stats-security-section {
        padding: 70px 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
    }

    .stat-item {
        align-items: center;
    }

    .stat-label {
        text-align: center;
    }

    .security-cards {
        grid-template-columns: 1fr;
    }

    .security-cards::before,
    .security-cards::after {
        display: none;
    }
}



/* ═══════════════════════════════════════════
   AI CARD
═══════════════════════════════════════════ */
.ai-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: linear-gradient(270deg, #2A2A3E 0%, #1A1A2E 100%);
    border-radius: 16px;
    padding: 32px 36px;
    width: 75%;
    margin: 0 auto;
    box-sizing: border-box;
}

.ai-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-card-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.ai-card-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ai-card-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #B6B6BC;
}

.ai-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
}

.ai-card-body {
    font-size: 14px;
    line-height: 1.75;
    color: #B6B6BC;
    margin: 0;
    margin-top: 6px;
}

/* ═══════════════════════════════════════════
   GUARANTEE BOX
═══════════════════════════════════════════ */
.guarantee-box {
    width: 60%;
    box-sizing: border-box;
    background: #362D70;
    border-radius: 10px;
    padding: 32px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
}

.guarantee-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.4;
}

.guarantee-body {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* ═══════════════════════════════════════════
   TRUST LINK
═══════════════════════════════════════════ */
.trust-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    align-self: center;
    transition: gap 0.2s ease, opacity 0.2s ease;
}

.trust-link:hover {
    gap: 10px;
    opacity: 0.75;
}

.trust-link span {
    font-size: 17px;
    transition: transform 0.2s ease;
}

.trust-link:hover span {
    transform: translateX(3px);
}

/* ═══════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════ */
@media (max-width: 600px) {
    .ai-card {
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
    }

    .guarantee-box {
        padding: 28px 20px;
    }

    .guarantee-title {
        font-size: 16px;
    }

    .ai-card {
        width: 85%;
    }

    .guarantee-box {
        width: 85%;
    }
}



/* ═══════════════════════════════════════════
   STORIES SECTION
═══════════════════════════════════════════ */
.stories-section {
    background: var(--color-bg-light);
    padding: 120px 20px;
}

.stories-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

/* ── Header ── */
.stories-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.stories-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
}

.stories-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #2a2a2a;
    margin: 0;
    line-height: 1.2;
}

.stories-description {
    font-size: 15px;
    line-height: 1.7;
    color: #777;
    margin: 0;
    max-width: 480px;
}

/* ── Carousel wrapper ── */
.stories-carousel {
    width: 100%;
    overflow: hidden;
}

.stories-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ── Card ── */
.story-card {
    flex-shrink: 0;
    width: 100%;
    background: #ECECEC;
    border-radius: 16px;
    padding: 36px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Badge row ── */
.story-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge-status {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.badge-voucher {
    background: var(--color-primary);
    color: #fff;
}

.badge-active {
    background: #e8e4ff;
    color: var(--color-primary);
}

.badge-location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #777;
}

.badge-location svg {
    color: #aaa;
}

/* ── Quote ── */
.story-quote {
    font-size: 17px;
    line-height: 1.7;
    color: #2a2a2a;
    margin: 0;
    font-style: normal;
}

/* ── Stats ── */
.story-stats {
    display: flex;
    gap: 40px;
}

.story-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-val {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.4;
}

/* ── Divider ── */
.story-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* ── Footer ── */
.story-footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.story-name {
    font-size: 14px;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0;
}

.story-bio {
    font-size: 13px;
    line-height: 1.65;
    color: #888;
    margin: 0;
}

/* ═══════════════════════════════════════════
   CONTROLES
═══════════════════════════════════════════ */
.stories-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stories-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
    font-size: 20px;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.stories-arrow:hover {
    background: #f0f0f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

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

.stories-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    flex-shrink: 0;
}

.stories-dots .dot.active {
    width: 28px;
    background: var(--color-primary);
}

.stories-counter {
    font-size: 13px;
    color: #aaa;
    margin: 0;
    letter-spacing: 0.05em;
}

/* ── Responsivo ── */
@media (max-width: 600px) {
    .story-card {
        padding: 24px 20px;
    }

    .story-quote {
        font-size: 15px;
    }

    .stat-val {
        font-size: 1.6rem;
    }
}



/* ═══════════════════════════════════════════
   DARE SECTION
═══════════════════════════════════════════ */
.dare-section {
    background: #1A1A2E;
    padding: 100px 20px;
}

.dare-container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.dare-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.dare-description {
    font-size: 16px;
    line-height: 1.75;
    color: #B6B6BC;
    margin: 0;
    max-width: 610px;
}

.dare-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 16px 36px;
    background: #FFFFFF;
    color: #1A1A2E;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.dare-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.dare-disclaimer {
    font-size: 12px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    max-width: 600px;
}

/* ── Responsivo ── */
@media (max-width: 480px) {
    .dare-section {
        padding: 70px 20px;
    }

    .dare-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}



/* ═══════════════════════════════════════════
   STEPS SECTION
═══════════════════════════════════════════ */
.steps-section {
    background: #fff;
    padding: 130px 20px;
}

.steps-container {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

/* ── Header ── */
.steps-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.steps-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #2a2a2a;
    line-height: 1.2;
    margin: 0;
}

.steps-description {
    font-size: 15px;
    color: #888;
    margin: 0;
    line-height: 1.6;
}

/* ── Lista de steps ── */
.steps-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 32px 0;
    position: relative;
}

/* Linha vertical conectando os steps */
.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 16px;
    top: 62px;
    bottom: -40px;
    width: 10px;
    background: #F3F0FF;
}

/* ── Número ── */
.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #F3F0FF;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
    margin-left: -3px;
}

/* ── Conteúdo ── */
.step-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
}

.step-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.3;
}

.step-content p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

/* ── Link ── */
.steps-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    transition: gap 0.2s ease, opacity 0.2s ease;
}

.steps-link:hover {
    gap: 10px;
    opacity: 0.75;
}

.steps-link span {
    font-size: 17px;
    transition: transform 0.2s ease;
}

.steps-link:hover span {
    transform: translateX(3px);
}

/* ── Responsivo ── */
@media (max-width: 480px) {
    .steps-section {
        padding: 70px 16px;
    }

    .step-item {
        gap: 18px;
    }

    .step-content p {
        font-size: 14px;
    }
}




/* ═══════════════════════════════════════════
   CALCULATOR SECTION
═══════════════════════════════════════════ */
.calculator-section {
    background: #F7F6FF;
    background: linear-gradient(180deg, rgba(247, 246, 255, 1) 0%, rgba(251, 250, 254, 1) 100%);
    padding: 100px 20px;
}

.calculator-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* ── Header ── */
.calc-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 670px;
}

.calc-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-placeholder);
}

.calc-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.2;
}

.calc-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ── Wrapper ── */
.calc-wrapper {
    width: 100%;
    position: relative;
}

/* ── Body ── */
.calc-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
    transition: filter 0.5s ease;
}

.calc-body.unlocked {
    filter: none;
    pointer-events: auto;
    user-select: auto;
}

.calc-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    text-align: center;
    margin: 0;
    max-width: 680px;
    align-self: center;
}

/* ── Tabs ── */
.calc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.calc-tab {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--color-border-medium);
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-bg-hero-end);
}

.calc-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-white);
}

/* ── Slider card ── */
.calc-slider-card {
    background: var(--color-bg-white);
    border-radius: 12px;
    padding: 28px 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 2px 12px var(--color-shadow-light);
}

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

.slider-label {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.slider-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-primary);
}

/* Slider */
.price-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    outline: none;
    cursor: pointer;
    background: linear-gradient(to right,
            #362D70 0%,
            #362D70 var(--progress, 20%),
            var(--color-border-medium) var(--progress, 20%),
            var(--color-border-medium) 100%);
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #362D70;
    border: 2px solid var(--color-bg-white);
    box-shadow: 0 1px 6px var(--color-shadow-light);
    cursor: pointer;
}

.price-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #362D70;
    border: 2px solid var(--color-bg-white);
    cursor: pointer;
}

.slider-range {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--color-text-placeholder);
}

/* ── Cards comparação ── */
.calc-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.calc-card {
    background: var(--color-bg-white);
    border-radius: 12px;
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 2px 12px var(--color-shadow-light);
}

.card-header-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.card-header-label strong {
    font-size: 15px;
    color: var(--color-text-primary);
}

.dot-red {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e55;
    flex-shrink: 0;
}

.dot-dark {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-text-primary);
    flex-shrink: 0;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.calc-row span:last-child {
    font-weight: 500;
    color: var(--color-text-primary);
}

.value-red {
    color: #e55 !important;
}

.calc-divider {
    height: 1px;
    background: var(--color-border-divider);
    margin: 4px 0;
}

.calc-total span:last-child {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text-primary) !important;
}

/* ── Savings box ── */
.calc-savings-box {
    background: var(--color-bg-hero-end);
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--color-border-light);
}

.savings-label {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
}

.savings-amount {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-text-placeholder);
    margin: 0;
    line-height: 1;
}

.savings-percent {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin: 0;
}

.savings-details {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-top: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.savings-pipe {
    color: var(--color-border-medium);
}

/* ── Disclaimer ── */
.calc-disclaimer {
    font-size: 12px;
    line-height: 1.65;
    color: var(--color-text-placeholder);
    text-align: center;
    margin: 0;
}

/* ═══════════════════════════════════════════
   GATE OVERLAY
═══════════════════════════════════════════ */
.calc-gate {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    max-width: 340px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.calc-gate.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-10px);
}

.gate-card {
    background: var(--color-bg-white);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 8px 40px var(--color-overlay);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    border: 1px solid var(--color-border-light);
}

.gate-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-bg-hero-end);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.gate-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
}

.gate-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.gate-card input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    border: 1.5px solid var(--color-border-light);
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-text-primary);
    outline: none;
    transition: border-color 0.2s;
    background: var(--color-bg-white);
}

.gate-card input:focus {
    border-color: var(--color-primary);
}

.gate-card input::placeholder {
    color: var(--color-text-placeholder);
}

.gate-card button {
    width: 100%;
    padding: 14px;
    background: var(--color-primary);
    color: var(--color-text-white);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.gate-card button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

.gate-privacy {
    font-size: 11px;
    color: var(--color-text-placeholder);
    line-height: 1.5;
}

/* ── Lock hint ── */
.calc-lock-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-text-placeholder);
    margin-top: 16px;
    transition: opacity 0.4s ease;
}

.calc-lock-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ═══════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════ */
@media (max-width: 640px) {
    .calculator-section {
        padding: 70px 16px;
    }

    .calc-cards {
        grid-template-columns: 1fr;
    }

    .calc-tabs {
        gap: 6px;
    }

    .calc-tab {
        font-size: 12px;
        padding: 6px 12px;
    }

    .calc-gate {
        top: 60px;
        max-width: calc(100% - 32px);
    }
}



/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.faq-section {
    background: #FBFAFE;
    padding: 100px 20px 140px 20px;
}

.faq-container {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* ── Header ── */
.faq-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.faq-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.2;
}

.faq-description {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ── Lista ── */
.faq-list {
    display: flex;
    flex-direction: column;
}

/* ── Item ── */
.faq-item {
    border-bottom: 1px solid var(--color-border-light);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border-light);
}

/* ── Pergunta (botão) ── */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

/* Ícone + / × */
.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border-medium);
    position: relative;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-text-secondary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s ease;
}

/* linha horizontal */
.faq-icon::before {
    width: 8px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* linha vertical */
.faq-icon::after {
    width: 1.5px;
    height: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Estado ativo: × */
.faq-item.active .faq-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: var(--color-text-white);
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* ── Resposta ── */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer>p {
    overflow: hidden;
    font-size: 14px;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin: 0;
    padding-bottom: 5px;
}

/* ── Responsivo ── */
@media (max-width: 480px) {
    .faq-section {
        padding: 70px 16px;
    }

    .faq-question {
        font-size: 14px;
        padding: 18px 0;
    }
}



/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
    background: #141428;
    background: linear-gradient(180deg, rgba(20, 20, 40, 1) 0%, rgba(24, 24, 44, 1) 100%);
    padding: 120px 20px;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    text-align: center;
}

/* ── Header ── */
.cta-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.cta-description {
    font-size: 15px;
    line-height: 1.75;
    color: #B6B6BC;
    margin: 0;
    max-width: 540px;
}

/* ── Cards ── */
.cta-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}

.cta-card {
    background: #2A2A3E;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    text-align: left;
    transition: border-color 0.2s ease;
}

.cta-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.cta-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
}

.cta-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #B6B6BC;
    margin: 0;
}

/* ── Link ── */
.cta-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.85;
    transition: gap 0.2s ease, opacity 0.2s ease;
}

.cta-card-link:hover {
    gap: 10px;
    opacity: 1;
}

.cta-card-link span {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.cta-card-link:hover span {
    transform: translateX(3px);
}

/* ── Footnote ── */
.cta-footnote {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    line-height: 1.6;
}

/* ── Responsivo ── */
@media (max-width: 560px) {
    .cta-section {
        padding: 70px 16px;
    }

    .cta-cards {
        grid-template-columns: 1fr;
    }
}




/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
    background: #1A1A2E;
    color: #B6B6BC;
    font-size: 13px;
    line-height: 1.6;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Main ── */
.footer-main {
    padding: 64px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-main .footer-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: start;
}

/* ── Brand ── */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.footer-logo span {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    vertical-align: middle;
    margin: 0 -1px;
    position: relative;
    top: -1px;
}

.footer-tagline {
    font-size: 13px;
    color: #B6B6BC;
    line-height: 1.6;
    margin: 0;
    max-width: 220px;
}

/* Social */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 4px;
}

.footer-social a {
    color: #B6B6BC;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

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

/* App buttons */
.footer-apps {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ── Nav grid ── */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 14px;
}

.footer-col-gap {
    margin-top: 28px !important;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col ul li a {
    color: #B6B6BC;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

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

/* ── Trust badges ── */
.footer-trust {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
}

.footer-trust-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 32px;
    align-items: center;
    justify-content: center;
}

.footer-trust-inner span {
    font-size: 12px;
    color: #B6B6BC;
    white-space: nowrap;
}

/* ── Disclaimer ── */
.footer-disclaimer {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-disclaimer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 8px;
    line-height: 1.65;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

/* ── Legal block ── */
.footer-legal-block {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.015);
}

.footer-legal-block h5 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 12px;
}

.footer-legal-block p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0 8px;
    line-height: 1.7;
    max-width: 100%;
}

.footer-legal-block p:last-child {
    margin-bottom: 0;
}

/* ── Footnotes ── */
.footer-footnotes {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-footnotes h5 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 16px;
}

.footer-footnotes ol {
    padding-left: 20px;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
}

.footer-footnotes ol li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.7;
}

.footer-footnotes ol li strong {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 3px;
}

.footer-footnotes p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0 8px;
    line-height: 1.65;
    max-width: 900px;
}

.footer-footnotes a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.footer-footnotes a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.footer-updated {
    margin-top: 16px !important;
    font-style: italic;
}

.footer-footnotes-closing {
    margin-top: 16px !important;
}

/* ── Bottom bar ── */
.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

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

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

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ═══════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .footer-main .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 560px) {
    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-trust-inner {
        gap: 8px 16px;
        justify-content: flex-start;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}