/* Variáveis de Cores e Estilos */
:root {
    --bg-main: #F4F4F6;
    --bg-white: #FFFFFF;
    --bg-dark: #0A0A0F;
    --primary: #00C853;
    --primary-dark: #00A042;
    --text-main: #0A0A0F;
    --text-secondary: #6B7280;
    --text-light: #F4F4F6;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: -1.5px;
}
h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Botões */
.btn-solid, .btn-outline, .btn-solid-dark {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-solid {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}
.btn-solid:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-solid-dark {
    background: var(--bg-dark);
    color: white;
    border: 2px solid var(--bg-dark);
}
.btn-solid-dark:hover {
    background: #1f1f2e;
    border-color: #1f1f2e;
}

.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    max-width: 100%;
}
/* Navbar Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.nav-logo img {
    height: 48px; /* standard desktop height for horizontal logo */
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.nav-logo:hover img {
    transform: scale(1.03); /* subtle premium scale hover effect */
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    text-decoration: none;
    color: #0A0A0F;
    font-size: 15px;
    font-weight: 400; /* Regular */
    transition: color 0.2s ease;
}
.nav-links a:hover {
    color: #00C853;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-btn-login {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #1D1D1F;
    border-radius: 50px; /* Pill */
    padding: 10px 22px;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
}
.nav-btn-login:hover {
    background-color: #2C2C2E;
}
.nav-btn-signup {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600; /* Semibold */
    color: #FFFFFF;
    background-color: #0A0A0F;
    border-radius: 50px; /* Pill */
    padding: 10px 22px;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.nav-btn-signup:hover {
    background-color: #1C1C1E;
}

/* Layout Spacing */
section {
    padding: 100px 0;
}

/* Hero Section (Estilo Apple - Ultra Clean e Premium) */
.hero {
    background: #F5F5F7; /* Exatamente o cinza que a Apple usa nas páginas de produto */
    padding-top: 160px; /* Offset para a navbar */
    padding-bottom: 100px;
}
.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.hero-content {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.hero h1 {
    font-size: 64px; /* Aumentado para 64px (estilo estatísticas do urgency) */
    font-weight: 800; /* Extra Bold */
    line-height: 1.1;
    color: #0A0A0F;
    max-width: 750px;
    margin-bottom: 24px;
    letter-spacing: -2px;
    font-family: 'Inter', sans-serif;
}
.hero .subtitle {
    font-size: 17px; /* 17px regular */
    color: #6B7280; /* Cor #6B7280 */
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
}
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 24px; /* Mais espaço entre os elementos */
    margin-bottom: 28px;
}

/* Botão Primário: Apple Pill Button */
.btn-apple-solid {
    background: #0A0A0F;
    color: #ffffff;
    border-radius: 50px; /* border-radius 50px */
    padding: 14px 28px; /* padding 14px 28px */
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}
.btn-apple-solid:hover {
    background: #2C2C2E;
}

/* Botão Secundário: Apple Link */
.btn-apple-link {
    background: transparent;
    color: #00C853; /* texto verde #00C853 apenas, sem borda */
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}
.btn-apple-link:hover {
    text-decoration: underline; /* underline sutil no hover */
    color: #00C853;
}

/* Badge Apple */
.hero-badges {
    color: #6B7280; /* texto #6B7280 13px */
    font-size: 13px; /* 13px */
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.hero-mockup {
    flex: 0.7;
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: phoneEntrance 0.8s ease-out 0.5s both;
}
.mockup-phone {
    background: #1C1C1E; /* Titânio escuro Apple */
    width: 320px;
    height: 640px;
    border-radius: 54px; /* 44px interior + 10px padding */
    padding: 10px; /* Borda do celular */
    box-shadow: 0 40px 80px rgba(0,0,0,0.15); /* Sombra pesada */
    border: none;
    display: flex;
    overflow: hidden;
    animation: phoneFloat 3s ease-in-out 1.3s infinite;
}
.mockup-screen {
    width: 100%;
    height: 100%;
    border-radius: 44px;
    position: relative;
    /* Apple fade out on loop end */
    animation: iosFadeRestart 7s infinite;
}

/* --- TELA MOCKUP: iPhone 15 Pro --- */
.ios-mockup-container {
    width: 100%;
    height: 100%;
    position: relative;
    perspective: 1500px; /* 3D effect for flip */
}

.ios-mockup-flipper {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: iosFlip 7s infinite cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ios-face {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background: #FFFFFF;
    border-radius: 44px; /* inner screen radius */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.ios-face-front {
    transform: translateZ(1px);
    -webkit-transform: translateZ(1px);
}

.ios-face-back {
    transform: rotateY(180deg) translateZ(1px);
    -webkit-transform: rotateY(180deg) translateZ(1px);
}

/* Dynamic Island */
.ios-dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 36px;
    background: #000000;
    border-radius: 18px;
    z-index: 100;
}

/* Status Bar */
.ios-status-bar {
    width: 100%;
    height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px 0 32px;
    z-index: 90;
    background: #FFFFFF;
}
.ios-status-time {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #000;
    margin-top: 12px;
}
.ios-status-icons {
    margin-top: 12px;
}

/* Barra de Verificação (Phase 2) */
.ios-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: #00C853;
    z-index: 110;
    animation: iosProgress 7s infinite linear;
}

/* Notificação Flutuante (Phases 2 & 3) */
.ios-notification {
    position: absolute;
    top: 56px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 120;
    animation: iosNotifSlide 7s infinite cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ios-notification::before {
    /* Red alert left border for phase 3 */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: #DC2626;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    opacity: 0;
    animation: iosNotifBorder 7s infinite;
}

.ios-notif-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #00C853;
    animation: iosNotifColor 7s infinite;
}

.ios-notif-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ios-notif-text {
    display: flex;
    flex-direction: column;
}

.ios-notif-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    animation: iosNotifTitleColor 7s infinite;
}

.ios-notif-msg {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #6B7280;
}
.ios-notif-msg::after {
    content: "Verificando pagamento...";
    animation: iosNotifMsgText 7s infinite;
}

/* App Mensagens (Phase 1) */
.ios-messages-app {
    flex: 1;
    background: #F5F5F7;
    display: flex;
    flex-direction: column;
}

.ios-msg-header {
    background: #FFFFFF;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
    border-bottom: 1px solid #E5E5E5;
}

.ios-msg-back {
    cursor: pointer;
    display: flex;
    align-items: center;
}
.ios-msg-avatar {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ios-msg-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}
.ios-msg-user {
    display: flex;
    flex-direction: column;
}
.ios-msg-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #000;
}
.ios-msg-status {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #00C853;
}

