/* ==========================================
   VARIABLES Y RESET
   ========================================== */
:root {
    /* Colores personalizados del diseño */
    --color-bg-hero: #ffffff;
    --color-titulo: #010326;
    --color-subtitulo: #b28534;
    --color-parrafo: #010326;
    --color-navbar-shadow-start: #ffffff;
    --color-navbar-shadow-end: #0c1c73;
    
    /* Otros colores base */
    --color-surface: #ffffff;
    --color-primary: #2563eb;
    --color-primary-soft: #60a5fa;
    --color-accent: #fbbf24;
    --color-text-main: #0f172a;
    --color-text-muted: #64748b;
    
    --radius-lg: 24px;
    --radius-pill: 999px;
    --transition-fast: 0.18s ease-out;
    --transition-normal: 0.28s ease-out;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--color-text-main);
    background: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
/* ==========================================
   NAVBAR - BLANCO PERLADO CON GRADIENTE SOMBRA
   ========================================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1180px;
    height: 72px;
    z-index: 1000;
    
    /* Fondo blanco perlado */
    background: #ffffff;
    
    border-radius: var(--radius-pill);
    border: 1px solid rgba(226, 232, 240, 0.4);
    
    /* Sombra con gradiente blanco a azul oscuro */
    box-shadow: 
        0 2px 8px rgba(255, 255, 255, 0.1),
        0 8px 24px rgba(12, 28, 115, 0.12),
        0 16px 48px rgba(12, 28, 115, 0.08);
    
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
/* Efecto de gradiente sombra inferior */
.navbar::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 8%;
    right: 8%;
    height: 16px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(12, 28, 115, 0.12) 100%);
    border-radius: 0 0 24px 24px;
    filter: blur(12px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}
.navbar .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.logo img {
    height: 40px;
    width: auto;
    display: block;
}
.menu {
    display: flex;
    gap: 6px;
    align-items: center;
}
.menu a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    position: relative;
    overflow: hidden;
    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        transform var(--transition-fast);
}
.menu a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
        rgba(178, 133, 52, 0.1),
        rgba(178, 133, 52, 0.05));
    opacity: 0;
    transition: opacity var(--transition-fast);
}
.menu a span {
    position: relative;
    z-index: 1;
}
.menu a:hover {
    color: var(--color-subtitulo);
    background: rgba(248, 250, 252, 0.9);
    transform: translateY(-1px);
}
.menu a:hover::before {
    opacity: 1;
}
.menu-icon {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--color-titulo);
    cursor: pointer;
}
.spacer {
    height: 110px;
}
/* Selector de país */
.nav-country-select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.nav-country {
    position: relative;
    margin-left: 10px;
}
.nav-country-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(178, 133, 52, 0.3);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-titulo);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(178, 133, 52, 0.15);
    transition:
        background var(--transition-fast),
        box-shadow var(--transition-fast),
        transform var(--transition-fast);
}
.nav-country-btn:hover {
    background: #fafaf9;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(178, 133, 52, 0.25);
    border-color: rgba(178, 133, 52, 0.4);
}
.flag-icon {
    width: 20px;
    height: 15px;
    display: inline-block;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
}
.nav-country-name {
    white-space: nowrap;
}
.nav-country-arrow {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}
.nav-country-dropdown {
    position: absolute;
    right: 0;
    top: 110%;
    min-width: 190px;
    padding: 6px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(226, 232, 240, 0.9);
    display: none;
    z-index: 999;
}
.nav-country-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--color-text-main);
    text-align: left;
    transition: background var(--transition-fast), transform var(--transition-fast);
}
.nav-country-option:hover {
    background: #fef3e2;
    transform: translateY(-1px);
}
/* ==========================================
   HERO SECTION - FONDO BLANCO LIMPIO
   ========================================== */
.hero {
    /* Fondo blanco perlado limpio */
    background: #ffffff;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
/* Efecto sutil de luz */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 50%, rgba(250, 248, 245, 0.4) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}
.hero .container {
    position: relative;
    z-index: 1;
}
.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}
/* ==========================================
   TEXTOS DEL HERO
   ========================================== */
.hero-text {
    padding-right: 20px;
}
.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #010326;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.hero-text .subtitle {
    font-size: 1.35rem;
    font-weight: 600;
    color: #b28534;
    margin-bottom: 24px;
    line-height: 1.3;
}
.hero-text p {
    font-size: 1.05rem;
    color: #010326;
    margin-bottom: 28px;
    max-width: 540px;
    line-height: 1.7;
}
.hero-text .hero-advisor {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 20px;
}
/* ==========================================
   BOTONES DEL HERO
   ========================================== */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}
