
/* 1. GENERAL */
* {
    -webkit-font-smoothing: antialiased;
    -moz-os-font-smoothing: grayscale;
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    font-weight: 500;
}

.padding-0 {
    padding: 0 !important;
}

.wrapper {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0!important;
    overflow: hidden;
}

button:focus {
    outline: none !important;
}

/* 2. NAVBAR MODERNO */
/* 2. NAVBAR MODERNO - VERSIÓN COMPACTA Y CONSISTENTE */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Cuando hace scroll - mantener el mismo tamaño */
.header-scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.15);
}

.header-scrolled .navbar-brand img {
    width: 120px; /* Mismo tamaño siempre */
    margin-top: 0;
}

.navbar-nav {
    align-items: center;
}

.menu-navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

.navbar-nav:not(.menu-navbar-nav) .nav-item:last-of-type {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.nav-item .nav-link {
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.nav-item .nav-link:hover .nav-link-menu {
    color: #2a5082 !important;
}

.nav-link-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 12px;
    color: #CCCCCC;
    letter-spacing: 1.5px;
    line-height: 1;
    display: none; /* Ocultar siempre para mantener consistencia */
}

.nav-link-menu {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #1e3a5f;
    line-height: 1;
    position: relative;
    transition: all 0.3s ease;
}

.nav-item .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 5px;
    left: 50%;
    background: linear-gradient(90deg, #1e3a5f, #ffc107);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-item .nav-link:hover::after {
    width: 80%;
}

.learn-more-btn {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a5082 100%);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff !important;
    padding: 12px 30px !important;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.learn-more-btn:hover {
    color: #fff !important;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-invert {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a5082 100%) !important;
}

.btn-invert:hover {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%) !important;
    color: #fff !important;
}

.navbar-toggler {
    cursor: pointer;
    font-size: 24px;
    padding: 10px 18px !important;
    color: #1e3a5f;
    border: 2px solid #1e3a5f;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar-toggler:hover {
    background-color: #1e3a5f;
    color: #fff;
    transform: scale(1.05);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.2);
}

/* Ajustar el espaciado del collapse */
.navbar-collapse {
    align-items: center;
}

/* Para que el contenido no quede debajo del navbar fijo */
.wrapper {
    padding-top: 80px; /* Altura del navbar */
}

/* 3. HEADER MODERNO */
/* 3. HEADER MODERNO - VERSIÓN MEJORADA */
/* ============================================
   HEADER MEJORADO - VERSIÓN MODERNA Y RESPONSIVE
   ============================================ */

.header {
    display: flex;
    width: 100%;
    padding: 120px 0 100px 0;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1e3a5f 0%, #2a5082 50%, #1e3a5f 100%);
    position: relative;
    overflow: hidden;
}

/* Decoraciones de fondo animadas */
.header-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-decoration 20s infinite ease-in-out;
}

.decoration-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ffc107 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.decoration-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fff 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.decoration-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ffc107 0%, transparent 70%);
    top: 50%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float-decoration {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    position: relative;
    z-index: 1;
    gap: 40px;
}

/* Logo con efecto glow */
.header-img-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo-container img {
    width: 100%;
    max-width: 600px; /* Aumentado de 450px a 600px */
    height: auto;
    display: block;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: glow-pulse 3s infinite;
    z-index: -1;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Sección de título */
.header-title-section {
    max-width: 600px;
}

/* Badge superior */
.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.15);
    border: 2px solid rgba(255, 193, 7, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: slideInDown 0.8s ease;
}

.badge-icon {
    font-size: 18px;
    animation: rotate-icon 4s infinite;
}

@keyframes rotate-icon {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Título mejorado */
.header-title {
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-gradient {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 48px;
    font-weight: 800;
}

.title-emphasis {
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
}

.header-subtitle-modern {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Caja del premio - diseño moderno */
.highlight-box-modern {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.highlight-box-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.prize-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.trophy-icon {
    font-size: 32px;
    filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.5));
    animation: bounce-trophy 2s infinite;
}

@keyframes bounce-trophy {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.prize-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.prize-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.prize-currency {
    font-size: 28px;
    font-weight: 700;
    color: #ffc107;
}

.prize-amount-large {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 50%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 193, 7, 0.8)); }
}

.prize-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
}

