  /* Reset e estilos gerais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
        }

        /* Hero Section FULLSCREEN */
        .fullscreen-hero {
            position: relative;
            width: 100%;
            min-height: 100vh;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        /* Background con imagen específica para México */
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(130, 10, 209, 0.95) 0%, rgba(130, 10, 209, 0.85) 50%, rgba(130, 10, 209, 0.7) 100%);
            z-index: 2;
        }

        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            filter: brightness(0.6);
        }

        /* Conteúdo do Hero */
        .hero-content-full {
            position: relative;
            z-index: 3;
            max-width: 1400px;
            width: 100%;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        /* Texto principal */
        .hero-text-full {
            animation: fadeInLeft 1s ease-out;
        }

        .hero-badge-mexico {
            display: inline-block;
            background: linear-gradient(135deg, #820AD1, #9D4EDD);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 2rem;
            box-shadow: 0 10px 20px rgba(130, 10, 209, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-title-full {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #E0AAFF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle-full {
            font-size: 1.25rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 500px;
        }

        /* Estatísticas específicas para México */
        .hero-stats-full {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .hero-stat-item-full {
            text-align: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-stat-number-full {
            font-size: 2rem;
            font-weight: 800;
            color: #E0AAFF;
            margin-bottom: 0.5rem;
        }

        .hero-stat-label-full {
            font-size: 0.875rem;
            opacity: 0.9;
        }

        /* Botões */
        .hero-buttons-full {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .hero-btn-primary-full {
            background: linear-gradient(135deg, #820AD1, #9D4EDD);
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
            box-shadow: 0 10px 20px rgba(130, 10, 209, 0.4);
        }

        .hero-btn-primary-full:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(130, 10, 209, 0.5);
        }

        .hero-btn-secondary-full {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
            font-size: 1rem;
            backdrop-filter: blur(10px);
        }

        .hero-btn-secondary-full:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Elementos financeiros - México - TARJETA NUBANK */
        .finance-elements {
            position: relative;
            height: 500px;
            animation: fadeInRight 1s ease-out 0.5s both;
        }

        /* TARJETA NUBANK - Versión Principal */
        .credit-card-nubank {
            position: absolute;
            width: 320px;
            height: 200px;
            background: linear-gradient(135deg, #820AD1 0%, #9D4EDD 100%);
            border-radius: 1rem;
            top: 50%;
            right: 20%;
            transform: translateY(-50%) rotate(5deg);
            z-index: 4;
            padding: 1.5rem;
            box-shadow: 0 25px 50px rgba(130, 10, 209, 0.4);
            transition: transform 0.5s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
        }

        .credit-card-nubank:hover {
            transform: translateY(-50%) rotate(0deg) scale(1.05);
        }

        /* Efecto de brillo en la tarjeta Nubank */
        .credit-card-nubank::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            z-index: 1;
        }

        .card-chip {
            width: 45px;
            height: 35px;
            background: linear-gradient(135deg, gold, #ffd700);
            border-radius: 0.375rem;
            position: relative;
            z-index: 2;
        }

        .card-brand-nubank {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
            font-family: 'Segoe UI', sans-serif;
        }

        .card-number-nubank {
            font-family: 'Courier New', monospace;
            font-size: 1.125rem;
            letter-spacing: 2px;
            color: white;
            margin: 0.5rem 0;
            position: relative;
            z-index: 2;
        }

        .card-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.875rem;
            position: relative;
            z-index: 2;
        }

        .loan-badge {
            position: absolute;
            top: 30%;
            left: 10%;
            background: linear-gradient(135deg, #1d4ed8, #3b82f6);
            padding: 1rem 1.5rem;
            border-radius: 0.75rem;
            color: white;
            box-shadow: 0 15px 30px rgba(29, 78, 216, 0.4);
            transform: rotate(-5deg);
            z-index: 3;
            text-align: center;
            min-width: 180px;
        }

        .loan-amount-mexico {
            font-size: 1.75rem;
            font-weight: 800;
            display: block;
        }

        .loan-label-mexico {
            font-size: 0.875rem;
            opacity: 0.9;
            display: block;
            margin-top: 0.25rem;
        }

        .loan-rate {
            font-size: 0.75rem;
            opacity: 0.8;
            display: block;
            margin-top: 0.25rem;
        }

        .chart-mexico {
            position: absolute;
            bottom: 20%;
            left: 15%;
            background: linear-gradient(135deg, #7c3aed, #a855f7);
            padding: 1.25rem;
            border-radius: 0.75rem;
            color: white;
            box-shadow: 0 15px 30px rgba(124, 58, 237, 0.4);
            z-index: 2;
            width: 250px;
        }

        .chart-title {
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
            display: block;
        }

        .chart-bar {
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            margin-bottom: 0.5rem;
            border-radius: 3px;
            overflow: hidden;
        }

        .chart-fill {
            height: 100%;
            background: white;
            border-radius: 3px;
        }

        .chart-fill-1 { width: 85%; }
        .chart-fill-2 { width: 70%; }
        .chart-fill-3 { width: 95%; }

        .chart-note {
            font-size: 0.75rem;
            opacity: 0.8;
            margin-top: 0.5rem;
            display: block;
        }

        /* Trust badges */
        .trust-badges-mexico {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .trust-badge-mexico {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 0.5rem;
            font-size: 0.75rem;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Animações */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Container principal */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Sección principal */
        .section {
            padding: 4rem 0;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: stretch;
        }

        /* Título de la Sección - DESKTOP */
        .section-titulo-desktop {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-titulo-desktop h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-titulo-desktop h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            border-radius: 2px;
        }

        .section-titulo-prestamos h2::after {
            background: linear-gradient(135deg, #1d4ed8, #3b82f6);
        }

        .section-titulo-tarjetas h2::after {
            background: linear-gradient(135deg, #820AD1, #9D4EDD);
        }

        .section-titulo-analisis h2::after {
            background: linear-gradient(135deg, #820AD1, #1d4ed8);
        }

        .section-titulo-desktop p {
            font-size: 1.125rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Carrossel de Posts */
        .carrossel-container {
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
        }

        .carrossel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .carrossel-slide {
            flex: 0 0 100%;
            min-height: 0;
            display: flex;
            flex-direction: column;
        }

        .slide-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .slide-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .slide-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .slide-excerpt {
            font-size: 1rem;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .slide-link {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            text-align: center;
        }

        .carrossel-prestamos .slide-link {
            background: #1d4ed8;
            color: white!important
        }

        .carrossel-prestamos .slide-link:hover {
            background: #1e40af;
            transform: translateY(-2px);
        }

        .carrossel-tarjetas .slide-link {
            background: #820AD1;
            color: white!important
        }

        .carrossel-tarjetas .slide-link:hover {
            background: #7016b9;
            transform: translateY(-2px);
        }

        .carrossel-analisis .slide-link {
            background: #820AD1;
            color: white!important
        }

        .carrossel-analisis .slide-link:hover {
            background: #7016b9;
            transform: translateY(-2px);
        }

        /* Controles do Carrossel - SETAS */
        .carrossel-controls {
            position: absolute;
            top: 43%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 1rem;
            z-index: 10;
        }

        .carrossel-prev,
        .carrossel-next {
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            border: none;
            font-size: 1.25rem;
        }

        .carrossel-prev:hover,
        .carrossel-next:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .carrossel-prestamos .carrossel-prev,
        .carrossel-prestamos .carrossel-next {
            color: #1d4ed8;
        }

        .carrossel-tarjetas .carrossel-prev,
        .carrossel-tarjetas .carrossel-next {
            color: #820AD1;
        }

        .carrossel-analisis .carrossel-prev,
        .carrossel-analisis .carrossel-next {
            color: #820AD1;
        }

        .carrossel-prev {
            margin-left: -1rem;
        }

        .carrossel-next {
            margin-right: -1rem;
        }

        /* Indicadores do Carrossel */
        .carrossel-indicators {
            position: absolute;
            bottom: 1rem;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            z-index: 10;
        }

        .indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carrossel-prestamos .indicator {
            background: rgba(29, 78, 216, 0.3);
        }

        .carrossel-prestamos .indicator.active {
            background: #1d4ed8;
            transform: scale(1.2);
        }

        .carrossel-tarjetas .indicator {
            background: rgba(130, 10, 209, 0.3);
        }

        .carrossel-tarjetas .indicator.active {
            background: #820AD1;
            transform: scale(1.2);
        }

        .carrossel-analisis .indicator {
            background: rgba(130, 10, 209, 0.3);
        }

        .carrossel-analisis .indicator.active {
            background: #820AD1;
            transform: scale(1.2);
        }

        /* Bloque Información - Préstamos */
        .prestamos-bloco {
            background: linear-gradient(135deg, #1d4ed8, #3b82f6);
            border-radius: 1rem;
            padding: 2.5rem;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .prestamos-icone {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .prestamos-titulo {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .prestamos-desc {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .prestamos-cat {
            font-size: 0.875rem;
            opacity: 0.8;
            margin-bottom: 2rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            display: inline-block;
        }

        .prestamos-btn {
            display: inline-block;
            background: white;
            color: #1d4ed8 !important;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .prestamos-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
        }

        /* Bloque Información - Tarjetas */
        .tarjetas-bloco {
            background: linear-gradient(135deg, #820AD1, #9D4EDD);
            border-radius: 1rem;
            padding: 2.5rem;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .tarjetas-icone {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .tarjetas-titulo {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .tarjetas-desc {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .tarjetas-beneficios {
            font-size: 0.875rem;
            opacity: 0.8;
            margin-bottom: 2rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            display: inline-block;
        }

        .tarjetas-btn {
            display: inline-block;
            background: white;
            color: #820AD1 !important;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .tarjetas-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
        }

        /* Bloque Información - Análisis */
        .analisis-bloco {
            background: linear-gradient(135deg, #820AD1, #1d4ed8);
            border-radius: 1rem;
            padding: 2.5rem;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .analisis-icone {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .analisis-titulo {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .analisis-desc {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .analisis-calidad {
            font-size: 0.875rem;
            opacity: 0.8;
            margin-bottom: 2rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            display: inline-block;
        }

        .analisis-btn {
            display: inline-block;
            background: white;
            color: #820AD1 !important;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .analisis-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
        }

        /* Elementos decorativos */
        .decorativo-1,
        .decorativo-2 {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .decorativo-1 {
            width: 100px;
            height: 100px;
            top: -30px;
            right: -30px;
        }

        .decorativo-2 {
            width: 150px;
            height: 150px;
            bottom: -50px;
            left: -50px;
        }

        /* MOBILE: Información sobre Préstamos (visible solo en mobile) */
        .mobile-prestamos-info {
            display: none;
            text-align: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #1d4ed8, #3b82f6);
            border-radius: 1rem;
            color: white;
        }

        .mobile-prestamos-info .prestamos-icone {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .mobile-prestamos-info .prestamos-titulo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .mobile-prestamos-info .prestamos-desc {
            font-size: 0.9375rem;
            margin-bottom: 1rem;
            opacity: 0.95;
        }

        .mobile-prestamos-info .prestamos-cat {
            font-size: 0.8125rem;
            margin-bottom: 1.5rem;
            background: rgba(255, 255, 255, 0.15);
            padding: 0.375rem 0.875rem;
        }

        /* MOBILE: Información sobre Tarjetas (visible solo en mobile) */
        .mobile-tarjetas-info {
            display: none;
            text-align: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #820AD1, #9D4EDD);
            border-radius: 1rem;
            color: white;
        }

        .mobile-tarjetas-info .tarjetas-icone {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .mobile-tarjetas-info .tarjetas-titulo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .mobile-tarjetas-info .tarjetas-desc {
            font-size: 0.9375rem;
            margin-bottom: 1rem;
            opacity: 0.95;
        }

        .mobile-tarjetas-info .tarjetas-beneficios {
            font-size: 0.8125rem;
            margin-bottom: 1.5rem;
            background: rgba(255, 255, 255, 0.15);
            padding: 0.375rem 0.875rem;
        }

        /* MOBILE: Información sobre Análisis (visible solo en mobile) */
        .mobile-analisis-info {
            display: none;
            text-align: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #820AD1, #1d4ed8);
            border-radius: 1rem;
            color: white;
        }

        .mobile-analisis-info .analisis-icone {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .mobile-analisis-info .analisis-titulo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .mobile-analisis-info .analisis-desc {
            font-size: 0.9375rem;
            margin-bottom: 1rem;
            opacity: 0.95;
        }

        .mobile-analisis-info .analisis-calidad {
            font-size: 0.8125rem;
            margin-bottom: 1.5rem;
            background: rgba(255, 255, 255, 0.15);
            padding: 0.375rem 0.875rem;
        }

        /* MOBILE: Botones abajo del carrusel */
        .mobile-prestamos-btn,
        .mobile-tarjetas-btn,
        .mobile-analisis-btn {
            display: none;
            text-align: center;
            margin-top: 2rem;
        }

        .mobile-prestamos-btn a {
            display: inline-block;
            background: #1d4ed8;
            color: white !important;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 300px;
        }

        .mobile-prestamos-btn a:hover {
            background: #1e40af;
            transform: translateY(-2px);
        }

        .mobile-tarjetas-btn a {
            display: inline-block;
            background: #820AD1;
            color: white !important;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 300px;
        }

        .mobile-tarjetas-btn a:hover {
            background: #7016b9;
            transform: translateY(-2px);
        }

        .mobile-analisis-btn a {
            display: inline-block;
            background: #820AD1;
            color: white !important;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 300px;
        }

        .mobile-analisis-btn a:hover {
            background: #7016b9;
            transform: translateY(-2px);
        }

        /* Responsividade */
        @media (max-width: 1200px) {
            .hero-content-full {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .hero-subtitle-full {
                margin: 0 auto 2.5rem;
            }

            .finance-elements {
                height: 400px;
                margin: 0 auto;
                max-width: 800px;
            }

            .credit-card-nubank {
                right: 50%;
                transform: translateX(50%) translateY(-50%) rotate(5deg);
            }

            .loan-badge {
                left: 20%;
                top: 20%;
            }

            .chart-mexico {
                left: 50%;
                transform: translateX(-50%);
                bottom: 10%;
            }
        }

        @media (max-width: 992px) {
            .grid-2 {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .prestamos-bloco,
            .tarjetas-bloco,
            .analisis-bloco {
                height: auto;
                min-height: 300px;
            }
        }

        @media (max-width: 768px) {
            /* Esconde bloques en desktop y muestra información mobile */
            .prestamos-bloco,
            .tarjetas-bloco,
            .analisis-bloco {
                display: none;
            }
            
            .mobile-prestamos-info,
            .mobile-tarjetas-info,
            .mobile-analisis-info {
                display: block;
            }
            
            .mobile-prestamos-btn,
            .mobile-tarjetas-btn,
            .mobile-analisis-btn {
                display: block;
            }

            /* Ajustes mobile */
            .section-titulo-desktop {
                margin-bottom: 2rem;
            }
            
            .section-titulo-desktop h2 {
                font-size: 2rem;
            }
            
            .section-titulo-desktop p {
                font-size: 1rem;
            }

            .hero-title-full {
                font-size: 2.5rem;
            }

            .hero-subtitle-full {
                font-size: 1.125rem;
            }

            .hero-stats-full {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .hero-buttons-full {
                flex-direction: column;
                align-items: center;
            }

            .hero-btn-primary-full,
            .hero-btn-secondary-full {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .finance-elements {
                height: 350px;
            }

            .credit-card-nubank {
                width: 280px;
                height: 175px;
                padding: 1.25rem;
            }

            .card-brand-nubank {
                font-size: 1.25rem;
            }

            .card-number-nubank {
                font-size: 1rem;
            }

            .loan-badge {
                left: 5%;
                top: 15%;
                transform: rotate(-5deg) scale(0.9);
            }

            .chart-mexico {
                width: 220px;
                padding: 1rem;
            }

            .slide-image {
                height: 200px;
            }

            .slide-title {
                font-size: 1.25rem;
            }

            .prestamos-titulo,
            .tarjetas-titulo,
            .analisis-titulo {
                font-size: 1.5rem;
            }
            
            .carrossel-container {
                margin-top: 0;
            }

            /* Ajuste das setas no mobile */
            .carrossel-prev,
            .carrossel-next {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .carrossel-prev {
                margin-left: -0.5rem;
            }

            .carrossel-next {
                margin-right: -0.5rem;
            }
        }

        @media (min-width: 769px) {
            /* Garantiza que los bloques sean visibles solo en desktop */
            .prestamos-bloco,
            .tarjetas-bloco,
            .analisis-bloco {
                display: flex;
            }
            
            .mobile-prestamos-info,
            .mobile-tarjetas-info,
            .mobile-analisis-info {
                display: none !important;
            }
            
            .mobile-prestamos-btn,
            .mobile-tarjetas-btn,
            .mobile-analisis-btn {
                display: none !important;
            }
        }

        @media (max-width: 480px) {
            .hero-title-full {
                font-size: 2rem;
            }

            .hero-stats-full {
                grid-template-columns: 1fr;
            }

            .finance-elements {
                height: 300px;
            }

            .credit-card-nubank {
                width: 250px;
                height: 160px;
                padding: 1rem;
            }

            .card-brand-nubank {
                font-size: 1.125rem;
            }

            .card-number-nubank {
                font-size: 0.875rem;
                letter-spacing: 1px;
            }

            .loan-badge {
                transform: rotate(-5deg) scale(0.8);
                left: 0;
            }

            .chart-mexico {
                width: 200px;
            }

            .section {
                padding: 2rem 0;
            }
            
            .section-titulo-desktop h2 {
                font-size: 1.75rem;
            }
            
            .mobile-prestamos-info,
            .mobile-tarjetas-info,
            .mobile-analisis-info {
                padding: 1.25rem;
            }
            
            .mobile-prestamos-info .prestamos-titulo,
            .mobile-tarjetas-info .tarjetas-titulo,
            .mobile-analisis-info .analisis-titulo {
                font-size: 1.25rem;
            }
            
            .mobile-prestamos-info .prestamos-desc,
            .mobile-tarjetas-info .tarjetas-desc,
            .mobile-analisis-info .analisis-desc {
                font-size: 0.875rem;
            }

            /* Ajuste das setas no mobile muito pequeno */
            .carrossel-prev,
            .carrossel-next {
                width: 36px;
                height: 36px;
                font-size: 0.875rem;
            }

            .carrossel-prev {
                margin-left: -0.25rem;
            }

            .carrossel-next {
                margin-right: -0.25rem;
            }
        }

        /* Sección Featured Card - TARJETA NUBANK */
        .featured-card-nubank {
            width: 320px;
            height: 200px;
            background: linear-gradient(135deg, #820AD1 0%, #9D4EDD 100%);
            border-radius: 1rem;
            padding: 1.5rem;
            color: white;
            box-shadow: 0 20px 40px rgba(130, 10, 209, 0.3);
            transform: rotate(3deg);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            position: relative;
        }

        .featured-card-nubank:hover {
            transform: rotate(0deg) scale(1.05);
        }

        /* Efecto de brillo igual que en la tarjeta principal */
        .featured-card-nubank::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            z-index: 1;
        }

        .card-header-nubank {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .card-chip-nubank {
            width: 40px;
            height: 30px;
            background: linear-gradient(135deg, gold, #ffd700);
            border-radius: 0.375rem;
            position: relative;
            z-index: 2;
        }

        .card-brand-nubank-featured {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
            font-family: 'Segoe UI', sans-serif;
        }

        .card-number-nubank-featured {
            font-family: 'Courier New', monospace;
            font-size: 1.125rem;
            letter-spacing: 2px;
            margin: 0.5rem 0;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .card-footer-nubank {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
            opacity: 0.9;
            margin-top: auto;
            position: relative;
            z-index: 2;
        }

        .card-type {
            font-weight: 600;
        }

        .card-premium {
            font-weight: 700;
            color: gold;
        }

        /* FOOTER RESPONSIVO */
        .footer {
            background: #0f172a;
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            max-width: 150px;
            height: auto;
        }

        .footer-text {
            font-size: 0.875rem;
            line-height: 1.6;
            color: #94a3b8;
        }

        .footer-title {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s ease;
            display: inline-block;
            padding: 0.25rem 0;
        }

        .footer-links a:hover {
            color: #e2e8f0;
        }

        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 2rem;
            text-align: center;
        }

        .footer-disclaimer {
            font-size: 0.75rem;
            color: #94a3b8;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .footer-copyright {
            font-size: 0.75rem;
            color: #94a3b8;
        }

        /* Responsividad del Footer */
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 3rem 0 2rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-logo {
                text-align: center;
            }
            
            .footer-logo img {
                max-width: 120px;
            }
            
            .footer-title {
                text-align: center;
                margin-bottom: 1rem;
            }
            
            .footer-text {
                text-align: center;
                font-size: 0.8125rem;
            }
            
            .footer-links {
                text-align: center;
            }
            
            .footer-links li {
                margin-bottom: 0.5rem;
            }
            
            .footer-links a {
                font-size: 0.8125rem;
            }
            
            .footer-bottom {
                padding-top: 1.5rem;
            }
            
            .footer-disclaimer {
                font-size: 0.6875rem;
                margin-bottom: 0.75rem;
            }
            
            .footer-copyright {
                font-size: 0.6875rem;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 2.5rem 0 1.5rem;
            }
            
            .footer-grid {
                gap: 1.5rem;
            }
            
            .footer-logo img {
                max-width: 100px;
            }
            
            .footer-title {
                font-size: 1rem;
            }
            
            .footer-text {
                font-size: 0.75rem;
            }
            
            .footer-links a {
                font-size: 0.75rem;
            }
            
            .footer-disclaimer {
                font-size: 0.625rem;
            }
            
            .footer-copyright {
                font-size: 0.625rem;
            }
        }

        @media (pointer: coarse) {

            .mobile-prestamos-info{display: none!important;}
            .mobile-tarjetas-info{display: none!important;}
            .mobile-analisis-info{display: none!important;}

            .header-top { padding: 0.5rem 0!important; }

            .hero-content-full {padding-top: 18rem!important;}

            .hero-title-full {font-size: 1.7rem!important;}
            .hero-subtitle-full {margin: 0 auto 1.5rem!important;}
            .hero-stat-item-full {padding: 0rem!important;}
            .hero-stats-full {margin-bottom: 0.6rem!important;}
            .hero-background {height: 92%!important;}

            .divpaiNU h2{font-size: 1.3rem!important;}
            
            .divpaiNU h3{
                font-size: 1.3rem!important;
                margin-top: 1.5rem!important;
            }

            .divpaiNU li{margin-bottom: 0.1rem!important;}

            .featured-card-nubank {
                width: 236px!important;
                height: 164px!important;
            }

            .card-footer-nubank{font-size: 82%!important;}
            
            .card-number-nubank-featured {font-size: 0.8rem!important;}

            .hero-stats-full {grid-template-columns: repeat(3, 1fr)!important;}
            .hero-stat-number-full {font-size: 1.5rem!important;}

            .divpaiNU a {
                width: 100%; 
                text-align: center;
                font-size: 24px;
            }

            .mobile-tarjetas-btn a{
                width: 100%!important; 
                text-align: center;
                font-size: 24px;
            }

            .mobile-tarjetas-btn a{
                width: 100%!important; 
                text-align: center;
                font-size: 24px;                
            }

            .mobile-prestamos-btn a{
                width: 100%!important; 
                text-align: center;
                font-size: 24px;                   
            }

            .hero-buttons-full {
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    gap: 10px; 
                    align-items: center;
                    justify-items: center; 
                }
                
                .hero-buttons-full a {
                    text-align: center;
                    /* Garante que o botão ocupe toda a área da sua célula no Grid */
                    width: 100%; 
                    /* Pode ajudar a garantir uma altura mínima, se necessário */
                    min-height: 80px; 
                    /* Opcional: padding maior pode melhorar o visual */
                    padding: 10px 5px; 
                    /* Opcional: Faz com que o texto quebre, mas de forma mais controlada */
                    white-space: normal; 
                }     
                
                
            .trust-badges-mexico {display: none!important;}
            .finance-elements {display: none!important;}
            .hero-text-full  {
                    margin-top: -51vh;
            }

        }