.btn-purchase,
.btn-whatsapp {
    padding: 14px 32px;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast),
        color var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    white-space: nowrap;
}
/* Botón Comprar - Dorado sólido */
.btn-purchase {
    background: linear-gradient(135deg, #b28534 0%, #c99741 100%);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(178, 133, 52, 0.3);
}
.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(178, 133, 52, 0.4);
    background: linear-gradient(135deg, #c99741 0%, #d4a853 100%);
}
/* Botón WhatsApp - Borde dorado */
.btn-whatsapp {
    background: #ffffff;
    color: #010326;
    border: 2px solid #b28534;
    box-shadow: 0 8px 20px rgba(178, 133, 52, 0.2);
}
.btn-whatsapp:hover {
    background: #fefdfb;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(178, 133, 52, 0.3);
    border-color: #c99741;
}
.whatsapp-icon {
    width: 20px;
    height: 20px;
}
/* ==========================================
   SELLOS
   ========================================== */
.seals {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}
.seal-image {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    padding: 12px;
    background: #ffffff;
    box-shadow:
        0 8px 24px rgba(1, 3, 38, 0.1),
        0 0 0 1px rgba(226, 232, 240, 0.6);
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.seal-image:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 32px rgba(1, 3, 38, 0.15),
        0 0 0 1px rgba(178, 133, 52, 0.3);
}
/* ==========================================
   RESPONSIVE NAVBAR
   ========================================== */
@media (max-width: 1200px) {
    .navbar {
        height: 70px;
    }
    .spacer {
        height: 90px;
    }
    .navbar .container {
        padding: 0 16px;
    }
    .menu {
        position: absolute;
        top: 70px;
        right: 16px;
        left: 16px;
        background: rgba(1, 3, 38, 0.98);
        border-radius: 18px;
        padding: 10px 0;
        display: none;
        flex-direction: column;
        gap: 4px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    }
    .menu a {
        color: #e5e7eb;
        font-size: 0.9rem;
        padding: 12px 20px;
        border-radius: 0;
    }
    .menu a:hover {
        background: rgba(178, 133, 52, 0.2);
        color: #ffffff;
    }
    .menu-icon {
        display: block;
    }
    .menu.open {
        display: flex;
    }}
@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    .spacer {
        height: 90px;
    }
    .navbar .container {
        padding: 0 16px;
    }
    .menu {
        position: absolute;
        top: 70px;
        right: 16px;
        left: 16px;
        background: rgba(1, 3, 38, 0.98);
        border-radius: 18px;
        padding: 10px 0;
        display: none;
        flex-direction: column;
        gap: 4px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    }
    .menu a {
        color: #e5e7eb;
        font-size: 0.9rem;
        padding: 12px 20px;
        border-radius: 0;
    }
    .menu a:hover {
        background: rgba(178, 133, 52, 0.2);
        color: #ffffff;
    }
    .menu-icon {
        display: block;
    }
    .menu.open {
        display: flex;
    }
}
/* ==========================================
   RESPONSIVE HERO
   ========================================== */