.ios-msg-body {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ios-bubble {
    background: #E8E8ED;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #000;
    align-self: flex-start;
    max-width: 85%;
    line-height: 1.4;
}

.ios-receipt-container {
    padding: 8px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.ios-receipt-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 12px;
    width: 220px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ios-receipt-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 8px;
}

.ios-receipt-amount {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #000;
    margin-bottom: 12px;
}

.ios-receipt-details div {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #6B7280;
    margin-top: 4px;
}

.ios-receipt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 38, 38, 0.2);
    z-index: 10;
    border-radius: 14px;
    opacity: 0;
    animation: iosReceiptRed 7s infinite;
}

.ios-receipt-x {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    z-index: 11;
    opacity: 0;
    animation: iosReceiptX 7s infinite cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ios-receipt-x svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Face Traseira: Confirmação (Phase 4) */
.ios-success-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 24px 24px;
}

.ios-success-logo {
    height: 24px;
    width: auto;
    margin-bottom: 24px;
}

.ios-success-circle {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    transform: scale(0);
    animation: iosSuccessPop 7s infinite;
}

.ios-success-circle svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ios-success-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #0A0A0F;
    margin-top: 16px;
}

.ios-success-amount {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 38px;
    color: #0A0A0F;
    margin-top: 8px;
    margin-bottom: 24px;
}

.ios-success-divider {
    width: 100%;
    height: 1px;
    background: #E5E5E5;
    margin-bottom: 24px;
}

.ios-success-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ios-success-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.ios-row-label {
    color: #6B7280;
}

.ios-row-value {
    color: #000;
    font-weight: 600;
}

.ios-green-bold {
    color: #00C853;
}

.ios-success-footer {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #6B7280;
    text-align: center;
    margin-top: auto;
    margin-bottom: 24px;
}

/* --- KEYFRAMES ORIGINAIS DA HERO SECTION --- */

