@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-body: #FFFFFF;
    --bg-card: #FFFFFF;
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --accent-blue: #0071E3;
    --accent-blue-hover: #0077ED;
    --accent-dark: #000000;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px; /* Mais arredondado */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --gradient-hero: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --gradient-text: linear-gradient(90deg, #1D1D1F 0%, #434344 100%);
    --gradient-blue: linear-gradient(135deg, #0071E3 0%, #00C6FB 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: var(--accent-blue);
    transition: all 0.2s ease;
}

a:hover {
    color: var(--accent-blue-hover);
}

/* --- Text Effects --- */
.text-display {
    font-size: 68px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.hero-line-1 {
    color: #6e6e73; /* Apple Secondary Label */
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.hero-line-2 {
    color: #1d1d1f; /* Apple Primary Label */
    font-weight: 700;
    display: block;
}

@media (max-width: 768px) {
    .text-display {
        font-size: 42px;
    }
}


.text-display.text-white, .text-display-light {
    background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;  
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: white;
}

.text-title {
    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.text-subtitle {
    font-size: 24px;
    line-height: 1.4;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.text-body {
    font-size: 19px; /* Leitura melhor */
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .text-display { font-size: 48px; }
    .text-title { font-size: 36px; }
    .text-subtitle { font-size: 21px; }
    .text-body { font-size: 17px; }
}

/* --- Button Styles --- */
.btn-simples {
    background: none;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-simples:hover {
    background: var(--accent-blue);
    color: white;
}

.btn-primary-apple {
    background: var(--accent-dark); /* Botão preto estilo Apple */
    color: white;
    font-size: 17px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 980px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-primary-apple:hover {
    background: #333;
    transform: scale(1.03);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.btn-secondary-apple {
    background-color: transparent;
    color: var(--accent-blue);
    font-size: 17px;
    font-weight: 500;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-secondary-apple:hover {
    color: var(--accent-blue-hover);
    transform: translateX(4px); /* Seta move */
}

.btn-nav-apple {
    background-color: #f5f5f7;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 980px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-nav-apple:hover {
    background-color: #e5e5e7;
    color: var(--text-primary);
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-link-apple {
    background: none;
    border: none;
    padding: 0;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-link-apple:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

.bg-blue-apple {
    background-color: rgba(0, 113, 227, 0.1);
    color: #1d1d1f;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 500;
}

/* --- Inputs --- */
.input-apple {
    width: 100%;
    padding: 20px 24px;
    font-size: 19px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.input-apple:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15), 0 10px 20px rgba(0,0,0,0.05);
    background-color: #fff;
    transform: translateY(-2px);
}

/* --- Checkbox & Radio --- */
.form-check-input-apple {
    width: 20px;
    height: 20px;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: rgba(255, 255, 255, 0.8);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0,0,0,0.15);
    appearance: none;
    -webkit-appearance: none; /* Safari/Chrome */
    -moz-appearance: none; /* Firefox */
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.form-check-input-apple[type="checkbox"] {
    border-radius: 6px;
}

.form-check-input-apple[type="radio"] {
    border-radius: 50%;
}

.form-check-input-apple:checked {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.form-check-input-apple:checked[type="checkbox"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input-apple:checked[type="radio"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input-apple:focus {
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15);
    border-color: var(--accent-blue);
    outline: 0;
}

/* --- Bento Grid Layouts --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bento-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.02);
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.04);
}

.col-span-12 { grid-column: span 12; }
.col-span-8 { grid-column: span 8; }
.col-span-6 { grid-column: span 6; }
.col-span-4 { grid-column: span 4; }

@media (max-width: 992px) {
    .col-span-8, .col-span-6, .col-span-4 { grid-column: span 12; }
}

/* --- Specific Components --- */

/* Hero Section */
.hero-split {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Background suave */
.hero-split::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(0,113,227,0.05) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    transition: transform 0.5s ease;
    border-radius: var(--radius-lg);
}

.hero-main-image:hover {
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.4);
    z-index: 2;
    min-width: 200px;
}

.card-1 {
    top: 20%;
    left: 0;
}

.card-2 {
    bottom: 20%;
    right: 0;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bg-success-light { background: rgba(40, 167, 69, 0.1); }
.bg-blue-light { background: rgba(0, 113, 227, 0.1); }
.text-xs { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }

@media (max-width: 991px) {
    .text-display {
        font-size: 48px;
        text-align: center !important;
    }
    .text-subtitle, .text-start, .mt-4.text-start {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
    .cpf-input-wrapper-left {
        margin: 0 auto;
    }
}

.hero-badge {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-blue);
    background: rgba(0, 113, 227, 0.1);
    padding: 8px 18px;
    border-radius: 99px;
    margin-bottom: 32px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

/* Header Adjustments */
.navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: saturate(180%) blur(20px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-brand img {
    height: 44px;
}

.custom-navlink {
    font-weight: 500 !important;
    font-size: 14px !important;
}

/* Whatsapp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

.chatbotAI {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: var(--text-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbotAI:hover {
    transform: scale(1.1);
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background: #FF3B30;
    border-radius: 50%;
    border: 2px solid white;
}

/* --- Added Utilities for Home.js --- */
.lgpd-banner {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 600px;
    background: rgba(29, 29, 31, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 16px 24px;
    z-index: 10001;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.lgpd-link {
    color: #2997ff;
    text-decoration: none;
    font-weight: 500;
}

.lgpd-link:hover {
    text-decoration: underline;
}

.lgpd-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: all 0.2s;
    font-size: 14px; /* Ajuste para ícone */
    flex-shrink: 0;
}

.lgpd-close:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.hero-subtitle-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.cpf-input-wrapper {
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.bento-bg-light {
    background: #F5F5F7;
    min-height: 480px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bento-bg-dark {
    background: #1D1D1F;
    color: white;
}

.bento-bg-blue {
    background: var(--gradient-blue);
    color: white;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bento-bg-blue::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIvPjwvc3ZnPg==');
    opacity: 0.3;
}

.bento-icon-large {
    width: 140px;
    margin-bottom: 40px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.bento-icon-small {
    width: 64px;
    margin-bottom: 24px;
}

.bento-icon-white {
    filter: brightness(0) invert(1);
}

.text-gray {
    color: #86868b;
}

.text-white-dim {
    color: rgba(255,255,255,0.8);
}

.cta-section {
    padding: 100px 20px;
    background: radial-gradient(circle at center, #2c2c2e 0%, #1d1d1f 100%);
    color: white;
    border-radius: var(--radius-lg);
}

.section-bg-white {
    background: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-bg-gray {
    background: #F5F5F7;
    padding-top: 100px;
    padding-bottom: 100px;
}

.bento-text-max {
    max-width: 440px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* --- Super CTA Section --- */
.cta-card-super {
    background: #050507;
    border-radius: 40px;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
}

.cta-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

.cta-input-group {
    display: flex;
    gap: 8px;
    max-width: 540px;
    margin: 0 auto;
    background: rgba(255,255,255,0.08);
    padding: 8px;
    border-radius: 99px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.cta-input-group:focus-within {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.05);
}

.input-cta {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: white !important;
    height: 56px;
    padding: 0 24px;
    font-size: 18px;
    flex: 1;
}

.input-cta::placeholder {
    color: rgba(255,255,255,0.7);
}

.input-cta:focus {
    transform: none !important;
    outline: none !important;
}

.btn-cta {
    height: 56px;
    padding: 0 36px;
    white-space: nowrap;
    border-radius: 99px;
    background: white;
    color: black;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-cta:hover {
    transform: scale(1.05);
    background: #f5f5f7;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,113,227,0.25) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
    pointer-events: none;
}

.cta-badge-item {
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.05);
}

/* --- Light Version of CTA Input Group (for Hero) --- */
.cta-input-group-light {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 500px;
    margin: 0;
    background: white;
    padding: 4px;
    border-radius: 99px;
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.cta-input-group-light:focus-within {
    border-color: #0071E3;
    box-shadow: 0 12px 32px rgba(0,113,227,0.15);
    transform: translateY(-2px);
}

.cta-input-group-light .input-cta {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #1d1d1f !important;
    height: 52px; /* Match container inner height */
    padding: 0 24px;
    font-size: 17px;
    flex: 1;
    font-weight: 400;
}

.cta-input-group-light .input-cta::placeholder {
    color: #86868b;
}

.cta-input-group-light .btn-cta {
    background: #0071e3;
    color: white;
    box-shadow: 0 4px 10px rgba(0,113,227,0.2);
    padding: 0 28px;
    height: 52px;
    margin-left: 4px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.cta-input-group-light .btn-cta:hover {
    background: #0077ED;
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(0,113,227,0.3);
}

@media (max-width: 768px) {
    .cta-input-group, .cta-input-group-light {
        flex-direction: column;
        background: transparent;
        padding: 0;
        border: none;
        border-radius: 0;
        backdrop-filter: none;
        box-shadow: none;
    }

    /* Dark Version Mobile */
    .cta-input-group .input-cta {
        background: rgba(255,255,255,0.1) !important;
        border-radius: 12px !important;
        margin-bottom: 16px !important;
        width: 100% !important;
        text-align: left !important;
        padding-left: 20px !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
        color: #ffffff !important;
        height: 60px !important;
        min-height: 60px !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
        transition: all 0.2s ease;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
        box-sizing: border-box !important;
        line-height: normal !important;
        display: block !important;
    }

    .cta-input-group .input-cta::placeholder {
        font-weight: 400 !important;
        color: rgba(255,255,255,0.6) !important;
        font-size: 18px !important;
        line-height: normal !important;
    }

    .cta-input-group .input-cta:focus {
        background: rgba(255,255,255,0.15) !important;
        border-color: #0071E3 !important;
        box-shadow: 0 4px 12px rgba(0,113,227,0.25) !important;
        transform: translateY(-1px);
        outline: none !important;
    }

    /* Light Version Mobile - Refined Premium Apple Style */
    .cta-input-group-light .input-cta {
        background: #FFFFFF !important;
        border-radius: 12px !important;
        margin-bottom: 16px !important;
        width: 100% !important;
        text-align: left !important;
        padding-left: 20px !important;
        border: 1px solid #D1D1D6 !important; /* Borda fina e elegante */
        color: #1d1d1f !important;
        height: 60px !important;
        min-height: 60px !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
        transition: all 0.2s ease;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
        box-sizing: border-box !important;
        line-height: normal !important;
        display: block !important;
    }

    .cta-input-group-light .input-cta::placeholder {
        font-weight: 400 !important;
        color: #8E8E93 !important;
        font-size: 18px !important;
        line-height: normal !important;
    }

    .cta-input-group-light .input-cta:focus {
        background: #FFFFFF !important;
        border-color: #0071E3 !important;
        box-shadow: 0 4px 12px rgba(0,113,227,0.15) !important;
        transform: translateY(-1px);
        outline: none !important;
    }

    .btn-cta {
        width: 100% !important;
        justify-content: center !important;
        border-radius: 12px !important;
        height: 60px !important;
        min-height: 60px !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        box-shadow: 0 6px 16px rgba(0,113,227,0.3) !important;
        margin-top: 0 !important;
        display: flex !important;
        align-items: center !important;
    }
}

/* --- Partner Styles --- */
.partner-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 240px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    margin: 0 auto;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.08);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
}

/* --- Partners Ticker --- */
.partners-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.swiper-linear .swiper-wrapper {
    transition-timing-function: linear !important;
}

.partner-fade-left, .partner-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partner-fade-left {
    left: 0;
    background: linear-gradient(to right, #F5F5F7 0%, transparent 100%);
}

.partner-fade-right {
    right: 0;
    background: linear-gradient(to left, #F5F5F7 0%, transparent 100%);
}

/* --- How It Works Steps --- */
.step-card {
    background: #F5F5F7;
    border-radius: 32px;
    padding: 48px 32px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    border: 1px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px);
    background: #FFFFFF;
    box-shadow: 0 24px 48px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.05);
}

.step-icon-wrapper {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    font-size: 40px;
    transition: transform 0.4s ease;
}

.step-card:hover .step-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 16px 32px rgba(0,0,0,0.1); /* Sombra neutra */
}

/* --- Apple Cards --- */
.card-apple {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.card-apple:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.hero-apple-simple {
    height: 60vh;
    background: #f5f5f7;
    color: #1d1d1f;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
}