@media (max-width: 992px) {
    .hero {
        padding: 60px 0 60px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-text {
        padding-right: 0;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-text .subtitle {
        font-size: 1.2rem;
    }
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }
    .action-buttons {
        justify-content: center;
    }
    .product-image-container {
        max-width: 320px;
        height: 380px;
    }
}
@media (max-width: 600px) {
    .hero {
        padding: 48px 0 48px;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text .subtitle {
        font-size: 1.1rem;
    }
    .hero-text p {
        font-size: 0.95rem;
    }
    .btn-purchase,
    .btn-whatsapp {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    .product-image-container {
        max-width: 280px;
        height: 340px;
    }
    .seal-image {
        width: 48px;
        height: 48px;
    }
}
/* ==========================================
   CATEGORÍAS DE PRODUCTOS - DISEÑO LIMPIO
   ========================================== */
.categorias-section {
    padding: 80px 0 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
.categorias-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(250, 248, 245, 0.5) 0%, transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}
.categorias-section .container {
    position: relative;
    z-index: 1;
}
.cat-h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #010326;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}
/* GRID DE CATEGORÍAS */
.categorias-moderna {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
/* TARJETA DE CATEGORÍA */
.cat-card {
    position: relative;
    padding: 32px 24px 28px;
    border-radius: 28px;
    background: #ffffff;
    border: 1.5px solid rgba(1, 3, 38, 0.08);
    
    /* Sombra sutil pero visible */
    box-shadow:
        0 4px 12px rgba(1, 3, 38, 0.06),
        0 12px 32px rgba(1, 3, 38, 0.08),
        0 20px 48px rgba(1, 3, 38, 0.04);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}
.cat-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 20px rgba(1, 3, 38, 0.08),
        0 16px 40px rgba(1, 3, 38, 0.12),
        0 28px 60px rgba(178, 133, 52, 0.08);
    border-color: rgba(178, 133, 52, 0.2);
}
/* CONTENEDOR DEL ICONO */
.cat-bg {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 22px;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 12px rgba(1, 3, 38, 0.08),
        0 0 0 1px rgba(226, 232, 240, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease;
}
.cat-card:hover .cat-bg {
    transform: scale(1.05);
}
/* Efecto de brillo al hover */
.cat-bg::after {
    content: "";
    position: absolute;
    inset: -50%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.8), transparent 60%);
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.cat-card:hover .cat-bg::after {
    opacity: 1;
    transform: translateX(100%);
}
/* ICONO */
.cat-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.cat-card:hover .cat-icon img {
    transform: scale(1.1) translateY(-2px);
}
/* TÍTULO DE LA CATEGORÍA */
.cat-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #010326;
    text-align: center;
    margin-top: 8px;
    line-height: 1.3;
}
/* BOTÓN VER PRODUCTOS */
.cat-btn {
    margin-top: 8px;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1.5px solid #b28534;
    background: transparent;
    color: #b28534;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
    white-space: nowrap;
    text-decoration: none;
}
.cat-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #b28534 0%, #c99741 100%);
    color: #ffffff;
    border-color: #b28534;
    box-shadow: 0 8px 20px rgba(178, 133, 52, 0.3);
}
/* RESPONSIVE */
@media (max-width: 1024px) {
    .categorias-section {
        padding: 70px 0 70px;
    }
    .categorias-moderna {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
    .cat-h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
}
@media (max-width: 640px) {
    .categorias-section {
        padding: 60px 0 60px;
    }
    .categorias-moderna {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }
    .cat-h2 {
        font-size: 1.9rem;
        margin-bottom: 36px;
    }
    .cat-card {
        padding: 28px 20px 24px;
    }
    .cat-bg {
        width: 90px;
        height: 90px;
    }
    .cat-icon img {
        width: 54px;
        height: 54px;
    }
    .cat-title {
        font-size: 1rem;
    }
    .cat-btn {
        padding: 9px 20px;
        font-size: 0.85rem;
    }
}
/* ==========================================
   PRODUCTOS TOP - DISEÑO ELEGANTE OSCURO
   ========================================== */
.productos-top {
    background: #010326;
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}
/* Efectos de luz sutiles en el fondo */
.productos-top::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 100%;
    pointer-events: none;
}
.productos-top::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(178, 133, 52, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.productos-top .container {
    position: relative;
    z-index: 1;
}
/* TÍTULO CON GRADIENTE DORADO */
.productos-top h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4a853 0%, #b28534 50%, #f4e4c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(178, 133, 52, 0.3);
}
/* GRID DE PRODUCTOS */
.productos-lista {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
/* CARD DEL PRODUCTO - CON OVERFLOW VISIBLE */
.producto-card {
    position: relative;
    padding: 28px 22px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(178, 133, 52, 0.2);
    
    /* Glassmorphism sutil */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 16px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    
    display: flex;
    flex-direction: column;
    gap: 16px;
    
    /* Overflow visible para que la imagen pueda salirse */
    overflow: visible;
    
    /* Transición suave para el efecto de agrandamiento */
    transition:
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
    
    cursor: pointer;
}
.producto-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(178, 133, 52, 0.3) 50%, 
        transparent 100%);
}
/* HOVER - EFECTO DE AGRANDAMIENTO PROMINENTE DEL CARD */
.producto-card:hover {
    transform: translateY(-12px) scale(1.08);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(178, 133, 52, 0.5);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 30px 80px rgba(178, 133, 52, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    z-index: 10;
}
/* CONTENEDOR DE IMAGEN DEL PRODUCTO */
.producto-img-box-grande {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    border-radius: 28px;
    background: linear-gradient(145deg, 
        rgba(178, 133, 52, 0.08) 0%, 
        rgba(1, 3, 38, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.5),
        inset 0 -2px 8px rgba(178, 133, 52, 0.2),
        0 0 0 1px rgba(178, 133, 52, 0.15);
    position: relative;
    
    /* IMPORTANTE: Overflow hidden para mantener el brillo dentro */
    overflow: hidden;
    
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
/* Efecto de brillo dentro del contenedor */
.producto-img-box-grande::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    border-radius: 28px;
    z-index: 1;
}
.producto-card:hover .producto-img-box-grande {
    transform: scale(1.1);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.6),
        inset 0 -2px 12px rgba(178, 133, 52, 0.3),
        0 0 0 1px rgba(178, 133, 52, 0.3);
}
.producto-card:hover .producto-img-box-grande::after {
    transform: translateX(100%);
}
/* IMAGEN DEL PRODUCTO - CON POSITION ABSOLUTE PARA SALIRSE */
.producto-img-box-grande img {
    width: 90px;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    
    /* Position absolute para que pueda salirse del contenedor */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* Z-index alto para estar sobre el brillo */
    z-index: 10;
    
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    
    /* Transición suave */
    transition: 
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        filter 0.4s ease;
}
/* HOVER EN LA IMAGEN - CRECE MODERADAMENTE */
.producto-card:hover .producto-img-box-grande img {
    /* Escala moderada: 1.35 veces su tamaño + elevación */
    transform: translate(-50%, -50%) translateY(-8px) scale(1.35);
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.7));
}
/* INFORMACIÓN DEL PRODUCTO */
.prod-info {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}
.producto-card:hover .prod-info {
    transform: translateY(-2px);
}
.prod-nombre {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.producto-card:hover .prod-nombre {
    color: #f4e4c1;
}
.prod-descripcion {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.5;
    transition: color 0.3s ease;
}
.producto-card:hover .prod-descripcion {
    color: rgba(255, 255, 255, 0.9);
}
/* PRECIOS */
.prod-precios {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.prod-precio-old {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.producto-card:hover .prod-precio-old {
    color: rgba(255, 255, 255, 0.5);
}
.prod-precio {
    color: #4ade80;
    font-size: 1.3rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(74, 222, 128, 0.3);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}
.producto-card:hover .prod-precio {
    transform: scale(1.05);
    text-shadow: 0 4px 20px rgba(74, 222, 128, 0.5);
}
.prod-descuento {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #b28534 0%, #d4a853 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(178, 133, 52, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.producto-card:hover .prod-descuento {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(178, 133, 52, 0.6);
}
/* BOTONES */
.prod-botones {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
}
.btn.comprar-btn,
.btn.asesor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}
/* Botón Comprar - Dorado */
.btn.comprar-btn {
    background: linear-gradient(135deg, #b28534 0%, #d4a853 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(178, 133, 52, 0.4);
}
.btn.comprar-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, #c99741 0%, #e5be6a 100%);
    box-shadow: 0 12px 28px rgba(178, 133, 52, 0.6);
}
/* Botón Asesoría - Verde */
.btn.asesor-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}
.btn.asesor-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.5);
}
.whatsapp-icon-btn {
    width: 16px;
    height: 16px;
}
/* RESPONSIVE */
@media (max-width: 1024px) {
    .productos-top {
        padding: 70px 0 80px;
    }
    .productos-top h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    .productos-lista {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    
    .producto-card:hover {
        transform: translateY(-10px) scale(1.06);
    }
    
    .producto-card:hover .producto-img-box-grande img {
        transform: translate(-50%, -50%) translateY(-6px) scale(1.25);
    }
}
@media (max-width: 640px) {
    .productos-top {
        padding: 60px 0 70px;
    }
    .productos-top h2 {
        font-size: 1.9rem;
        margin-bottom: 36px;
    }
    .productos-lista {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }
    .producto-card {
        padding: 24px 18px 22px;
    }
    
    .producto-card:hover {
        transform: translateY(-8px) scale(1.04);
    }
    
    .producto-card:hover .producto-img-box-grande img {
        transform: translate(-50%, -50%) translateY(-5px) scale(1.2);
    }
    .producto-img-box-grande {
        width: 120px;
        height: 120px;
    }
    .producto-img-box-grande img {
        width: 76px;
        max-height: 76px;
    }
    .prod-nombre {
        font-size: 1rem;
    }
    .prod-descripcion {
        font-size: 0.85rem;
    }
    .prod-precio {
        font-size: 1.2rem;
    }
    .btn.comprar-btn,
    .btn.asesor-btn {
        padding: 9px 16px;
        font-size: 0.82rem;
    }
}
/* ==========================================
   SECCIÓN VIDEO – ¿CÓMO FUNCIONA?
   ========================================== */
.transferfactor-funciona {
    background: #ffffff;
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}
/* Efecto de luz sutil en el fondo */
.transferfactor-funciona::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(250, 248, 245, 0.5) 0%, transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}
.funciona-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
/* TÍTULO */
.funciona-titulo {
    font-size: 2.3rem;
    font-weight: 800;
    color: #010326;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
/* SUBTÍTULO */
.funciona-subtitulo {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: #b28534;
    margin-top: 8px;
    text-align: center;
}
/* CARD DEL VIDEO */
.funciona-video-area {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    margin-top: 40px;
    box-shadow:
        0 4px 12px rgba(1, 3, 38, 0.06),
        0 12px 32px rgba(1, 3, 38, 0.08),
        0 20px 48px rgba(1, 3, 38, 0.04);
    border: 1.5px solid rgba(1, 3, 38, 0.08);
    position: relative;
    overflow: hidden;
    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}
.funciona-video-area:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 20px rgba(1, 3, 38, 0.08),
        0 16px 40px rgba(1, 3, 38, 0.12),
        0 28px 60px rgba(178, 133, 52, 0.08);
    border-color: rgba(178, 133, 52, 0.2);
}
/* Brillo sutil en la card */
.funciona-video-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(178, 133, 52, 0.3) 50%, 
        transparent 100%);
}
/* ==========================================
   SECCIÓN VIDEO – ¿CÓMO FUNCIONA?
   ========================================== */