/* Entrada do Celular */
@keyframes phoneEntrance {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Flutuação do Celular */
@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* --- KEYFRAMES IOS --- */

/* Phase 2: Progress bar (0-100% in 1s starting at 2s) */
/* 2s/7s = 28%, 3s/7s = 42% */
@keyframes iosProgress {
    0%, 28% { width: 0%; opacity: 1; }
    42% { width: 100%; opacity: 1; }
    43%, 100% { width: 100%; opacity: 0; }
}

/* Phase 2/3: Notification Slide (Starts at 2s, changes at 3s, hides at 4.5s) */
/* 4.5s/7s = 64% */
@keyframes iosNotifSlide {
    0%, 28% { transform: translateY(-120%); opacity: 0; }
    32%, 60% { transform: translateY(0); opacity: 1; }
    64%, 100% { transform: translateY(-120%); opacity: 0; }
}

@keyframes iosNotifColor {
    0%, 42% { color: #00C853; }
    43%, 100% { color: #DC2626; }
}

@keyframes iosNotifTitleColor {
    0%, 42% { color: #000; }
    43%, 100% { color: #DC2626; }
}

@keyframes iosNotifMsgText {
    0%, 42% { content: "Verificando pagamento..."; }
    43%, 100% { content: "Comprovante falso detectado"; }
}

@keyframes iosNotifBorder {
    0%, 42% { opacity: 0; }
    43%, 100% { opacity: 1; }
}

/* Phase 3: Receipt Overlay & X (Starts at 3s) */
@keyframes iosReceiptRed {
    0%, 42% { opacity: 0; }
    43%, 64% { opacity: 1; }
    65%, 100% { opacity: 0; }
}

@keyframes iosReceiptX {
    0%, 42% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    45%, 64% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    65%, 100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

/* Phase 4: Flip (Starts at 4.5s) */
@keyframes iosFlip {
    0%, 64% { transform: rotateY(0deg); }
    68%, 95% { transform: rotateY(180deg); }
    100% { transform: rotateY(0deg); }
}

/* Phase 4: Success Circle Pop */
@keyframes iosSuccessPop {
    0%, 68% { transform: scale(0); }
    72% { transform: scale(1.1); }
    76%, 95% { transform: scale(1); }
    100% { transform: scale(0); }
}

/* Fade Out Restart */
@keyframes iosFadeRestart {
    0%, 95% { opacity: 1; }
    98%, 100% { opacity: 0; }
}

.urgency {
    background: #0A0A0F; /* Fundo escuro Apple */
    padding: 80px 0; /* Espaçamento generoso de 80px */
    text-align: center;
    color: #ffffff;
    border: none;
    font-family: 'Inter', sans-serif;
}
.urgency h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800; /* Extra Bold */
    letter-spacing: -1.2px;
    margin-bottom: 56px;
    font-family: 'Inter', sans-serif;
}
.badge-text {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}
.urgency-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 56px;
}
.urgency-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.stat-number {
    font-size: 64px; /* 64px bold */
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.5px;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}
.stat-label {
    font-size: 14px; /* 14px cinza */
    color: #6B7280; /* cinza #6B7280 */
    font-weight: 500;
    line-height: 1.4;
    max-width: 240px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}
.urgency-divider {
    width: 1px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.1); /* divisórias verticais 10% opacidade */
}
.urgency-footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1); /* divisória horizontal sutil */
    margin: 48px 0;
    width: 100%;
}
.urgency-footer-text {
    font-size: 16px; /* 16px */
    color: rgba(255, 255, 255, 0.6); /* branco 60% opacidade */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Como Funciona (Estilo Apple - Minimalista e Premium) */
.how-it-works {
    background: #FFFFFF; /* Fundo branco */
    padding: 120px 0; /* Padding vertical 120px */
    text-align: center;
    border: none;
    font-family: 'Inter', sans-serif;
}
.how-it-works h2 {
    font-size: 42px; /* Inter Bold 42px */
    font-weight: 800; /* Extra Bold */
    color: #0A0A0F; /* Cor #0A0A0F */
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1.2px;
}
.section-subtitle {
    font-size: 16px; /* 16px */
    color: #6B7280; /* Cor #6B7280 */
    margin-bottom: 64px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}
.steps-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 900px;
    margin: 0 auto 64px;
    gap: 40px;
}
.steps-timeline::before {
    content: '';
    position: absolute;
    top: 32px; /* Alinhado ao meio do número de 64px de altura */
    left: 8%;
    right: 8%;
    height: 1px;
    background-color: rgba(0, 200, 83, 0.3); /* Linha fina #00C853 com 30% opacidade */
    z-index: 1;
}
.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}
.step-number-container {
    background-color: #FFFFFF; /* Fundo branco do container do número para ocultar a linha */
    padding: 0 16px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    line-height: 1;
}
.step-num {
    font-size: 64px; /* 64px bold */
    font-weight: 800;
    color: #00C853; /* Cor #00C853 */
    line-height: 1;
    letter-spacing: -2px;
    font-family: 'Inter', sans-serif;
}
.step-title {
    font-size: 18px; /* 18px bold */
    font-weight: 700;
    color: #0A0A0F; /* Cor #0A0A0F */
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}
.step-desc {
    font-size: 14px; /* 14px regular */
    color: #6B7280; /* Cor #6B7280 */
    line-height: 1.5;
    max-width: 280px; /* Aumentado ligeiramente para melhor legibilidade */
    margin: 0 auto;
    width: 100%;
    font-family: 'Inter', sans-serif;
}
.steps-footer-note {
    display: inline-block;
    background-color: #F4F4F6; /* Fundo #F4F4F6 arredondado */
    padding: 16px 32px; /* padding 16px 32px */
    border-radius: 30px; /* arredondado */
    margin: 0 auto;
}
.steps-footer-note span {
    font-size: 14px; /* 14px */
    color: #6B7280; /* Cor #6B7280 */
    font-weight: 500;
    letter-spacing: -0.2px;
    font-family: 'Inter', sans-serif;
}