.prize-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.prize-feature:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.feature-text strong {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.feature-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

/* Sección de transmisión en vivo */
.live-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 18px;
    margin-top: 20px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
    }
}

.live-text {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.social-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    flex-wrap: wrap;
}

.platform-icon {
    font-size: 16px;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
}

/* Botón CTA mejorado */
.cta-section {
    margin-top: 30px;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #1e3a5f !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 
        0 8px 25px rgba(255, 193, 7, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
    max-width: 100%;
}

.btn-primary-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(255, 193, 7, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #1e3a5f !important;
    text-decoration: none;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    font-size: 22px;
    font-weight: bold;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-primary-cta:hover .btn-icon {
    transform: translateX(5px);
}

/* Indicadores de confianza */
.trust-indicators {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Animaciones de entrada */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets en landscape y desktop pequeño */
@media screen and (max-width: 1199.98px) {
    .logo-container img {
        max-width: 500px; /* Aumentado de 380px a 500px */
    }
    
    .title-gradient {
        font-size: 42px;
    }
    
    .title-emphasis {
        font-size: 56px;
    }
}

/* Tablets */
@media screen and (max-width: 991.98px) {
    .header {
        padding: 100px 0 80px 0;
    }
    
    .header-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .header-img-section {
        width: 100%;
        order: 1;
    }
    
    .header-title-section {
        width: 100%;
        max-width: 100%;
        order: 2;
        text-align: center;
    }
    
    .logo-container img {
        max-width: 320px;
    }
    
    .header-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .title-gradient {
        font-size: 36px;
    }
    
    .title-emphasis {
        font-size: 48px;
    }
    
    .header-subtitle-modern {
        font-size: 16px;
    }
    
    .prize-amount-large {
        font-size: 48px;
    }
    
    .prize-currency {
        font-size: 24px;
    }
    
    .highlight-box-modern {
        padding: 25px;
    }
}

/* Móviles en landscape y tablets pequeñas */
@media screen and (max-width: 767.98px) {
    .header {
        padding: 80px 0 60px 0;
    }
    
    .logo-container img {
        max-width: 360px; /* Aumentado de 280px a 360px */
    }
    
    .title-gradient {
        font-size: 32px;
    }
    
    .title-emphasis {
        font-size: 42px;
    }
    
    .header-subtitle-modern {
        font-size: 15px;
    }
    
    .prize-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .prize-amount-large {
        font-size: 42px;
    }
    
    .prize-currency {
        font-size: 22px;
    }
    
    .prize-title {
        font-size: 18px;
    }
    
    .trophy-icon {
        font-size: 28px;
    }
    
    .btn-primary-cta {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .trust-indicators {
        gap: 15px;
    }
}
/* Móviles pequeños */
@media screen and (max-width: 575.98px) {
    .header {
        padding: 70px 0 50px 0;
    }
    
    .header-container {
        gap: 20px;
    }
    
    .logo-container img {
        max-width: 300px; /* Aumentado de 240px a 300px */
    }
    
    .header-badge {
        padding: 6px 16px;
    }
    
    .badge-text {
        font-size: 12px;
    }
    
    .badge-icon {
        font-size: 16px;
    }
    
    .title-gradient {
        font-size: 26px;
    }
    
    .title-emphasis {
        font-size: 36px;
    }
    
    .header-subtitle-modern {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .highlight-box-modern {
        padding: 20px;
        margin: 20px 0;
    }
    
    .prize-header {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .prize-title {
        font-size: 16px;
    }
    
    .trophy-icon {
        font-size: 24px;
    }
    
    .prize-main {
        margin: 15px 0;
        gap: 6px;
    }
    
    .prize-currency {
        font-size: 20px;
    }
    
    .prize-amount-large {
        font-size: 36px;
    }
    
    .prize-feature {
        padding: 10px;
        gap: 8px;
    }
    
    .feature-icon {
        font-size: 20px;
    }
    
    .feature-text strong {
        font-size: 13px;
    }
    
    .feature-text span {
        font-size: 11px;
    }
    
    .live-section {
        padding: 15px;
        margin-top: 15px;
    }
    
    .live-text {
        font-size: 11px;
    }
    
    .social-platforms {
        font-size: 12px;
    }
    
    .platform-icon {
        font-size: 14px;
    }
    
    .cta-section {
        margin-top: 20px;
    }
    
    .btn-primary-cta {
        padding: 12px 24px;
        font-size: 13px;
        gap: 10px;
    }
    
    .btn-icon {
        font-size: 18px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
    }
    
    .trust-item {
        font-size: 12px;
    }
    
    .check-icon {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
    
    /* Ocultar algunas decoraciones en móviles para mejor rendimiento */
    .decoration-2,
    .decoration-3 {
        display: none;
    }
}
/* Móviles muy pequeños (iPhone SE, etc.) */
@media screen and (max-width: 374.98px) {
    .logo-container img {
        max-width: 260px; /* Aumentado de 200px a 260px */
    }
    
    .title-gradient {
        font-size: 22px;
    }
    
    .title-emphasis {
        font-size: 30px;
    }
    
    .prize-amount-large {
        font-size: 30px;
    }
    
    .prize-currency {
        font-size: 18px;
    }
    
    .highlight-box-modern {
        padding: 15px;
    }
}

/* 7. SECCIÓN DE CLIENTES (RIFAS DISPONIBLES) */
.clients-section {
    display: flex;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.clients-title-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
    text-align: center;
}

.clients-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 2;
    color: #2a5082;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.clients-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 48px;
    line-height: 1;
    color: #1e3a5f;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.clients-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e3a5f, #ffc107);
    border-radius: 2px;
}

.client-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

.client-logo-section img {
    height: auto;
    width: 144px !important;
    border-radius: 18px;
    transition: transform 0.3s ease;
}

.client-logo-section img:hover {
    transform: scale(1.05);
}

.owl-theme .owl-nav {
    display: none;
}

.owl-theme .owl-dots, .owl-theme .owl-nav {
    margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot span {
    background-color: #dee2e6 !important;
    width: 12px;
    height: 12px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: linear-gradient(135deg, #1e3a5f, #ffc107) !important;
}

/* 8. SECCIÓN DE BLOG (RIFAS) */
.blog-section {
    display: flex;
    padding: 80px 0;
    position: relative;
    background: #ffffff;
}

.blog-container {
    position: relative;
}

.blog-title-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
    text-align: center;
}

.blog-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 2;
    color: #2a5082;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.blog-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 48px;
    line-height: 1;
    color: #1e3a5f;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.blog-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e3a5f, #ffc107);
    border-radius: 2px;
}

.blog-posts-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.blog-post-card-container {
    padding: 15px;
    max-width: 400px;
    margin: 0 auto;
    display: inline-block;
}

.blog-post-card {
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.blog-post-card:hover {
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.15);
    transform: translateY(-5px);
    border-color: #1e3a5f;
}

.blog-post-icon {
    margin-top: 10px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.blog-post-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(255, 193, 7, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-post-card:hover .blog-post-icon::after {
    opacity: 1;
}

.blog-post-icon img {
    width: 100%;
    border-radius: 20px;
    height: auto;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-icon img {
    transform: scale(1.05);
}

.blog-post-title {
    font-size: 22px;
    color: #1e3a5f;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    min-height: 60px;
}

.blog-post-icon.container-img-rifa {
    overflow: hidden;
    height: auto;
    width: 100%;
    border-radius: 20px;
}

.blog-post-subtitle {
    font-size: 16px;
    color: #6c757d;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1;
    margin: 15px auto 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-post-text {
    color: #495057;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.blog-post-link {
    color: #1e3a5f;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.blog-post-link:hover {
    color: #ffc107;
    text-decoration: none;
    transform: translateX(5px);
}

/* 9. SECCIÓN DE CONTACTO */
.contact-section {
    padding: 80px 0 90px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.contact-title-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.contact-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 2;
    color: #2a5082;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 48px;
    line-height: 1;
    color: #1e3a5f;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e3a5f, #ffc107);
    border-radius: 2px;
}

.contact-text {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #495057;
}

.contact-text > img {
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-text > img:hover {
    transform: scale(1.05);
}

/* Estilos mejorados para tarjetas de cuentas bancarias */
.payment-account-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin: 20px auto;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.payment-account-card:hover {
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.15);
    transform: translateY(-5px);
    border-color: #1e3a5f;
}

.payment-account-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.payment-account-logo {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    object-fit: contain;
    margin-right: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px;
    background: #f8f9fa;
}

.bank_name {
    font-size: 22px;
    font-weight: 800;
    color: #1e3a5f;
    margin: 0;
    flex: 1;
}

.payment-account-body {
    margin-top: 20px;
}

.payment-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
    padding: 12px 0;
}

.payment-info-label {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.payment-info-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.number, .number_alias {
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 12px;
    border-left: 4px solid #1e3a5f;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 700;
    margin: 5px 0;
    display: inline-block;
    color: #1e3a5f;
    min-width: 200px;
    text-align: center;
}

.titular-name {
    background: #f8f9fa;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    display: inline-block;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-account-header {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-account-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .number, .number_alias {
        min-width: 100%;
        font-size: 16px;
    }
}

.whatsapp-contact-button {
    margin-top: 40px;
    text-align: center;
}

.header pre {
    font-weight: 800;
    font-size: 1.2em;
}

pre {
    display: block;
    font-size: 16px;
    white-space: pre-wrap;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 0;
}

/* 10. FOOTER MODERNO */
.footer-section {
    padding: 80px 0 40px;
    margin-bottom: 0px!important;
    position: relative;
    background: linear-gradient(135deg, #1e3a5f 0%, #2a5082 100%);
    color: #FFFFFF;
}

.footer-container {
    display: flex;
    position: relative;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding-right: 40px;
}

.footer-logo img {
    width: 192px;
    margin-bottom: 15px;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-logo p {
    max-width: 250px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.footer-subsection {
    padding-left: 40px;
    padding-right: 40px;
}

.footer-subsection-title {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffc107;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-subsection-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.footer-subsection pre {
    color: rgba(255, 255, 255, 0.9);
}

.footer-subsection-list {
    list-style: none;
    padding-left: 0;
}

.footer-subsection-list li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    text-align: left;
    margin-top: 15px;
    padding-left: 35px;
    position: relative;
}

.footer-subsection-list li::before {
    font-family: "FontAwesome";
    font-size: 18px;
    position: absolute;
    left: 0;
    color: #ffc107;
}

.footer-subsection-list li:nth-child(1)::before {
    content: "\f0ac";
}

.footer-subsection-list li:nth-child(2)::before {
    content: "\f041";
}

.footer-subsection-list li:nth-child(3)::before {
    content: "\f232";
}

.footer-subsection-list a {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.footer-subsection-list a:hover {
    color: #ffc107;
    text-decoration: none;
}

.footer-social-media-icons-section {
    display: flex;
    margin-top: 20px;
}

.footer-social-media-icon {
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

.footer-social-media-icon .fa {
    color: #FFFFFF;
    font-size: 32px;
    text-decoration: none!important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.footer-social-media-icon .fa:hover {
    color: #ffc107;
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 193, 7, 0.2);
}

.footer-credits {
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-credits p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
}

.footer-credits a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: #ffc107;
}

/* BOTÓN FLOTANTE MODERNO */
#buttfixed {
    display: block;
    cursor: pointer;
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    border-radius: 50%;
    padding: 12px;
    z-index: 999;
    user-select: none;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#buttfixed:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

#buttfixed > i {
    color: #fff;
    font-size: 30px;
}

#buttfixed > span {
    font-size: 11px;
    position: relative;
    font-weight: 700;
    color: #ffffff;
    top: 5px;
    left: -2px;
}

#linksfixed {
    display: none;
    bottom: 95px;
    right: 30px;
    position: fixed;
    border-radius: 10px;
    z-index: 998;
    transition: all 0.3s ease;
}

#linksfixed a {
    display: block;
    color: #fff;
    padding: 5px 15px;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 10px 0;
    transition: all 0.3s ease;
}

#linksfixed a.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

#linksfixed a.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* BOTÓN MÁGICO PARA COPIAR */
button.magic_button {
    padding: 8px 16px !important;
    border: none;
    font-size: 16px;
    border-radius: 25px;
    margin: 2px 5px;
    cursor: pointer;
    background: linear-gradient(135deg, #1e3a5f 0%, #2a5082 100%);
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(30, 58, 95, 0.3);
}

button.magic_button:hover {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

button.magic_button.copied::before {
    content: "✓ COPIADO";
    width: 118px;
    position: absolute;
    font-size: 12px;
    font-weight: 700;
    color: #25d366;
    background: #ffffff;
    padding: 5px 10px;
    border-radius: 20px;
    margin-top: -40px;
    margin-left: -35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* PAGINACIÓN MODERNA */
#pagination-container {
    text-align: center;
    margin-top: 40px;
}

.pagination {
    display: inline-flex;
    background: #ffffff;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-link {
    color: #1e3a5f;
    font-weight: 600;
    padding: 10px 18px;
    display: block;
    transition: all 0.3s ease;
    border: none;
    margin: 0 2px;
    border-radius: 50px;
}

.page-link:hover {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a5082 100%);
    color: #ffffff;
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a5082 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.page-item:first-child .page-link {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.page-item:last-child .page-link {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

/* RESPONSIVE DESIGN */
/* RESPONSIVE DESIGN - ACTUALIZADO */
@media screen and (max-width: 991.98px) {
    .header {
        padding: 100px 0 80px 0;
    }
    
    .header-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .header-img-section {
        width: 100%;
        order: 1;
    }
    
    .header-title-section {
        width: 100%;
        max-width: 100%;
        order: 2;
        text-align: center;
    }
    
    .logo-container img {
        max-width: 420px; /* Aumentado de 320px a 420px */
    }
    
    .header-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .title-gradient {
        font-size: 36px;
    }
    
    .title-emphasis {
        font-size: 48px;
    }
    
    .header-subtitle-modern {
        font-size: 16px;
    }
    
    .prize-amount-large {
        font-size: 48px;
    }
    
    .prize-currency {
        font-size: 24px;
    }
    
    .highlight-box-modern {
        padding: 25px;
    }
}

@media screen and (max-width: 575.98px) {
    .navbar {
        padding: 8px 0;
    }
    
    .navbar-brand img {
        width: 120px;
    }
    
    .wrapper {
        padding-top: 65px;
    }
    
    .header {
        padding-top: 80px;
    }
}

/* ANIMACIONES SUAVES */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-post-card,
.contact-text,
.footer-subsection {
    animation: fadeIn 0.6s ease-out;
}

/* TRANSICIONES GLOBALES */
body a,
body button,
.btn,
#buttfixed,
img {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.owl-stage {
    margin: auto;
}

.navbar-brand-logo > img {
    border-radius: 18px;
}

/* Estilos específicos para las tarjetas de rifas */
.rifas-carousel .blog-post-card-container {
    max-width: 600px !important;
}

.rifas-carousel .blog-post-card {
    padding: 35px !important;
    min-height: 550px;
}

.rifas-carousel .blog-post-title {
    font-size: 28px !important;
}

.rifas-carousel .blog-post-subtitle {
    font-size: 18px !important;
}

.rifas-carousel .blog-post-text {
    font-size: 14px !important;
    line-height: 1.8;
}

/* Centralizar y mantener tamaño grande */
.clients-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.rifas-carousel {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.rifas-carousel .owl-stage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rifas-carousel .owl-item {
    display: flex;
    justify-content: center;
}

/* Mantener tamaño grande de las tarjetas */
.rifas-carousel .blog-post-card-container {
    max-width: 650px !important;
    width: 100%;
    padding: 20px;
}

.rifas-carousel .blog-post-card {
    padding: 40px !important;
    min-height: 600px;
    width: 100%;
}

/* ============================================
   ESTILOS PARA MÉTODOS DE PAGO - MODERNOS
   ============================================ */

/* Grid de tarjetas de pago */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Tarjeta de pago individual */
.payment-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.2);
    border-color: #1e3a5f;
}

/* Logo del banco/servicio */
.payment-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 15px;
    min-height: 100px;
}

.payment-logo img {
    max-width: 120px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

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

/* Nombre del banco */
.payment-bank-name {
    color: #1e3a5f;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Tipo de cuenta */
.payment-type {
    color: #6c757d;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-align: center;
}

/* Container del número de cuenta */
.payment-number-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 18px 15px;
    margin: 15px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.payment-card:hover .payment-number-container {
    border-color: #1e3a5f;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Número de cuenta */
.payment-number {
    font-size: 20px;
    font-weight: 800;
    color: #1e3a5f;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    text-align: center;
    word-break: break-all;
    flex: 1;
    min-width: 0;
}

.payment-email {
    font-size: 16px;
    font-weight: 700;
    word-break: break-all;
}

/* Botones de copiar */
.btn-copy,
.btn-copy-small {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a5082 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
}

.btn-copy-small {
    padding: 6px 12px;
    font-size: 14px;
    min-width: 36px;
    min-height: 36px;
    margin-left: 8px;
}

.btn-copy:hover,
.btn-copy-small:hover {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 193, 7, 0.4);
}

.btn-copy:active,
.btn-copy-small:active {
    transform: translateY(0) scale(0.98);
}

/* Estado copiado */
.btn-copy.copied,
.btn-copy-small.copied {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    animation: copied-pulse 0.6s ease;
}

@keyframes copied-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.btn-copy.copied::after,
.btn-copy-small.copied::after {
    content: ' ✓';
    margin-left: 4px;
}

/* Información del titular */
.payment-owner {
    color: #6c757d;
    font-size: 14px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    text-align: center;
}

.payment-owner strong {
    color: #495057;
    font-weight: 700;
}

.payment-owner span {
    color: #1e3a5f;
    font-weight: 700;
    flex: 1;
    min-width: 0;
}

/* Sección de contacto de WhatsApp */
.learn-more-btn-section {
    text-align: center;
    margin: 40px 0;
}

.learn-more-btn.btn-invert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px !important;
    font-size: 16px !important;
}

.learn-more-btn.btn-invert i {
    font-size: 24px;
}

/* ============================================
   RESPONSIVE DESIGN PARA MÉTODOS DE PAGO
   ============================================ */

@media screen and (max-width: 991.98px) {
    .payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .payment-card {
        padding: 25px;
    }
    
    .payment-bank-name {
        font-size: 20px;
    }
    
    .payment-number {
        font-size: 18px;
    }
}

@media screen and (max-width: 767.98px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payment-card {
        padding: 25px 20px;
    }
    
    .payment-logo {
        min-height: 90px;
        padding: 12px;
    }
    
    .payment-logo img {
        max-width: 100px;
        max-height: 70px;
    }
    
    .payment-bank-name {
        font-size: 19px;
    }
    
    .payment-number {
        font-size: 16px;
    }
    
    .payment-email {
        font-size: 14px;
    }
    
    .payment-number-container {
        padding: 15px 12px;
    }
    
    .btn-copy {
        padding: 8px 14px;
        font-size: 15px;
    }
}

@media screen and (max-width: 575.98px) {
    .payment-card {
        padding: 20px 15px;
    }
    
    .payment-logo {
        min-height: 80px;
        padding: 10px;
    }
    
    .payment-logo img {
        max-width: 90px;
        max-height: 60px;
    }
    
    .payment-bank-name {
        font-size: 18px;
    }
    
    .payment-type {
        font-size: 11px;
    }
    
    .payment-number {
        font-size: 15px;
    }
    
    .payment-email {
        font-size: 13px;
    }
    
    .payment-number-container {
        padding: 12px 10px;
        gap: 10px;
    }
    
    .btn-copy {
        padding: 8px 12px;
        font-size: 14px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .btn-copy-small {
        padding: 6px 10px;
        font-size: 13px;
        min-width: 34px;
        min-height: 34px;
    }
    
    .payment-owner {
        font-size: 13px;
        flex-direction: column;
        gap: 5px;
    }
    
    .learn-more-btn.btn-invert {
        padding: 14px 28px !important;
        font-size: 15px !important;
    }
}

@media screen and (max-width: 374.98px) {
    .payment-number {
        font-size: 14px;
    }
    
    .payment-email {
        font-size: 12px;
    }
    
    .payment-bank-name {
        font-size: 17px;
    }
}

/* ============================================
   MEJORAS ADICIONALES
   ============================================ */

/* Tooltip mejorado para botones de copiar */
.btn-copy[title],
.btn-copy-small[title] {
    position: relative;
}

/* Animación suave para todos los elementos */
.payment-card * {
    transition: all 0.3s ease;
}

/* Focus states para accesibilidad */
.btn-copy:focus,
.btn-copy-small:focus {
    outline: 3px solid rgba(30, 58, 95, 0.3);
    outline-offset: 2px;
}

/* Estilos para impresión */
@media print {
    .payment-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .btn-copy,
    .btn-copy-small {
        display: none;
    }
}