.transferfactor-funciona {
    background: #ffffff;
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}
/* Efecto de luz sutil en el fondo */
.transferfactor-funciona::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(250, 248, 245, 0.5) 0%, transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}
.funciona-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
/* TÍTULO */
.funciona-titulo {
    font-size: 2.3rem;
    font-weight: 800;
    color: #010326;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
/* SUBTÍTULO */
.funciona-subtitulo {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: #b28534;
    margin-top: 8px;
    text-align: center;
}
/* CARD DEL VIDEO */
.funciona-video-area {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    margin-top: 40px;
    box-shadow:
        0 4px 12px rgba(1, 3, 38, 0.06),
        0 12px 32px rgba(1, 3, 38, 0.08),
        0 20px 48px rgba(1, 3, 38, 0.04);
    border: 1.5px solid rgba(1, 3, 38, 0.08);
    position: relative;
    overflow: hidden;
    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}
.funciona-video-area:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 20px rgba(1, 3, 38, 0.08),
        0 16px 40px rgba(1, 3, 38, 0.12),
        0 28px 60px rgba(178, 133, 52, 0.08);
    border-color: rgba(178, 133, 52, 0.2);
}
/* Brillo sutil en la card */
.funciona-video-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(178, 133, 52, 0.3) 50%, 
        transparent 100%);
    z-index: 1;
}
/* VIDEO IFRAME */
.funciona-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    border: none;
    display: block;
    background: transparent;
    box-shadow: none;
    transition: transform 0.3s ease;
}
.funciona-video-area:hover .funciona-video {
    transform: scale(1.005);
}
/* Estilos para el poster del video */
.funciona-video[poster] {
    object-fit: cover;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .transferfactor-funciona {
        padding: 60px 0 64px;
    }
    .funciona-container {
        max-width: 700px;
        padding: 0 20px;
    }
    .funciona-titulo {
        font-size: 1.9rem;
        margin-bottom: 10px;
    }
    .funciona-subtitulo {
        font-size: 1.05rem;
        margin-top: 6px;
    }
    .funciona-video-area {
        border-radius: 20px;
        margin-top: 32px;
    }
    .funciona-video {
        border-radius: 20px;
    }
}
@media (max-width: 480px) {
    .transferfactor-funciona {
        padding: 50px 0 56px;
    }
    .funciona-container {
        max-width: 100%;
        padding: 0 16px;
    }
    .funciona-titulo {
        font-size: 1.7rem;
    }
    .funciona-subtitulo {
        font-size: 0.95rem;
    }
    .funciona-video-area {
        border-radius: 18px;
        margin-top: 28px;
    }
    .funciona-video {
        border-radius: 18px;
    }
}
/* ==========================================
   SECCIÓN BENEFICIOS 4LIFE
   ========================================== */