/* Vantagens (Estilo Apple - Ultra Clean & Premium) */
.benefits {
    background: #F5F5F7;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}
.benefits-title {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 800; /* Extra Bold */
    color: #0A0A0F;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -1.2px;
}
.benefits-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6B7280;
    text-align: center;
    margin-bottom: 60px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.benefit-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #E5E5E5;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease;
}
.benefit-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.benefit-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: #00C853;
}
.benefit-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #0A0A0F;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    text-align: left;
}
.benefit-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.6;
    text-align: left;
}

/* Bancos */
.banks {
    background: var(--bg-white);
    text-align: center;
    padding: 100px 0;
}
.bank-logos-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 20px;
}
.bank-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.bank-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}
.bank-logo-item img {
    height: 72px;
    width: auto;
    max-width: 200px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: opacity 0.25s ease, filter 0.25s ease;
}
.bank-logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.bank-logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #9CA3AF;
    letter-spacing: -0.5px;
    opacity: 0.6;
    transition: opacity 0.25s ease, color 0.25s ease;
    cursor: default;
}
.bank-logo-text:hover {
    opacity: 1;
    color: #6B7280;
}
.banks-more {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #9CA3AF;
    margin-bottom: 32px;
    letter-spacing: 0.2px;
}
.banks-sub {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}


/* Segmentos (Estilo Apple - Ultra Clean & Premium) */
.segments {
    background: #FFFFFF; /* Fundo branco */
    padding: 100px 0; /* Padding vertical 100px */
    text-align: center;
    font-family: 'Inter', sans-serif;
}
.segments-title {
    font-family: 'Inter', sans-serif;
    font-size: 38px; /* Inter Semibold 38px */
    font-weight: 600; /* Semibold */
    color: #0A0A0F;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.segments-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6B7280;
    text-align: center;
    margin-bottom: 56px; /* Espaçamento abaixo do subtítulo: 56px */
}
.segments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 itens por linha */
    column-gap: 48px; /* Espaçamento entre itens: 48px horizontal */
    row-gap: 40px; /* 40px vertical */
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.segment-item-clean {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px; /* Espaço entre o ícone e a label */
}
.segment-icon-clean {
    width: 32px; /* Tamanho 32px */
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A0A0F; /* Cor #0A0A0F — preto */
}
.segment-icon-clean svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5; /* Stroke fino, não preenchido */
}
.segment-label-clean {
    font-family: 'Inter', sans-serif;
    font-size: 14px; /* Inter Regular 14px */
    font-weight: 400; /* Regular */
    color: #6B7280; /* cor #6B7280 */
    line-height: 1.4;
}
.segment-mais {
    font-style: italic;
    font-size: 13px;
    color: #9CA3AF;
}
.segments-footer-clean {
    margin-top: 56px;
    padding: 0 20px;
}
.segments-divider-clean {
    border: none;
    height: 1px;
    background-color: #E5E5E5; /* Linha divisória horizontal #E5E5E5 */
    margin: 0 auto 24px;
    max-width: 1000px;
    width: 100%;
}
.segments-note-clean {
    font-family: 'Inter', sans-serif;
    font-size: 15px; /* 15px */
    color: #6B7280; /* cor #6B7280 */
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
}