.beneficios-4life-glass {
    background: #ffffff;
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}
/* Efecto de luz sutil en el fondo */
.beneficios-4life-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(250, 248, 245, 0.5) 0%, transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}
.beneficios-glass-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
/* TÍTULO */
.beneficios-glass-titulo {
    font-size: 2.3rem;
    font-weight: 800;
    color: #010326;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
/* SUBTÍTULO */
.beneficios-glass-subtitulo {
    font-size: 1.15rem;
    font-weight: 600;
    color: #b28534;
    text-align: center;
    margin-bottom: 40px;
}
/* GRID DE BENEFICIOS */
.beneficios-glass-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
/* TARJETAS DE BENEFICIOS */
.beneficio-glass-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 18px;
    text-align: center;
    border: 1.5px solid rgba(1, 3, 38, 0.08);
    box-shadow:
        0 4px 12px rgba(1, 3, 38, 0.06),
        0 12px 32px rgba(1, 3, 38, 0.08),
        0 20px 48px rgba(1, 3, 38, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}
.beneficio-glass-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 8px 20px rgba(1, 3, 38, 0.08),
        0 16px 40px rgba(1, 3, 38, 0.12),
        0 28px 60px rgba(178, 133, 52, 0.08);
    border-color: rgba(178, 133, 52, 0.2);
}
/* CONTENEDOR DEL ICONO */
.beneficio-glass-img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 14px;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 12px rgba(1, 3, 38, 0.08),
        0 0 0 1px rgba(226, 232, 240, 0.5);
    transition: transform 0.3s ease;
}
.beneficio-glass-card:hover .beneficio-glass-img {
    transform: scale(1.05);
}
.beneficio-glass-img img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.beneficio-glass-card:hover .beneficio-glass-img img {
    transform: scale(1.08) translateY(-2px);
}
/* TEXTO */
.beneficio-glass-head {
    font-size: 0.95rem;
    font-weight: 700;
    color: #010326;
    margin-bottom: 8px;
    line-height: 1.3;
}
.beneficio-glass-text {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}
/* BOTÓN FINAL - CON ESPECIFICIDAD ALTA */
.btn-container-beneficios {
    text-align: center;
    margin-top: 50px;
}
/* Selector más específico para sobreescribir otros estilos */
.beneficios-4life-glass .btn-container-beneficios .btn-beneficios,
a.btn-beneficios {
    background: #010326 !important;
    color: #ffffff !important;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    box-shadow: 0 12px 28px rgba(1, 3, 38, 0.3);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}
/* Efecto de brillo */
.btn-beneficios::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    border-radius: 999px;
}
.beneficios-4life-glass .btn-container-beneficios .btn-beneficios:hover,
a.btn-beneficios:hover {
    transform: translateY(-2px) !important;
    background: #0a1854 !important;
    box-shadow: 0 16px 36px rgba(1, 3, 38, 0.5);
}
.btn-beneficios:hover::after {
    transform: translateX(100%);
}
/* RESPONSIVE */
@media (max-width: 1024px) {
    .beneficios-glass-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
    .beneficios-4life-glass {
        padding: 70px 0 70px;
    }
    .beneficios-glass-titulo {
        font-size: 2.1rem;
    }
    .beneficios-glass-subtitulo {
        font-size: 1.08rem;
        margin-bottom: 36px;
    }
    .btn-container-beneficios {
        margin-top: 44px;
    }
}
@media (max-width: 640px) {
    .beneficios-glass-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }
    .beneficios-4life-glass {
        padding: 60px 0 60px;
    }
    .beneficios-glass-container {
        padding: 0 20px;
    }
    .beneficios-glass-titulo {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    .beneficios-glass-subtitulo {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    .beneficio-glass-card {
        padding: 20px 16px;
    }
    .beneficio-glass-img {
        width: 72px;
        height: 72px;
    }
    .beneficio-glass-img img {
        width: 44px;
        height: 44px;
    }
    .beneficio-glass-head {
        font-size: 0.92rem;
    }
    .beneficio-glass-text {
        font-size: 0.82rem;
    }
    .btn-container-beneficios {
        margin-top: 40px;
    }
    .btn-beneficios {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}
/* ==========================================
   TESTIMONIOS – GRID GLASSMORPHISM
   ========================================== */
.testimonios-grid-section {
    background: #010326;
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}
/* Efectos de luz sutiles en el fondo */
.testimonios-grid-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(178, 133, 52, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.testimonios-grid-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(178, 133, 52, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.testimonios-grid-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
/* TÍTULO */
.testimonios-grid-titulo {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4a853 0%, #b28534 50%, #f4e4c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(178, 133, 52, 0.3);
}
/* GRID DE TESTIMONIOS */
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
/* TARJETA DE TESTIMONIO */
.testi-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 24px;
    border: 1.5px solid rgba(178, 133, 52, 0.2);
    
    /* Glassmorphism */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 16px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
    
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.testi-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(178, 133, 52, 0.3) 50%, 
        transparent 100%);
}
.testi-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(178, 133, 52, 0.4);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.4),
        0 20px 56px rgba(178, 133, 52, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
/* HEADER DEL TESTIMONIO */
.testi-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}
/* AVATAR */
.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b28534 0%, #d4a853 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(178, 133, 52, 0.4);
    flex-shrink: 0;
}
/* META INFO */
.testi-meta {
    flex: 1;
    min-width: 0;
}
.testi-nombre {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.testi-pais {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 4px;
}
/* ESTRELLAS */
.testi-estrellas {
    display: flex;
    gap: 3px;
    font-size: 0.9rem;
}
.estrella-activa {
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}
.estrella-inactiva {
    color: rgba(255, 255, 255, 0.2);
}
/* CHIPS DE INFORMACIÓN */
.testi-chip {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(178, 133, 52, 0.15);
    border: 1px solid rgba(178, 133, 52, 0.3);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #f4e4c1;
    margin-bottom: 4px;
}
.testi-producto {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4ade80;
}
/* TEXTO DEL TESTIMONIO */
.testi-texto {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}
/* PAGINACIÓN */
.testi-paginacion {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}
.testi-page-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(178, 133, 52, 0.2);
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}
.testi-page-btn:hover {
    transform: translateY(-2px);
    background: rgba(178, 133, 52, 0.15);
    border-color: rgba(178, 133, 52, 0.4);
}
.testi-page-indicador {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f4e4c1;
}
/* RESPONSIVE */
@media (max-width: 1024px) {
    .testimonios-grid-section {
        padding: 70px 0 80px;
    }
    .testimonios-grid-titulo {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    .testimonios-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    .testi-paginacion {
        margin-top: 44px;
    }
}
@media (max-width: 640px) {
    .testimonios-grid-section {
        padding: 60px 0 70px;
    }
    .testimonios-grid-section .container {
        padding: 0 20px;
    }
    .testimonios-grid-titulo {
        font-size: 1.9rem;
        margin-bottom: 36px;
    }
    .testimonios-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }
    .testi-card {
        padding: 20px;
    }
    .testi-card-header {
        gap: 12px;
    }
    .testi-avatar {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .testi-nombre {
        font-size: 0.95rem;
    }
    .testi-pais {
        font-size: 0.82rem;
    }
    .testi-texto {
        font-size: 0.88rem;
    }
    .testi-paginacion {
        margin-top: 40px;
        gap: 16px;
    }
    .testi-page-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .testi-page-indicador {
        font-size: 0.9rem;
    }
}
/* ==========================================
   SECCIÓN SELECTOR DE PAÍS - DISEÑO ELEGANTE
   ========================================== */
.selector-pais {
  padding: 60px 0 80px;
  background: #ffffff;
}
.selector-pais .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
/* TÍTULO */
.selector-pais h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #010326;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: -0.02em;
}
/* SUBTÍTULO */
.selector-pais > .container > p {
  margin: 0 0 32px;
  color: #64748b;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 500;
}
/* INPUT DE BÚSQUEDA */
.input-busqueda-pais {
  width: 100%;
  max-width: 500px;
  padding: 14px 16px 14px 48px;
  border-radius: 999px;
  border: 1.5px solid rgba(1, 3, 38, 0.12);
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='16.65' y1='16.65' x2='21' y2='21'/%3E%3C/svg%3E") no-repeat 16px center;
  outline: none;
  font-size: 0.98rem;
  color: #010326;
  box-shadow: 
    0 4px 12px rgba(1, 3, 38, 0.06),
    0 12px 32px rgba(1, 3, 38, 0.08);
  margin: 0 auto 40px;
  display: block;
  transition: 
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.input-busqueda-pais::placeholder {
  color: #94a3b8;
}
.input-busqueda-pais:focus {
  border-color: #b28534;
  box-shadow: 
    0 8px 20px rgba(178, 133, 52, 0.15),
    0 0 0 3px rgba(178, 133, 52, 0.1);
}
.continente-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 26px 22px;
  margin-bottom: 24px;
  box-shadow: 
    0 4px 12px rgba(1, 3, 38, 0.06),
    0 12px 32px rgba(1, 3, 38, 0.08);
  border: 1.5px solid rgba(1, 3, 38, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.continente-box:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 20px rgba(1, 3, 38, 0.1),
    0 16px 40px rgba(1, 3, 38, 0.12);
  border-color: rgba(178, 133, 52, 0.2);
}
.continente-box h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #010326;
  display: flex;
  align-items: center;
  gap: 10px;
}
.continente-box h3::before {
  content: '🌍';
  font-size: 1.3rem;
}
.continente-box hr {
  border: none;
  border-top: 1.5px solid rgba(1, 3, 38, 0.08);
  margin: 14px 0 18px;
}
.paises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
/* BOTÓN DE PAÍS */
.pais-link,
.pais-item {
  padding: 11px 16px;
  border-radius: 12px;
  background: #f8fafc;
  box-shadow: 0 2px 6px rgba(1, 3, 38, 0.08);
  font-weight: 600;
  color: #010326;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid rgba(1, 3, 38, 0.08);
  outline: none;
  cursor: pointer;
  transition: 
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.pais-link:hover,
.pais-item:hover {
  background: #fef9f0;
  color: #010326;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(178, 133, 52, 0.2);
  border-color: rgba(178, 133, 52, 0.3);
}
.flag-icon {
  width: 24px;
  height: 18px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(1, 3, 38, 0.1);
  display: inline-block;
  object-fit: cover;
  flex-shrink: 0;
}
.pais-sin-resultados {
  color: #94a3b8;
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
  padding: 20px;
}
.btn-no-pais {
  display: block;
  padding: 12px 40px;
  border-radius: 12px;
  background: #010326;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 20px rgba(1, 3, 38, 0.25);
  transition: 
    transform 0.25s ease, 
    box-shadow 0.25s ease,
    background 0.25s ease;
  margin: 20px auto 0;
  max-width: 100%;
  width: auto;
  min-width: 400px;
  grid-column: 1 / -1;
}
.btn-no-pais:hover {
  transform: translateY(-2px);
  background: #0a1854;
  box-shadow: 0 12px 28px rgba(1, 3, 38, 0.35);
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .btn-no-pais {
    padding: 11px 32px;
    font-size: 0.95rem;
    min-width: 320px;
    margin: 16px auto 0;
  }
}
@media (max-width: 480px) {
  .btn-no-pais {
    padding: 10px 24px;
    font-size: 0.88rem;
    min-width: 0;
    width: 100%;
    margin: 14px auto 0;
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .selector-pais {
    padding: 50px 0 70px;
  }
  .selector-pais h2 {
    font-size: 2rem;
  }
  .selector-pais > .container > p {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  .input-busqueda-pais {
    padding: 12px 14px 12px 44px;
    background-position: 14px center;
    margin-bottom: 32px;
  }
  .continente-box {
    padding: 20px 20px 18px;
    margin-bottom: 20px;
  }
  .continente-box h3 {
    font-size: 1.05rem;
  }
  .paises-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  .pais-link,
  .pais-item {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .selector-pais {
    padding: 40px 0 60px;
  }
  .selector-pais .container {
    padding: 0 20px;
  }
  .selector-pais h2 {
    font-size: 1.8rem;
  }
  .selector-pais > .container > p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .input-busqueda-pais {
    max-width: 100%;
    padding: 11px 12px 11px 42px;
    font-size: 0.9rem;
    margin-bottom: 28px;
  }
  .continente-box {
    padding: 18px 16px 16px;
    margin-bottom: 18px;
  }
  .continente-box h3 {
    font-size: 1rem;
  }
  .paises-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .pais-link,
  .pais-item {
    padding: 9px 12px;
    font-size: 0.88rem;
  }
  .flag-icon {
    width: 22px;
    height: 16px;
  }
}
/*SECCIÓN CONTACTO / FOOTER - DISEÑO ELEGANTE*/
.contacto-footer {
    background: #ffffff;
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}
/* Efecto de luz sutil en el fondo */
.contacto-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(250, 248, 245, 0.5) 0%, transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}
.contacto-footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.contacto-titulo {
    font-size: 2.3rem;
    font-weight: 800;
    color: #010547;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.contacto-subtitulo {
    font-size: 1.1rem;
    font-weight: 500;
    color: #6383b0;
    text-align: center;
    margin-bottom: 40px;
}
.redes-sociales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 60px;
}
/* TARJETA DE RED SOCIAL */
.red-social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 8px;
    border-radius: 16px;
    text-decoration: none;
    border: 1.5px solid rgba(1, 3, 38, 0.08);
    box-shadow:
        0 4px 12px rgba(1, 3, 38, 0.06),
        0 12px 32px rgba(1, 3, 38, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
/* Gradiente de fondo dinámico */
.red-social-item::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
    transition: opacity 0.3s ease;
}
.red-social-item:hover {
    transform: translateY(-6px);
    box-shadow:
        0 8px 20px rgba(1, 3, 38, 0.1),
        0 16px 40px rgba(1, 3, 38, 0.12);
    border-color: rgba(1, 3, 38, 0.15);
}
.red-social-item:hover::before {
    opacity: 0.15;
}
/* ICONO */
.red-social-item i,
.red-icono-img {
    font-size: 2rem;
    color: #010547;
    transition: transform 0.3s ease;
}
.red-icono-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.red-social-item:hover i,
.red-social-item:hover .red-icono-img {
    transform: scale(1.1) translateY(-2px);
}
.red-nombre {
    font-size: 0.9rem;
    font-weight: 600;
    color: #b88f34;
    transition: color 0.3s ease;
}
.red-social-item:hover .red-nombre {
    color: #1e293b;
}
.sin-redes {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    padding: 40px 20px;
}
.footer-copyright {
    background: #010326;
    padding: 50px 0 30px;
    margin-top: 0;
    position: relative;
}
.footer-copyright .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}
.disclaimer-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(178, 133, 52, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.disclaimer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #b88f34;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.disclaimer-title::before {
    content: "⚠";
    font-size: 1.2rem;
}
.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}
.disclaimer-text:last-child {
    margin-bottom: 0;
}
.powered-by {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(178, 133, 52, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgb(255, 255, 255);
}
.jbtech-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(178, 133, 52, 0.2);
    color: #010326;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
        height: 44px;
}
.jbtech-link:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #c99741 0%, #e5be6a 100%);
    border-color: rgba(178, 133, 52, 0.3);
    color: #ffffff;
}
.jbtech-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.jbtech-text {
    font-weight: 600;
    color: #010326;
    font-size: 0.95rem;
}
.jbtech-text:hover {
    color: #ffffff;
}
@media (max-width: 768px) {
    .contacto-footer {
        padding: 60px 0 0;
    }
    .contacto-titulo {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    .contacto-subtitulo {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    .redes-sociales-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 14px;
        margin-bottom: 50px;
    }
    .red-social-item {
        padding: 20px 14px;
    }
    .red-social-item i,
    .red-icono-img {
        font-size: 1.8rem;
    }
    .red-icono-img {
        width: 28px;
        height: 28px;
    }
    .red-nombre {
        font-size: 0.85rem;
    }
    .footer-copyright {
        padding: 40px 0 24px;
    }
    .disclaimer-box {
        padding: 20px;
        margin-bottom: 28px;
    }
    .disclaimer-title {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    .disclaimer-text {
        font-size: 0.82rem;
    }
    .powered-by {
        font-size: 0.85rem;
        padding-top: 20px;
    }
}
@media (max-width: 480px) {
    .contacto-footer {
        padding: 50px 0 0;
    }
    .contacto-footer .container {
        padding: 0 20px;
    }
    .contacto-titulo {
        font-size: 1.8rem;
    }
    .contacto-subtitulo {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }
    .redes-sociales-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }
    .red-social-item {
        padding: 18px 12px;
    }
    .red-social-item i,
    .red-icono-img {
        font-size: 1.6rem;
    }
    .red-icono-img {
        width: 26px;
        height: 26px;
    }
    .red-nombre {
        font-size: 0.8rem;
    }
    .footer-copyright {
        padding: 36px 0 20px;
    }
    .footer-copyright .container {
        padding: 0 20px;
    }
    .disclaimer-box {
        padding: 18px;
        margin-bottom: 24px;
    }
    .disclaimer-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    .disclaimer-text {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    .powered-by {
        font-size: 0.8rem;
        padding-top: 18px;
        flex-direction: column;
        gap: 4px;
    }
    .jbtech-link {
        padding: 6px 14px;
    }
    .jbtech-logo {
        width: 20px;
        height: 20px;
    }
    .jbtech-text {
        font-size: 0.9rem;
    }
}
/*SPLINE 3D - INTEGRACIÓN COMPLETA*/
/* Sobreescribir contenedor para soportar ambos */
.product-image-container {
  position: relative;
  width: 420px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: transparent;
  border-radius: 30px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
/* Aplicar fondo solo para imágenes */
.product-image-container:has(.product-image) {
  background: #ffffff;
  box-shadow:
    0 22px 60px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(226, 232, 240, 0.9);
  overflow: hidden;
}
.product-image-container:has(.product-image)::before {
  content: "";
  position: absolute;
  inset: 12px 18px auto;
  height: 30%;
  background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.28), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}
/* Hover solo para imágenes */
.product-image-container:has(.product-image):hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(209, 213, 219, 0.9);
}
/* Spline viewer */
.product-spline {
  width: 180%;
  height: 180%;
  border: none;
  outline: none;
  background: transparent !important;
  pointer-events: auto;
  touch-action: pan-y;
  transform: scale(0.72);
  transform-origin: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -65%;
  margin-top: -115%;
}
.product-image {
  max-width: 70%;
  height: auto;
  transform: translateY(4px);
  transition: transform 0.35s ease;
}
.product-image-container:hover .product-image {
  transform: translateY(-4px) scale(1.03);
}
/* Ocultar logo Spline - FORZADO */
spline-viewer::part(logo) {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
spline-viewer::part(*) {
  display: none !important;
}
spline-viewer a[target="_blank"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
spline-viewer a,
spline-viewer [class*="logo"],
spline-viewer [class*="Logo"],
spline-viewer [id*="logo"],
spline-viewer svg[height="32"],
spline-viewer svg[height="24"] {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
}
spline-viewer {
  background: transparent !important;
}
/* Responsive - 3D MÁS ARRIBA EN MÓVIL */
@media (max-width: 1200px) {
  .product-image-container {
    width: 300px;
    height: 500px;
  }
  .product-spline {
    transform: scale(0.80);
    margin-top: -160%;
    margin-left: -90%;
  }
}
@media (max-width: 992px) {
  .product-image-container {
    width: 320px;
    height: 480px;
  }
  .product-spline {
    transform: scale(0.58);
    margin-top: -140%;
    margin-left: -90%;
  }
}
@media (max-width: 640px) {
  .product-image-container {
    width: 300px;
    height: 460px;
  }
  .product-spline {
    transform: scale(0.56);
    margin-top: -160%;
    margin-left: -90%;
  }
}
@media (max-width: 480px) {
  .product-image-container {
    width: 280px;
    height: 440px;
  }
  
  .product-spline {
    transform: scale(0.52);
    margin-top: -160%;
    margin-left: -90%;
  }
}
/* FORZAR OCULTAR LOGO SPLINE - ULTRA AGRESIVO */
spline-viewer,
spline-viewer *,
spline-viewer::before,
spline-viewer::after {
  pointer-events: auto !important;
}
spline-viewer > *:last-child,
spline-viewer > div:last-child,
spline-viewer > a:last-child {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
spline-viewer [style*="position: absolute"],
spline-viewer [style*="position:absolute"] {
  display: none !important;
}
spline-viewer svg,
spline-viewer img[src*="spline"],
spline-viewer img[src*="logo"] {
  display: none !important;
}
spline-viewer div[style*="width: 32"],
spline-viewer div[style*="height: 32"],
spline-viewer div[style*="width:32"],
spline-viewer div[style*="height:32"] {
  display: none !important;
}
.product-spline {
  clip-path: inset(0 0 70px 0) !important;
  overflow: hidden !important;
}
.product-image-container {
  overflow: hidden !important;
  clip-path: inset(0 0 60px 0);
}
spline-viewer {
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%) !important;
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%) !important;
}
spline-viewer [style*="bottom"],
spline-viewer [style*="bottom:"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
spline-viewer * {
  z-index: 0 !important;
}

.btn-deshabilitado {
    background: #cccccc !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.btn-deshabilitado:hover {
    background: #cccccc !important;
    transform: none !important;
}
/* ==========================================
   ESTILOS PARA IMÁGENES NORMALES (NO SPLINE)
   ========================================== */

/* Solo para contenedores con clase has-image */
.product-image-container.has-image {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18), 
                0 0 0 1px rgba(226, 232, 240, 0.9);
    overflow: visible !important; /* Permitir que imagen se vea completa */
    clip-path: none !important; /* Quitar corte del spline */
    -webkit-mask-image: none !important; /* Quitar máscara del spline */
    mask-image: none !important;
}

/* Efecto de luz superior solo para imágenes */
.product-image-container.has-image::before {
    content: "";
    position: absolute;
    inset: 12px 18px auto;
    height: 30%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.28), transparent 60%);
    opacity: 0.8;
    pointer-events: none;
}

/* Hover para imágenes */
.product-image-container.has-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22), 
                0 0 0 1px rgba(209, 213, 219, 0.9);
}

/* Imagen del producto */
.product-image-container.has-image .product-image {
    max-width: 75%;
    height: auto;
    transform: translateY(0);
    transition: transform 0.35s ease;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Hover en la imagen */
.product-image-container.has-image:hover .product-image {
    transform: translateY(-4px) scale(1.03);
}

/* Responsive para imágenes */
@media (max-width: 992px) {
    .product-image-container.has-image .product-image {
        max-width: 70%;
    }
}

@media (max-width: 640px) {
    .product-image-container.has-image .product-image {
        max-width: 65%;
    }
}