/* Depoimentos (Apple Style) */
.testimonials-apple {
    background-color: #F5F5F7;
    padding: 100px 0;
    overflow: hidden; /* Prevent horizontal scrollbar on body */
    font-family: 'Inter', sans-serif;
}

.testi-title {
    font-size: 38px;
    font-weight: 600; /* Semibold */
    color: #0A0A0F;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.testi-subtitle {
    font-size: 16px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 56px;
    font-weight: 400;
}

.testi-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Fade gradients for smooth entry/exit */
.testi-carousel-wrapper::before,
.testi-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.testi-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #F5F5F7, transparent);
}
.testi-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #F5F5F7, transparent);
}

.testi-carousel {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 20px 0; /* space for box-shadow */
}

.testi-track {
    display: flex;
    gap: 24px;
    animation: scrollTesti 35s linear infinite;
}

.testi-carousel:hover .testi-track {
    animation-play-state: paused;
}

@keyframes scrollTesti {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% - 24px)); }
}

.testi-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E5E5E5;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px;
    width: 340px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testi-stars svg {
    width: 18px;
    height: 18px;
}

.testi-stars svg polygon {
    fill: #00C853;
    stroke: #00C853;
}

.testi-text {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
    font-weight: 400;
    font-style: normal;
}

.testi-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background-color: #00C853;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

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

.testi-name {
    font-size: 15px;
    font-weight: 600;
    color: #0A0A0F;
}

.testi-role {
    font-size: 13px;
    color: #6B7280;
    font-weight: 400;
}




/* FAQ */
.faq {
    background: var(--bg-white);
}
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    border-bottom: 1px solid #E5E7EB;
}
.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.accordion-content p {
    padding-bottom: 24px;
    color: var(--text-secondary);
}

/* CTA Final */
.cta-final {
    background: var(--primary);
    text-align: center;
    color: var(--bg-dark);
}
.cta-final h2 {
    color: var(--bg-dark);
    margin-bottom: 16px;
}
.cta-final p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 500;
}
.cta-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 40px 0 30px;
    color: #86868b;
}
.footer .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}
/* Footer Logo */
.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}
.footer-logo img {
    height: 24px;
    width: auto;
    /* Invert colors to make the dark logo white on the dark footer background,
       then rotate hue 180deg so the inverted green (magenta) becomes green again! */
    filter: invert(1) hue-rotate(180deg) brightness(2);
    transition: transform 0.2s ease;
}
.footer-logo:hover img {
    transform: scale(1.03);
}
.footer-links {
    display: flex;
    gap: 32px;
}
.footer-links a {
    color: #86868b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #ffffff;
}
.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.footer-support-text {
    color: #86868b;
    font-size: 0.95rem;
    margin-bottom: 16px;
    margin-top: 0;
}
.social-icons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}
.social-link {
    color: #86868b;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-link:hover {
    color: #ffffff;
}
.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 0 auto;
    max-width: 100%;
}
.copyright {
    text-align: center;
    padding-top: 24px;
    font-size: 0.85rem;
    color: #86868b;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        align-items: center;
        text-align: center;
    }
    .hero-buttons, .hero-badges {
        justify-content: center;
    }
    .steps-timeline::before {
        display: none;
    }
    .steps-timeline {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }
    .step-desc {
        white-space: normal;
        overflow: visible;
        max-width: 280px;
    }
    .segments-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 24px;
        row-gap: 32px;
    }

}

@media (max-width: 768px) {
    .nav-logo img {
        height: 38px; /* slightly smaller on mobile */
    }
    .nav-container {
        padding: 10px 16px;
    }
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .urgency-row {
        flex-direction: column;
        gap: 48px;
    }
    .urgency-divider {
        display: none;
    }
    .stat-number {
        font-size: 48px;
    }
    .steps-footer-note {
        padding: 16px 20px;
        border-radius: 16px;
        max-width: 90%;
    }
    .steps-footer-note span {
        font-size: 13px;
        line-height: 1.5;
        display: block;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer .footer-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }
    .footer-left, .footer-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    .social-icons {
        justify-content: center;
    }
}
