* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #E35436;
    --color-secondary: #575756;
    --color-text: #202124;
    --color-bg: #fafafa;
}

body {
    font-family: 'Google Sans', 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #fafafa;
}

/* ===== HEADER ESTILO GOOGLE PIXEL ===== */
.site-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1001; /* Mayor que el overlay */
    border-bottom: 1px solid #e8eaed;
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    background: white; /* Asegurar fondo blanco */
    position: relative;
    z-index: 1002;
}

/* Logo con imagen */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Menú Desktop - estilo Google */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    height: 100%;
    background: white;
}

.main-nav > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-nav > li > a {
    text-decoration: none;
    color: #202124;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 40px;
    transition: background-color 0.2s;
    letter-spacing: 0.25px;
}

.main-nav > li > a:hover {
    background-color: #f1f3f4;
}

/* ===== MEGA DROPDOWN CON OVERLAY OSCURO (sin afectar header y dropdown) ===== */
.mega-dropdown {
    position: static;
}

/* Overlay oscuro que cubre SOLO el contenido, no el header */
.mega-menu-overlay {
    position: fixed;
    top: 64px; /* Empieza justo debajo del header */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 998;
}

.mega-dropdown:hover .mega-menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* Contenedor del mega menú - CUADRO FLOTANTE BLANCO */
.mega-menu {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 100%;
    max-width: 1400px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    z-index: 1000; /* Por encima del overlay */
    pointer-events: none;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Efecto de elevación al hacer hover en el dropdown */
.mega-dropdown:hover > a {
    background-color: #f1f3f4;
}

/* Contenedor interno */
.mega-menu-inner {
    width: 100%;
    padding: 32px 28px;
}

.mega-menu-container {
    display: flex;
    gap: 48px;
}

/* Columna del menú */
.mega-menu-col {
    flex: 1;
}

.mega-menu-col h3 {
    font-size: 0.75rem;
    font-weight: 500;
    color: #5f6368;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.mega-menu-col ul {
    list-style: none;
}

.mega-menu-col ul li {
    margin-bottom: 8px;
}

.mega-menu-col ul li a {
    text-decoration: none;
    color: #202124;
    font-size: 0.875rem;
    display: block;
    padding: 8px 0;
    transition: color 0.2s;
}

.mega-menu-col ul li a:hover {
    color: #1a73e8;
}

.menu-highlight {
    font-weight: 600;
    color: #1a73e8 !important;
}

/* Línea divisoria entre secciones */
.menu-divider {
    height: 1px;
    background: #e8eaed;
    margin: 16px 0;
}

/* Ajuste para pantallas más pequeñas que 1400px */
@media (max-width: 1440px) {
    .mega-menu {
        max-width: calc(100% - 48px);
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .mega-dropdown:hover .mega-menu {
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 900px) {
    .mega-menu-container {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .mega-menu-col {
        min-width: 200px;
    }
}

/* Botones derecha */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    z-index: 1002;
}

.cart-btn, .signin-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    color: #202124;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.signin-btn {
    font-size: 0.875rem;
    font-weight: 500;
}

.menu-toggle-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #202124;
    padding: 8px;
}

/* ===== MENÚ LATERAL MÓVIL (Off-Canvas) ===== */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: white;
    z-index: 2000;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    transition: right 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e8eaed;
}

.sidebar-logo img {
    height: 32px;
    width: auto;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #202124;
}

.mobile-nav-list {
    list-style: none;
    padding: 8px 0;
}

.mobile-nav-list > li {
    border-bottom: 1px solid #e8eaed;
}

.mobile-nav-list > li > a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: #202124;
    font-weight: 500;
    font-size: 1rem;
}

/* Submenús en móvil */
.mobile-submenu-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
}

.mobile-submenu {
    list-style: none;
    padding-left: 20px;
    display: none;
    background-color: #f8f9fa;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #5f6368;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .menu-toggle-btn {
        display: block;
    }
    .navbar {
        padding: 0 16px;
    }
}

/* ===== HEADER FLOTANTE AL HACER SCROLL (COMO GOOGLE) ===== */
.site-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1001;
    border-bottom: 1px solid #e8eaed;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Contenedor del navbar - Estilos BASE (sin scroll) */
.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px; /* Ajustado para que coincida con el estado flotante (antes era 24px) */
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    background: white;
    position: relative;
    z-index: 1002;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Clase que se añade al hacer scroll - Header flotante redondeado */
.site-header.scrolled {
    background: transparent;
    border-bottom: none;
    top: 16px;
}

.site-header.scrolled .navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.05);
    height: 56px;
    /* El padding se mantiene igual que en el estado base para evitar saltos */
    padding: 0 28px;
    max-width: calc(1400px - 48px);
    margin: 0 auto;
}

/* Ajuste del logo cuando está flotante */
.site-header.scrolled .logo img {
    height: 32px;
}

/* Ajuste de los enlaces del menú cuando está flotante */
.site-header.scrolled .main-nav > li > a {
    font-size: 0.8125rem;
    padding: 6px 14px;
}

/* Ajuste de los botones cuando está flotante */
.site-header.scrolled .signin-btn,
.site-header.scrolled .cart-btn {
    font-size: 0.8125rem;
}

.site-header.scrolled .signin-btn i,
.site-header.scrolled .cart-btn i {
    font-size: 1rem;
}

/* Ajuste del menú toggle button cuando está flotante */
.site-header.scrolled .menu-toggle-btn {
    font-size: 20px;
}

/* Ajuste para pantallas entre 1400px y 1500px */
@media (max-width: 1480px) {
    .site-header.scrolled .navbar {
        max-width: calc(100% - 48px);
        margin: 0 24px;
    }
    /* Opcional: Ajustar padding del navbar base para móviles/tablets */
    @media (max-width: 1024px) {
        .navbar {
            padding: 0 20px;
        }
        .site-header.scrolled .navbar {
            padding: 0 20px;
        }
    }
}

/* Ajuste para tablets */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 20px;
    }
    .site-header.scrolled .navbar {
        max-width: calc(100% - 32px);
        margin: 0 16px;
        padding: 0 20px;
    }
}

/* Ajuste para móviles - No aplicar bordes redondeados */
@media (max-width: 768px) {
    .site-header.scrolled {
        top: 0;
        background: white;
    }
    
    .navbar {
        padding: 0 16px; /* Padding más ajustado para móviles */
    }
    .site-header.scrolled .navbar {
        margin: 0;
        border-radius: 0;
        height: 64px;
        padding: 0 16px;
        max-width: 100%;
        background: white;
        backdrop-filter: none;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    .site-header.scrolled .logo img {
        height: 40px;
    }
    
    .site-header.scrolled .menu-toggle-btn {
        font-size: 24px;
    }
}

/* ===== MENÚ MÓVIL - HEADER SIMPLIFICADO ===== */
@media (max-width: 768px) {
    /* Header simplificado en móvil - solo logo y hamburguesa */
    .site-header {
        background: white;
        position: sticky;
        top: 0;
        z-index: 1001;
        border-bottom: 1px solid #e8eaed;
    }
    
    .navbar {
        padding: 0 16px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    /* Ocultar menú desktop y botones en móvil */
    .main-nav {
        display: none !important;
    }
    
    .nav-actions .signin-btn,
    .nav-actions .cart-btn {
        display: none !important;
    }
    
    /* Mostrar solo el botón hamburguesa */
    .menu-toggle-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #202124;
        padding: 8px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        transition: background-color 0.2s;
    }
    
    .menu-toggle-btn:hover {
        background-color: #f1f3f4;
    }
    
    /* Logo más pequeño en móvil */
    .logo img {
        height: 32px;
    }
    
    /* Estado flotante del header en móvil - SIN bordes redondeados */
    .site-header.scrolled {
        top: 0;
        background: white;
        border-bottom: 1px solid #e8eaed;
    }
    
    .site-header.scrolled .navbar {
        margin: 0;
        border-radius: 0;
        height: 56px;
        padding: 0 16px;
        max-width: 100%;
        background: white;
        backdrop-filter: none;
        box-shadow: none;
    }
    
    .site-header.scrolled .logo img {
        height: 32px;
    }
}

/* ===== MENÚ LATERAL MÓVIL - SIN LOGO EN EL HEADER ===== */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: white;
    z-index: 2000;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    transition: right 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

/* Header del menú lateral - SIN LOGO, solo título y cerrar */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e8eaed;
    background: white;
}

.sidebar-header h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #202124;
}

/* Ocultar el logo dentro del menú lateral */
.sidebar-logo {
    display: none;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #202124;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.close-sidebar:hover {
    background-color: #f1f3f4;
}

.mobile-nav-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.mobile-nav-list > li {
    border-bottom: 1px solid #e8eaed;
}

.mobile-nav-list > li > a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: #202124;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.mobile-nav-list > li > a:hover {
    background-color: #f1f3f4;
}

/* Submenús en móvil */
.mobile-submenu-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.mobile-submenu-trigger:hover {
    background-color: #f1f3f4;
}

.mobile-submenu {
    list-style: none;
    padding-left: 20px;
    display: none;
    background-color: #f8f9fa;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #5f6368;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.mobile-submenu li a:hover {
    background-color: #e8eaed;
    color: #202124;
}

/* Overlay para cerrar menú */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
}

.overlay.active {
    display: block;
}

/* ===== BOTÓN DE WHATSAPP EN EL HEADER ===== */
.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 8px 18px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Ajuste para móvil */
@media (max-width: 768px) {
    .whatsapp-btn span {
        display: none; /* Oculta el texto en móvil, solo muestra el icono */
    }
    
    .whatsapp-btn {
        padding: 8px 12px;
    }
    
    .whatsapp-btn i {
        font-size: 1.3rem;
    }
}

/* Menú de financiamiento */
.financing-menu {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.financing-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    padding: 16px;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.02);
}

.financing-link:hover {
    background: rgba(227, 84, 54, 0.1);
    transform: translateX(4px);
}

.financing-icon {
    width: 50px;
    height: 50px;
    background: rgba(227, 84, 54, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.financing-icon i {
    font-size: 1.5rem;
    color: #E35436;
}

.financing-link h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #202124;
    margin-bottom: 4px;
}

.financing-link p {
    font-size: 0.75rem;
    color: #5f6368;
}

/* Responsive */
@media (max-width: 1024px) {
    .brands-menu {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-menu {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .financing-menu {
        grid-template-columns: 1fr;
    }
}
/* ===== AJUSTE DEL DROPDOWN CUANDO EL HEADER ESTÁ FLOTANTE (SCROLL) ===== */
/* Cuando el header está en modo flotante, el dropdown debe estar más cerca */
.site-header.scrolled .mega-menu {
    top: 70px; /* Reducido de 80px a 70px para que esté más cerca */
}

/* Ajuste para pantallas medianas */
@media (max-width: 1440px) {
    .site-header.scrolled .mega-menu {
        top: 68px;
    }
}

/* Ajuste para tablets */
@media (max-width: 1024px) {
    .site-header.scrolled .mega-menu {
        top: 65px;
    }
}

/* Ajuste para móviles - El dropdown no debería aparecer en móvil normalmente */
@media (max-width: 768px) {
    .site-header.scrolled .mega-menu {
        top: 64px;
    }
}

/* ===== MENÚ MÓVIL - MARCAS EN 2 COLUMNAS, SOLO IMAGEN SIN FONDO ===== */
.mobile-submenu-brands {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px !important;
    background: transparent;
}

.mobile-submenu-brands li {
    list-style: none;
    border-bottom: none !important;
    margin-bottom: 0;
}

.mobile-submenu-brands li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px !important;
    background: transparent;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.mobile-submenu-brands li a:hover {
    background: rgba(227, 84, 54, 0.1);
    transform: scale(1.05);
}

.mobile-submenu-brands li a img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
    border-radius: 20px !important; /* Bordes redondeados en las imágenes */
    transition: all 0.3s ease;
}

.mobile-submenu-brands li a:hover img {
    transform: scale(1.02);
}

/* Ocultar cualquier texto */
.mobile-submenu-brands li a span,
.mobile-submenu-brands li a .brand-name {
    display: none;
}

/* Ajuste para móviles más pequeños */
@media (max-width: 480px) {
    .mobile-submenu-brands {
        gap: 12px;
        padding: 12px !important;
    }
    
    .mobile-submenu-brands li a img {
        width: 50px !important;
        height: 50px !important;
        border-radius: 12px; /* Bordes más pequeños en móvil */
    }
}

/* Bordes redondeados para logos de marcas en desktop */
.brand-icon img {
    border-radius: 30px; /* Círculo perfecto */
    /* o usa border-radius: 12px; para esquinas redondeadas */
}







/* ===== HERO CON IMAGEN DE FONDO ===== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Imagen de fondo AVIF */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

/* Contenedor del contenido */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Contenido del hero - alineado a la izquierda */
.hero-content {
    max-width: 600px;
    text-align: left;
}

/* Marca / Etiqueta */
.hero-tag {
    display: inline-block;
    background: transparent;
    padding: 6px 0;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #E35436;
    border: none;
}

/* Título principal */
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #575756;
}

.hero h1 span {
    color: #E35436;
    display: block;
    font-size: 1.5rem;
    margin-top: 8px;
}

/* Especificaciones */
.hero-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 24px 0;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #575756;
}

.spec-value {
    font-size: 1rem;
    font-weight: 600;
    color: #E35436;
}

/* Características destacadas */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0;
}

.feature-badge {
    background: transparent;
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.feature-badge i {
    color: #E35436;
    font-size: 0.9rem;
}

.feature-badge span {
    color: #575756;
}

/* Botón primario */
.btn-primary {
    background: #E35436;
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #c43e20;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 84, 54, 0.3);
}

/* Botón secundario */
.btn-secondary {
    background: transparent;
    color: #575756;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #E35436;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(227, 84, 54, 0.1);
    border-color: #E35436;
    color: #E35436;
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

/* ===== HERO CARRUSEL - NOMBRES ÚNICOS ===== */
.hero-carousel-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-carousel {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.hero-carousel-track {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.hero-carousel-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Asegurar que la imagen de fondo cubra todo */
.hero-carousel-slide .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

/* Contenedor del contenido con z-index superior */
.hero-carousel-slide .hero-container {
    position: relative;
    z-index: 2;
}

/* ===== BOTONES DE NAVEGACIÓN DEL HERO CARRUSEL ===== */
.hero-carousel-prev,
.hero-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-carousel-prev {
    left: 20px;
}

.hero-carousel-next {
    right: 20px;
}

.hero-carousel-prev:hover,
.hero-carousel-next:hover {
    background: #E35436;
    transform: translateY(-50%) scale(1.05);
}

/* ===== DOTS / INDICADORES ===== */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
    background: transparent;
    padding: 10px 20px;
    border-radius: 50px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.dot.active {
    background: #E35436;
    width: 28px;
    border-radius: 20px;
}

.dot:hover {
    background: #E35436;
    transform: scale(1.2);
}

/* ===== AJUSTE PARA MÓVIL DEL HERO CARRUSEL ===== */
@media (max-width: 768px) {
    .hero,
    .hero-carousel-section,
    .hero-carousel,
    .hero-carousel-track,
    .hero-carousel-slide {
        min-height: 100vh;
    }

    /* Contenedor del contenido con fondo oscuro */
    .hero-content {
        background: rgba(0, 0, 0, 0.60);
        backdrop-filter: blur(8px);
        border-radius: 24px;
        padding: 32px 24px;
        max-width: 100%;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(227, 84, 54, 0.3);
        margin: 0 16px;
    }
    
    /* Todo el texto dentro de hero-content en blanco */
    .hero-content,
    .hero-content * {
        color: white;
    }
    
    /* Mantener el color primario para acentos específicos */
    .hero-content .hero-tag,
    .hero-content .hero h1 span,
    .hero-content .feature-badge i,
    .hero-content .spec-value {
        color: #E35436;
    }
    
    .hero-content .spec-label {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .hero-content .feature-badge span {
        color: white;
    }
    
    .hero-container {
        padding: 40px 20px;
        display: flex;
        align-items: center;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        color: white;
    }
    
    .hero h1 span {
        font-size: 1rem;
        color: #E35436;
    }
    
    .hero-specs {
        gap: 12px;
        margin: 16px 0;
    }
    
    .spec-label {
        font-size: 0.65rem;
    }
    
    .spec-value {
        font-size: 0.85rem;
    }
    
    .hero-features {
        gap: 12px;
        margin: 16px 0;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 6px 0;
        color: white;
    }
    
    .hero-buttons {
        gap: 12px;
        margin-top: 20px;
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    .btn-secondary {
        color: white;
        border-color: #E35436;
    }
    
    .btn-secondary:hover {
        background: rgba(227, 84, 54, 0.2);
        color: white;
    }

    /* Botones de navegación más pequeños en móvil */
    .hero-carousel-prev,
    .hero-carousel-next {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .hero-carousel-prev {
        left: 10px;
    }

    .hero-carousel-next {
        right: 10px;
    }

    /* Dots en móvil */
    .carousel-dots {
        bottom: 20px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 20px;
    }
}

/* Para móviles muy pequeños */
@media (max-width: 480px) {
    .hero-content {
        padding: 24px 20px;
        border-radius: 20px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero h1 span {
        font-size: 0.9rem;
    }
    
    .hero-specs {
        flex-direction: column;
        gap: 10px;
    }
    
    .spec-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 8px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 8px;
    }
    
    .feature-badge {
        justify-content: flex-start;
    }
}

/* ===== TODOS LOS SLIDES CON FONDO TRANSPARENTE ===== */
/* HONOR, IPHONE y SAMSUNG todos con fondo transparente */
.hero-carousel-slide .hero-content {
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

/* ===== TEMA IPHONE (Texto blanco, botones naranja) ===== */
.hero-carousel-slide[data-theme="iphone"] .hero-content,
.hero-carousel-slide[data-theme="iphone"] .hero-content * {
    color: #ffffff !important;
}

.hero-carousel-slide[data-theme="iphone"] .hero-tag {
    color: #ffffff !important;
}

.hero-carousel-slide[data-theme="iphone"] .hero h1 {
    color: #ffffff !important;
}

.hero-carousel-slide[data-theme="iphone"] .hero h1 span {
    color: #ffffff !important;
}

.hero-carousel-slide[data-theme="iphone"] .spec-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

.hero-carousel-slide[data-theme="iphone"] .spec-value {
    color: #ffffff !important;
}

.hero-carousel-slide[data-theme="iphone"] .feature-badge {
    color: #ffffff !important;
}

.hero-carousel-slide[data-theme="iphone"] .feature-badge i {
    color: #ffffff !important;
}

.hero-carousel-slide[data-theme="iphone"] .feature-badge span {
    color: #ffffff !important;
}

/* Botones iPhone - se mantienen naranja */
.hero-carousel-slide[data-theme="iphone"] .btn-primary {
    background: #E35436 !important;
    color: white !important;
}

.hero-carousel-slide[data-theme="iphone"] .btn-primary:hover {
    background: #c43e20 !important;
}

.hero-carousel-slide[data-theme="iphone"] .btn-secondary {
    border-color: #ffffff !important;
    color: #ffffff !important;
    background: transparent !important;
}

.hero-carousel-slide[data-theme="iphone"] .btn-secondary:hover {
    background: rgba(227, 84, 54, 0.15) !important;
    color: #E35436 !important;
}

/* ===== TEMA SAMSUNG (Colores morados - texto blanco/gris/morado) ===== */
.hero-carousel-slide[data-theme="samsung"] .hero-tag {
    color: #CE93D8 !important;
}

.hero-carousel-slide[data-theme="samsung"] .hero h1 {
    color: #FFFFFF !important;
}

.hero-carousel-slide[data-theme="samsung"] .hero h1 span {
    color: #CE93D8 !important;
}

.hero-carousel-slide[data-theme="samsung"] .spec-label {
    color: rgba(255, 255, 255, 0.7) !important;
}

.hero-carousel-slide[data-theme="samsung"] .spec-value {
    color: #CE93D8 !important;
}

.hero-carousel-slide[data-theme="samsung"] .feature-badge {
    color: #FFFFFF !important;
}

.hero-carousel-slide[data-theme="samsung"] .feature-badge i {
    color: #CE93D8 !important;
}

.hero-carousel-slide[data-theme="samsung"] .feature-badge span {
    color: #FFFFFF !important;
}

/* Forzar que el h1 principal de Samsung sea blanco */
.hero-carousel-slide[data-theme="samsung"] h1,
.hero-carousel-slide[data-theme="samsung"] .hero h1 {
    color: #FFFFFF !important;
}

/* Forzar que el span dentro del h1 sea morado */
.hero-carousel-slide[data-theme="samsung"] h1 span,
.hero-carousel-slide[data-theme="samsung"] .hero h1 span {
    color: #CE93D8 !important;
}

/* Botones Samsung - morados */
.hero-carousel-slide[data-theme="samsung"] .btn-primary {
    background: #7B1FA2 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(123, 31, 162, 0.4) !important;
}

.hero-carousel-slide[data-theme="samsung"] .btn-primary:hover {
    background: #6A1B9A !important;
    box-shadow: 0 8px 25px rgba(123, 31, 162, 0.5) !important;
}

.hero-carousel-slide[data-theme="samsung"] .btn-secondary {
    border-color: #CE93D8 !important;
    color: #CE93D8 !important;
    background: transparent !important;
}

.hero-carousel-slide[data-theme="samsung"] .btn-secondary:hover {
    background: rgba(206, 147, 216, 0.15) !important;
    color: #CE93D8 !important;
}

/* ===== TEMA HONOR (Estilo original) ===== */
.hero-carousel-slide[data-theme="honor"] .hero-tag {
    color: #E35436 !important;
}

.hero-carousel-slide[data-theme="honor"] .hero h1 {
    color: #575756 !important;
}

.hero-carousel-slide[data-theme="honor"] .hero h1 span {
    color: #E35436 !important;
}

.hero-carousel-slide[data-theme="honor"] .spec-label {
    color: #575756 !important;
}

.hero-carousel-slide[data-theme="honor"] .spec-value {
    color: #E35436 !important;
}

.hero-carousel-slide[data-theme="honor"] .feature-badge {
    color: #575756 !important;
}

.hero-carousel-slide[data-theme="honor"] .feature-badge i {
    color: #E35436 !important;
}

.hero-carousel-slide[data-theme="honor"] .feature-badge span {
    color: #575756 !important;
}

.hero-carousel-slide[data-theme="honor"] .btn-primary {
    background: #E35436 !important;
    color: white !important;
}

.hero-carousel-slide[data-theme="honor"] .btn-primary:hover {
    background: #c43e20 !important;
}

.hero-carousel-slide[data-theme="honor"] .btn-secondary {
    border-color: #E35436 !important;
    color: #575756 !important;
    background: transparent !important;
}

.hero-carousel-slide[data-theme="honor"] .btn-secondary:hover {
    background: rgba(227, 84, 54, 0.1) !important;
    color: #E35436 !important;
}

/* ===== OCULTAR DOTS COMPLETAMENTE ===== */
.carousel-dots {
    display: none !important;
}

/* ===== TODOS LOS SLIDES CON FONDO TRANSPARENTE (SOLO EN PC) ===== */
@media (min-width: 769px) {
    .hero-carousel-slide .hero-content {
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
    }
}

/* ===== OCULTAR DOTS COMPLETAMENTE (PC y MÓVIL) ===== */
.carousel-dots {
    display: none !important;
}

/* ===== FONDO TRANSPARENTE SOLO EN PC ===== */
@media (min-width: 769px) {
    .hero-carousel-slide .hero-content {
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
    }
}

/* ===== MÓVIL: FONDO OSCURO PARA TODOS LOS SLIDES ===== */
@media (max-width: 768px) {
    /* Fondo oscuro para todos los slides en móvil */
    .hero-carousel-slide .hero-content {
        background: rgba(0, 0, 0, 0.60) !important;
        backdrop-filter: blur(8px) !important;
        border-radius: 24px !important;
        padding: 32px 24px !important;
        border: 1px solid rgba(227, 84, 54, 0.3) !important;
        margin: 0 16px !important;
    }
    
    /* Asegurar que el texto en móvil sea blanco para todos */
    .hero-carousel-slide .hero-content,
    .hero-carousel-slide .hero-content * {
        color: white !important;
    }
    
    /* Mantener acentos de color según el tema */
    .hero-carousel-slide[data-theme="honor"] .hero-content .hero-tag,
    .hero-carousel-slide[data-theme="honor"] .hero-content .hero h1 span,
    .hero-carousel-slide[data-theme="honor"] .hero-content .feature-badge i,
    .hero-carousel-slide[data-theme="honor"] .hero-content .spec-value {
        color: #E35436 !important;
    }
    
    .hero-carousel-slide[data-theme="iphone"] .hero-content .hero-tag,
    .hero-carousel-slide[data-theme="iphone"] .hero-content .hero h1 span,
    .hero-carousel-slide[data-theme="iphone"] .hero-content .feature-badge i,
    .hero-carousel-slide[data-theme="iphone"] .hero-content .spec-value {
        color: #E35436 !important;
    }
    
    .hero-carousel-slide[data-theme="samsung"] .hero-content .hero-tag,
    .hero-carousel-slide[data-theme="samsung"] .hero-content .hero h1 span,
    .hero-carousel-slide[data-theme="samsung"] .hero-content .feature-badge i,
    .hero-carousel-slide[data-theme="samsung"] .hero-content .spec-value {
        color: #CE93D8 !important;
    }
    
    /* Botón secundario en móvil */
    .hero-carousel-slide .btn-secondary {
        border-color: #E35436 !important;
        color: white !important;
    }
    
    .hero-carousel-slide[data-theme="samsung"] .btn-secondary {
        border-color: #CE93D8 !important;
        color: white !important;
    }
}







/* ===== CARRUSEL DE DISPOSITIVOS DESTACADOS - ESTILO GOOGLE STORE ===== */
.featured-devices {
    padding: 80px 0;
    background: #ffffff;
}

.devices-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.devices-header {
    text-align: center;
    margin-bottom: 48px;
}

.devices-title {
    font-size: 2.8rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.devices-title .highlight {
    color: #E35436;
    font-weight: 600;
}

.devices-subtitle {
    font-size: 1rem;
    color: #5f6368;
    max-width: 600px;
    margin: 0 auto;
}

/* Carrusel Wrapper */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 28px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    will-change: transform;
}









/* Tarjeta de dispositivo - imagen mucho más grande sobresaliente */
.device-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 260px;
    background: #ffffff;
    border-radius: 28px;
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid #e8eaed;
    margin-top: 70px; /* Aumentado para más espacio */
}

.device-image {
    padding: 0;
    text-align: center;
    background: transparent;
    overflow: visible;
    position: relative;
    margin-top: -70px; /* Debe coincidir con margin-top de .device-card */
    margin-bottom: -40px; /* Sobresale también hacia abajo sobre el texto */
    z-index: 3;
}

.device-image img {
    width: 80%; /* Imagen casi tan ancha como la tarjeta */
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.device-card:hover .device-image img {
    transform: scale(1.05);
}

/* Información - más padding arriba para que el texto no quede tapado */
.device-info {
    padding: 50px 20px 24px; /* Aumentado el padding superior */
    text-align: left;
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 0 0 28px 28px;
}

.device-name {
    font-size: 1rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 44px;
}

.device-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #E35436;
    margin-bottom: 16px;
    display: block;
}

/* Acciones */
.device-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #e8eaed;
    padding-top: 16px;
    margin-top: 4px;
}

.device-link {
    color: #E35436;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.device-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.device-buy {
    background: transparent;
    color: #E35436;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid #E35436;
}

.device-buy:hover {
    background: #E35436;
    color: white;
    transform: scale(0.98);
}

/* Flechas del carrusel */
.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid #dadce0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.carousel-arrow:hover {
    background: #ffffff;
    border-color: #E35436;
    transform: scale(1.05);
}

.carousel-arrow i {
    font-size: 1.1rem;
    color: #5f6368;
}

.carousel-arrow:hover i {
    color: #E35436;
}

/* Dots / Indicadores - estilo Google */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    width: 24px;
    border-radius: 10px;
    background: #E35436;
}

.dot:hover {
    background: #E35436;
    opacity: 0.7;
}

/* Badge - más discreto */
.device-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(227, 84, 54, 0.9);
    backdrop-filter: blur(4px);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    z-index: 2;
    letter-spacing: 0.3px;
}

.device-badge.premium {
    background: rgba(87, 87, 86, 0.9);
}

/* Responsive */
@media (max-width: 1200px) {
    .device-card {
        flex: 0 0 calc(33.33% - 14px);
    }
    
    .devices-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 900px) {
    .device-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .devices-container {
        padding: 0 20px;
    }
    
    .devices-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .featured-devices {
        padding: 50px 0;
    }
    
    .devices-title {
        font-size: 1.6rem;
    }
    
    .device-card {
        flex: 0 0 calc(100% - 0px);
    }
    
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }
    
    .carousel-arrow i {
        font-size: 0.9rem;
    }
    
    .device-image {
        padding: 30px 20px 20px;
    }
    
    .device-name {
        font-size: 0.95rem;
        min-height: auto;
    }
    
    .device-price {
        font-size: 1.1rem;
    }
    
    .device-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .device-link, .device-buy {
        justify-content: center;
    }
}

/* Botón único - Más información */
.device-link-single {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    color: #E35436;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1.5px solid #E35436;
}

.device-link-single:hover {
    background: #E35436;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 84, 54, 0.3);
}







/* ===== SECCIÓN DE DISPOSITIVO DESTACADO ===== */
.featured-device {
    padding: 60px 0;
}

.featured-device-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    border-radius: 32px;
    overflow: hidden;
}

/* Imagen de fondo centrada */
.featured-device-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.featured-device-bg img {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay - eliminado o muy sutil */
.featured-device-container::before {
    display: none;
}

/* Contenido - sin fondo adicional */
.featured-device-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #202124; /* Texto oscuro para que destaque sobre fondo claro */
    padding: 48px 0;
}

/* Badge - más llamativo */
.badge-new {
    background: #E35436;
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(227, 84, 54, 0.3);
}

/* Título - más oscuro */
.featured-device-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #1a1a1a;
}

.featured-device-title span {
    font-size: 1.2rem;
    font-weight: 500;
    color: #5f6368;
    display: block;
    margin-top: 8px;
}

/* Características - con borde más visible */
.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.05);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #202124;
}

.feature-item i {
    color: #E35436;
    font-size: 0.9rem;
}

/* Precios */
.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #9aa0a6;
}

.new-price {
    font-size: 2rem;
    font-weight: 700;
    color: #E35436;
}

/* Botones - más destacados con sombras */
.btn-buy {
    background: #E35436;
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(227, 84, 54, 0.3);
}

.btn-buy:hover {
    background: #c43e20;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 84, 54, 0.4);
}

.btn-learn {
    background: transparent;
    color: #E35436;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #E35436;
    cursor: pointer;
}

.btn-learn:hover {
    background: rgba(227, 84, 54, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 84, 54, 0.2);
}

@media (max-width: 768px) {
    .featured-device {
        padding: 40px 0;
        background: #ffffff;
    }
    
    .featured-device-container {
        padding: 0 20px;
        min-height: auto;
        flex-direction: column;
        background: #f8f9fa;
        border-radius: 32px;
        overflow: hidden;
    }
    
    .featured-device-content {
        max-width: 100%;
        padding: 30px 24px 20px;
        text-align: center;
        order: 1;
    }
    
    .featured-device-bg {
        position: relative;
        width: 100%;
        padding: 20px;
        order: 2;
        background: #f8f9fa;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .featured-device-bg img {
        width: 100%;
        max-width: 350px;
        height: auto;
        border-radius: 32px;
        display: block;
        margin: 0 auto;
    }
    
    .featured-device-container::before {
        display: none;
    }
    
    .featured-device-badge {
        justify-content: center;
    }
    
    .featured-device-title {
        font-size: 1.8rem;
        color: #202124;
    }
    
    .featured-device-title span {
        font-size: 1rem;
        color: #5f6368;
    }
    
    .featured-device-features {
        justify-content: center;
    }
    
    .featured-device-pricing {
        justify-content: center;
    }
    
    .featured-device-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-buy, .btn-learn {
        width: 100%;
        justify-content: center;
    }
    
    .feature-item {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}







/* ===== SECCIÓN DE PRECIOS - UNITARIO VS CANTIDAD ===== */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #575756;
    margin-bottom: 16px;
}

.pricing-title .highlight {
    color: #E35436;
}

.pricing-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de dos columnas */
.pricing-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
}

/* Tarjetas flotantes */
.pricing-card {
    flex: 1;
    background: white;
    border-radius: 32px;
    padding: 40px 32px 32px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8eaed;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Tarjeta mayorista con borde destacado */
.pricing-card--wholesale {
    border: 2px solid #E35436;
    background: linear-gradient(135deg, #ffffff 0%, #fffaf8 100%);
}

/* Badge "Mejor Valor" */
.pricing-card-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background: #E35436;
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(227, 84, 54, 0.3);
}

/* Iconos */
.pricing-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(227, 84, 54, 0.1), rgba(227, 84, 54, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pricing-card-icon i {
    font-size: 2.5rem;
    color: #E35436;
}

/* Título */
.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #202124;
    margin-bottom: 16px;
}

/* Precio */
.pricing-card-price {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8eaed;
}

.price-amount {
    display: block;
    font-size: 0.85rem;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #E35436;
}

.price-note {
    display: block;
    font-size: 0.75rem;
    color: #5f6368;
    margin-top: 8px;
}

/* Características - ocupan el espacio disponible */
.pricing-card-features {
    flex: 1;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #202124;
}

.feature i {
    width: 20px;
    color: #E35436;
    font-size: 1rem;
}

/* Botones - alineados horizontalmente en la parte inferior */
.pricing-card-buttons {
    display: flex;
    gap: 12px;
    margin-top: auto;
    flex-direction: row;
}

.pricing-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 14px 16px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #E35436;
    color: white;
}

.btn-primary:hover {
    background: #c43e20;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 84, 54, 0.3);
}

.btn-secondary {
    background: #f1f3f4;
    color: #E35436;
}

.btn-secondary:hover {
    background: #E35436;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 84, 54, 0.3);
}

.btn-outline {
    background: transparent;
    color: #E35436;
    border: 1.5px solid #E35436;
}

.btn-outline:hover {
    background: #E35436;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        gap: 24px;
    }
    
    .pricing-card {
        padding: 32px 24px 28px;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .pricing-card-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .pricing-card-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 50px 0;
    }
    
    .pricing-container {
        padding: 0 20px;
    }
    
    .pricing-title {
        font-size: 1.8rem;
    }
    
    .pricing-grid {
        flex-direction: column;
        gap: 32px;
    }
    
    .pricing-card {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .pricing-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .pricing-card-icon i {
        font-size: 1.8rem;
    }
    
    .pricing-card-title {
        font-size: 1.3rem;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    .feature {
        font-size: 0.85rem;
    }
    
    .pricing-card-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .pricing-card-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 28px 20px 24px;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    .feature {
        font-size: 0.8rem;
        gap: 10px;
    }
    
    .pricing-card-badge {
        right: 20px;
        font-size: 0.7rem;
        padding: 4px 14px;
    }
    
    .pricing-card-buttons {
        flex-direction: column;
    }
    
    .pricing-card-btn {
        width: 100%;
    }
}







/* ===== SECCIÓN DE FINANCIAMIENTO - COMPRA A CUOTAS ===== */
.financing-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Imagen de fondo */
.financing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.financing-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay oscuro para que el texto resalte */
.financing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

/* Contenedor del contenido */
.financing-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.financing-header {
    text-align: center;
    margin-bottom: 48px;
}

.financing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.financing-title .highlight {
    color: #E35436;
}

.financing-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de tarjetas */
.financing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Tarjetas de financiamiento - CON ALTURA FLEXIBLE Y BOTÓN ALINEADO */
.financing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 32px 24px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.financing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(227, 84, 54, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Iconos */
.financing-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(227, 84, 54, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.financing-card:hover .financing-card-icon {
    background: #E35436;
    transform: scale(1.05);
}

.financing-card-icon i {
    font-size: 2rem;
    color: #E35436;
    transition: all 0.3s ease;
}

.financing-card:hover .financing-card-icon i {
    color: white;
}

/* Nombre de la empresa */
.financing-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

/* Descripción - ocupa espacio flexible */
.financing-card-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

/* Features tags */
.financing-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-tag {
    background: rgba(227, 84, 54, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #E35436;
    border: 1px solid rgba(227, 84, 54, 0.3);
}

/* Botón - alineado en la parte inferior */
.financing-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid #E35436;
    color: white;
    padding: 12px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.financing-card-btn:hover {
    background: #E35436;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 84, 54, 0.3);
}

/* Footer */
.financing-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.financing-footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .financing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .financing-section {
        padding: 60px 0;
    }
    
    .financing-container {
        padding: 0 20px;
    }
    
    .financing-title {
        font-size: 1.8rem;
    }
    
    .financing-subtitle {
        font-size: 0.9rem;
    }
    
    .financing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .financing-card {
        padding: 24px 20px 20px;
    }
    
    .financing-card-name {
        font-size: 1.3rem;
    }
    
    .financing-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .financing-card-icon i {
        font-size: 1.5rem;
    }
    
    .financing-footer p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .financing-title {
        font-size: 1.5rem;
    }
    
    .financing-card {
        padding: 20px 16px 16px;
    }
    
    .financing-card-name {
        font-size: 1.2rem;
    }
    
    .feature-tag {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
    
    .financing-card-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}









/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #ffffff;
    padding: 60px 0 0;
    margin-top: 0px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Grid del footer */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

/* Logo y descripción */
.footer-logo img {
    height: 45px;
    width: auto;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Redes sociales */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #E35436;
    transform: translateY(-3px);
}

/* Títulos */
.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #E35436;
    letter-spacing: 0.5px;
}

/* Listas de enlaces */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #E35436;
    transform: translateX(5px);
}

/* Contacto */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: #E35436;
    width: 18px;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #E35436;
}

/* Métodos de pago */
.footer-payment {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.footer-payment .footer-title {
    margin-bottom: 16px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #E35436;
    transform: scale(1.1);
}

/* Copyright */
.footer-bottom {
    padding-bottom: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #E35436;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .footer-col--brand {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
        margin-top: 40px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-col--brand {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .payment-icons {
        gap: 16px;
    }
    
    .payment-icons i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-social {
        justify-content: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
}









/* ===== SECCIÓN DE FORMULARIOS DE CONTACTO ===== */
.contact-forms-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-forms-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-forms-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-forms-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #202124;
    margin-bottom: 12px;
}

.contact-forms-title .highlight {
    color: #E35436;
}

.contact-forms-subtitle {
    font-size: 1rem;
    color: #5f6368;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de dos columnas */
.contact-forms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Tarjetas de formulario */
.contact-form-card {
    background: white;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e8eaed;
}

.contact-form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Tarjeta mayorista con borde destacado */
.form-card-wholesale {
    border: 2px solid #E35436;
    background: linear-gradient(135deg, #ffffff 0%, #fffaf8 100%);
}

.form-card-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background: #E35436;
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(227, 84, 54, 0.3);
}

/* Icono de la tarjeta */
.form-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(227, 84, 54, 0.1), rgba(227, 84, 54, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.form-card-icon i {
    font-size: 2rem;
    color: #E35436;
}

.form-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #202124;
    margin-bottom: 8px;
}

.form-card-desc {
    font-size: 0.85rem;
    color: #5f6368;
    margin-bottom: 24px;
}

/* Estilos de formulario */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Grupo de formulario flotante */
.form-group {
    position: relative;
    margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 16px 8px 40px;
    border: 1.5px solid #e8eaed;
    border-radius: 16px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group label {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: #5f6368;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 4px;
}

.form-group textarea ~ label {
    top: 18px;
    transform: none;
}

.form-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #E35436;
    font-size: 1rem;
    pointer-events: none;
}

.form-group textarea ~ i {
    top: 18px;
    transform: none;
}

/* Estado flotante del label */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #E35436;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    font-size: 0.7rem;
    color: #E35436;
    background: white;
}

/* Fila de dos columnas */
.form-row {
    display: flex;
    gap: 16px;
}

.form-group.half {
    flex: 1;
}

/* Botón de envío */
.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #E35436;
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 8px;
}

.form-submit-btn:hover {
    background: #c43e20;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 84, 54, 0.3);
}

.btn-wholesale {
    background: #25D366;
}

.btn-wholesale:hover {
    background: #128C7E;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Alternativa de contacto */
.form-alternative {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e8eaed;
}

.form-alternative p {
    font-size: 0.8rem;
    color: #5f6368;
}

.form-alternative a {
    color: #E35436;
    text-decoration: none;
    font-weight: 600;
}

.form-alternative a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-forms-grid {
        gap: 24px;
    }
    
    .contact-forms-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-forms-section {
        padding: 50px 0;
    }
    
    .contact-forms-container {
        padding: 0 20px;
    }
    
    .contact-forms-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form-card {
        padding: 24px;
    }
    
    .form-card-title {
        font-size: 1.3rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-form-card {
        padding: 20px;
    }
    
    .form-card-icon {
        width: 55px;
        height: 55px;
    }
    
    .form-card-icon i {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 14px 6px 38px;
        font-size: 0.85rem;
    }
    
    .form-group label {
        left: 38px;
        font-size: 0.85rem;
    }
    
    .form-submit-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}










/* ===== FORMULARIO DE COMPRA POR CANTIDAD ===== */
.wholesale-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.wholesale-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Tarjeta principal */
.wholesale-card {
    background: white;
    border-radius: 40px;
    padding: 48px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid #E35436;
    margin-bottom: 48px;
}

.wholesale-badge {
    position: absolute;
    top: -14px;
    right: 40px;
    background: #E35436;
    color: white;
    padding: 6px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(227, 84, 54, 0.3);
}

.wholesale-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(227, 84, 54, 0.1), rgba(227, 84, 54, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.wholesale-icon i {
    font-size: 2.5rem;
    color: #E35436;
}

.wholesale-title {
    font-size: 2rem;
    font-weight: 700;
    color: #202124;
    margin-bottom: 12px;
}

.wholesale-title .highlight {
    color: #E35436;
}

.wholesale-desc {
    font-size: 1rem;
    color: #5f6368;
    margin-bottom: 32px;
    max-width: 600px;
}

/* Formulario */
.wholesale-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row-2cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Grupo de formulario flotante */
.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 16px 8px 48px;
    border: 1.5px solid #e8eaed;
    border-radius: 20px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 20px;
}

.form-group label {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: #5f6368;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 6px;
}

.form-group textarea ~ label {
    top: 18px;
    transform: none;
}

.form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #E35436;
    font-size: 1.1rem;
    pointer-events: none;
}

.form-group textarea ~ i {
    top: 20px;
    transform: none;
}

/* Estado flotante del label */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #E35436;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.7rem;
    color: #E35436;
    background: white;
}

/* Botón de envío */
.wholesale-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: #E35436;
    color: white;
    padding: 16px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 8px;
}

.wholesale-submit-btn:hover {
    background: #c43e20;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 84, 54, 0.35);
}

/* Contacto alternativo */
.contact-alternative {
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e8eaed;
}

.contact-alternative p {
    font-size: 0.9rem;
    color: #5f6368;
}

.contact-alternative a {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-alternative a:hover {
    text-decoration: underline;
}

/* ===== MÉTODOS DE PAGO ===== */
.payment-methods {
    background: white;
    border-radius: 32px;
    padding: 32px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8eaed;
    text-align: center;
}

.payment-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #202124;
    margin-bottom: 24px;
}

.payment-icons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 70px;
}

.payment-item i {
    font-size: 2.5rem;
    color: #5f6368;
    transition: all 0.3s ease;
}

.payment-item:hover i {
    color: #E35436;
    transform: translateY(-3px);
}

.payment-item span {
    font-size: 0.75rem;
    color: #5f6368;
    font-weight: 500;
}

.payment-note {
    font-size: 0.7rem;
    color: #9aa0a6;
    margin-top: 24px;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .wholesale-card {
        padding: 36px;
    }
    
    .wholesale-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .wholesale-section {
        padding: 50px 0;
    }
    
    .wholesale-container {
        padding: 0 20px;
    }
    
    .wholesale-card {
        padding: 28px 24px;
    }
    
    .wholesale-badge {
        right: 20px;
        font-size: 0.7rem;
        padding: 4px 16px;
    }
    
    .wholesale-icon {
        width: 60px;
        height: 60px;
    }
    
    .wholesale-icon i {
        font-size: 1.8rem;
    }
    
    .wholesale-title {
        font-size: 1.5rem;
    }
    
    .wholesale-desc {
        font-size: 0.9rem;
    }
    
    .form-row-2cols {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 14px 8px 42px;
        font-size: 0.9rem;
    }
    
    .form-group label {
        left: 42px;
        font-size: 0.9rem;
    }
    
    .wholesale-submit-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .payment-icons-grid {
        gap: 20px;
    }
    
    .payment-item i {
        font-size: 2rem;
    }
    
    .payment-item span {
        font-size: 0.65rem;
    }
    
    .payment-methods {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .wholesale-card {
        padding: 24px 20px;
    }
    
    .payment-icons-grid {
        gap: 16px;
    }
    
    .payment-item {
        min-width: 60px;
    }
    
    .payment-item i {
        font-size: 1.6rem;
    }
}









/* ===== SECCIÓN EFECTIVA FINANCIAMIENTO ===== */
.financing-info-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.financing-info-container {
    max-width: 1300px;
    margin: 0 auto;
}

.financing-info-header {
    text-align: center;
    margin-bottom: 3rem;
}

.financing-info-header h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.financing-info-header .highlight {
    color: #0066cc;
    position: relative;
}

.financing-info-header p {
    color: #666;
    font-size: 1.1rem;
}

.financing-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.info-card-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.info-card-icon i {
    font-size: 3rem;
    color: #0066cc;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -20px;
    background: #0066cc;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.info-card p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.info-card small {
    color: #888;
    font-size: 0.8rem;
}

/* Requisitos */
.requirements-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.requirements-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.requirements-box h3 i {
    color: #0066cc;
    margin-right: 10px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.requirement-item i {
    width: 35px;
    height: 35px;
    background: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
    font-size: 1rem;
}

.requirement-item span {
    color: #333;
    font-size: 0.9rem;
}

/* Tabla de ejemplo */
.example-table-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    overflow-x: auto;
}

.example-table-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.example-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
}

.payment-table {
    min-width: 600px;
}

.table-header, .table-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.table-header {
    background: #f8f9fa;
    font-weight: bold;
    color: #1a1a2e;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.table-row:hover {
    background: #f8f9fa;
}

.table-note {
    font-size: 0.75rem;
    color: #999;
    margin-top: 1rem;
}

/* Ventajas */
.advantages-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.advantage {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.advantage i {
    font-size: 2rem;
    color: #0066cc;
}

.advantage h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #1a1a2e;
}

.advantage p {
    font-size: 0.8rem;
    color: #666;
}

/* CTA */
.financing-cta {
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
}

.financing-cta p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-whatsapp:hover {
    background: #20b859;
    transform: scale(1.05);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .financing-info-section {
        padding: 2rem 1rem;
    }
    
    .financing-info-header h2 {
        font-size: 1.6rem;
    }
    
    .info-card {
        padding: 1.2rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage {
        flex-direction: column;
        text-align: center;
    }
}










/* ===== SECCIÓN KRECE FINANCIAMIENTO ===== */
.krece-info-section {
    background: linear-gradient(135deg, #fff8f0 0%, #fff0e0 100%);
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.krece-info-container {
    max-width: 1300px;
    margin: 0 auto;
}

.krece-info-header {
    text-align: center;
    margin-bottom: 2rem;
}

.krece-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff6b35;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.krece-info-header h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.krece-info-header .highlight {
    color: #ff6b35;
    position: relative;
}

.krece-info-header p {
    color: #666;
    font-size: 1.1rem;
}

/* ¿Qué es Krece? */
.krece-about {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 5px solid #ff6b35;
}

.krece-about-icon i {
    font-size: 3rem;
    color: #ff6b35;
}

.krece-about-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.krece-about-text p {
    color: #555;
    line-height: 1.5;
}

/* Pasos */
.krece-steps {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.krece-steps h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.krece-steps h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: #fffaf5;
    border-radius: 15px;
}

.step-circle {
    width: 45px;
    height: 45px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #1a1a2e;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
}

.step-arrow {
    text-align: center;
    color: #ff6b35;
    font-size: 1rem;
    margin: 0.2rem 0 0.2rem 2.2rem;
}

/* Ventajas */
.krece-advantages {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.krece-advantages h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.krece-advantages h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.advantage-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fffaf5;
    border-radius: 15px;
}

.advantage-card i {
    font-size: 2rem;
    color: #ff6b35;
    width: 50px;
    text-align: center;
}

.advantage-card h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #1a1a2e;
}

.advantage-card p {
    font-size: 0.8rem;
    color: #666;
}

/* Requisitos */
.krece-requirements {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.krece-requirements h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.krece-requirements h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.requirements-grid-2cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.requirement-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.requirement-card i {
    width: 35px;
    height: 35px;
    background: #fff0e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
}

.requirement-card span {
    color: #333;
}

/* Formas de pago */
.krece-payment-methods {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.krece-payment-methods h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.krece-payment-methods h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem;
    background: #fffaf5;
    border-radius: 12px;
}

.payment-option i {
    font-size: 1.5rem;
    color: #ff6b35;
}

/* Tabla de ejemplo */
.krece-example-table {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.krece-example-table h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.example-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.example-item {
    background: #fffaf5;
    border-radius: 15px;
    padding: 1.2rem;
    text-align: center;
}

.example-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 0.8rem;
}

.example-installments {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.example-installments span {
    font-size: 0.85rem;
    color: #555;
}

/* Comparación */
.krece-comparison {
    background: #ff6b35;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.krece-comparison h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: white;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 0.8rem;
    border-radius: 12px;
    color: white;
}

.comparison-item i {
    font-size: 1.2rem;
}

/* FAQ */
.krece-faq {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.krece-faq h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.krece-faq h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.faq-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.faq-question i {
    color: #ff6b35;
    font-size: 0.8rem;
}

.faq-answer {
    font-size: 0.85rem;
    color: #666;
    padding-left: 1.5rem;
}

/* CTA */
.krece-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 2rem;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: white;
}

.cta-content i {
    font-size: 3rem;
    color: #ff6b35;
}

.cta-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.cta-content p {
    opacity: 0.8;
}

.krece-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.krece-whatsapp-btn:hover {
    transform: scale(1.05);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .krece-info-section {
        padding: 2rem 1rem;
    }
    
    .krece-info-header h2 {
        font-size: 1.6rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-arrow {
        margin-left: 0;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}










/* ===== SECCIÓN MIS CUOTAS FINANCIAMIENTO ===== */
.miscuotas-info-section {
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e9f0 100%);
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.miscuotas-info-container {
    max-width: 1300px;
    margin: 0 auto;
}

.miscuotas-info-header {
    text-align: center;
    margin-bottom: 2rem;
}

.miscuotas-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0077b6;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.miscuotas-info-header h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.miscuotas-info-header .highlight {
    color: #0077b6;
}

.miscuotas-info-header p {
    color: #555;
    font-size: 1.1rem;
}

/* ¿Qué es Mis Cuotas? */
.miscuotas-about {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 5px solid #0077b6;
}

.miscuotas-about-icon i {
    font-size: 3rem;
    color: #0077b6;
}

.miscuotas-about-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.miscuotas-about-text p {
    color: #555;
    line-height: 1.5;
}

/* Características */
.miscuotas-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-feature i {
    font-size: 2rem;
    color: #0077b6;
}

.feature-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #1a1a2e;
}

.feature-feature p {
    font-size: 0.8rem;
    color: #666;
}

/* Timeline de pasos */
.miscuotas-steps {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.miscuotas-steps h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.miscuotas-steps h3 i {
    color: #0077b6;
    margin-right: 10px;
}

.steps-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.timeline-number {
    width: 45px;
    height: 45px;
    background: #0077b6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.timeline-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.timeline-content p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.timeline-time {
    font-size: 0.7rem;
    color: #0077b6;
    font-weight: bold;
}

.timeline-line {
    width: 2px;
    height: 80px;
    background: #0077b6;
    margin: 0 auto;
    display: none;
}

/* Ventajas Bento */
.miscuotas-advantages {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.miscuotas-advantages h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.miscuotas-advantages h3 i {
    color: #0077b6;
    margin-right: 10px;
}

.advantages-bento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.bento-item {
    background: #f0f8ff;
    padding: 1.2rem;
    border-radius: 15px;
    transition: transform 0.3s;
}

.bento-item:hover {
    transform: translateY(-3px);
}

.bento-large {
    grid-column: span 2;
    background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
    color: white;
}

.bento-large i,
.bento-large h4,
.bento-large p {
    color: white;
}

.bento-item i {
    font-size: 2rem;
    color: #0077b6;
    margin-bottom: 0.8rem;
}

.bento-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #1a1a2e;
}

.bento-item p {
    font-size: 0.8rem;
    color: #666;
}

/* Requisitos */
.miscuotas-requirements {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.miscuotas-requirements h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.miscuotas-requirements h3 i {
    color: #0077b6;
    margin-right: 10px;
}

.requirements-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.req-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.req-icon i {
    width: 40px;
    height: 40px;
    background: #e0f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0077b6;
    font-size: 1.2rem;
}

.req-text h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: #1a1a2e;
}

.req-text p {
    font-size: 0.75rem;
    color: #666;
}

/* Tabla de plazos */
.miscuotas-table {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.miscuotas-table h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.table-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
}

.plazos-table {
    overflow-x: auto;
}

.plazos-header, .plazos-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.plazos-header {
    background: #0077b6;
    color: white;
    border-radius: 12px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.plazos-row:hover {
    background: #f8f9fa;
}

.plazo {
    font-weight: bold;
    color: #0077b6;
}

/* Comparativa */
.miscuotas-comparison {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.miscuotas-comparison h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    text-align: center;
}

.comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    overflow-x: auto;
}

.comp-col {
    border: 1px solid #eee;
}

.comp-header {
    background: #0077b6;
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
}

.highlight-col .comp-header {
    background: #ff6b35;
}

.comp-item {
    padding: 0.8rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.85rem;
}

/* Formas de pago */
.miscuotas-payment {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.miscuotas-payment h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.payment-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.channel {
    text-align: center;
    padding: 1.2rem;
    background: #f0f8ff;
    border-radius: 15px;
}

.channel i {
    font-size: 2rem;
    color: #0077b6;
    display: block;
    margin-bottom: 0.5rem;
}

.channel span {
    display: block;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 0.2rem;
}

.channel small {
    font-size: 0.7rem;
    color: #666;
}

/* FAQ */
.miscuotas-faq {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.miscuotas-faq h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.faq-accordion-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 0.5rem;
}

.faq-accordion-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
    font-weight: bold;
    color: #1a1a2e;
}

.faq-accordion-question i {
    color: #0077b6;
    transition: transform 0.3s;
}

.faq-accordion-item.active .faq-accordion-question i {
    transform: rotate(180deg);
}

.faq-accordion-answer {
    display: none;
    padding: 0 0 1rem 0;
    color: #666;
    line-height: 1.5;
}

.faq-accordion-item.active .faq-accordion-answer {
    display: block;
}

/* CTA */
.miscuotas-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2rem;
    gap: 1rem;
}

.cta-icon i {
    font-size: 3rem;
    color: #0077b6;
}

.cta-text h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.3rem;
}

.cta-text p {
    color: #ccc;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .miscuotas-info-section {
        padding: 2rem 1rem;
    }
    
    .miscuotas-info-header h2 {
        font-size: 1.6rem;
    }
    
    .steps-timeline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .bento-large {
        grid-column: span 1;
    }
    
    .advantages-bento {
        grid-template-columns: 1fr;
    }
    
    .comp-grid {
        font-size: 0.7rem;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
    }
}












/* ===== SECCIÓN PAYJOY FINANCIAMIENTO ===== */
.payjoy-info-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.payjoy-info-container {
    max-width: 1300px;
    margin: 0 auto;
}

.payjoy-info-header {
    text-align: center;
    margin-bottom: 2rem;
}

.payjoy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff6b35;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.payjoy-info-header h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.payjoy-info-header .highlight {
    color: #ff6b35;
    position: relative;
}

.payjoy-info-header p {
    color: #ccc;
    font-size: 1.1rem;
}

/* ¿Qué es Payjoy? */
.payjoy-about {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border-left: 5px solid #ff6b35;
}

.payjoy-about-icon i {
    font-size: 3rem;
    color: #ff6b35;
}

.payjoy-about-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.payjoy-about-text p {
    color: #ccc;
    line-height: 1.5;
}

/* Características */
.payjoy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 15px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
}

.feature-card i {
    font-size: 2rem;
    color: #ff6b35;
}

.feature-card h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: white;
}

.feature-card p {
    font-size: 0.8rem;
    color: #bbb;
}

/* Pasos */
.payjoy-steps {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.payjoy-steps h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.payjoy-steps h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.step-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -12px;
    left: -12px;
    background: #ff6b35;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.step-icon i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.step-card p {
    font-size: 0.85rem;
    color: #bbb;
    margin-bottom: 0.8rem;
}

.step-badge {
    display: inline-block;
    background: rgba(255,107,53,0.2);
    color: #ff6b35;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
}

/* Ventajas */
.payjoy-advantages {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.payjoy-advantages h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.payjoy-advantages h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.advantages-grid-2cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.advantage-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    flex-shrink: 0;
}

.advantage-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: white;
}

.advantage-item p {
    font-size: 0.85rem;
    color: #bbb;
}

/* Requisitos */
.payjoy-requirements {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.payjoy-requirements h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.payjoy-requirements h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.requirements-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.simple-req {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.simple-req i {
    font-size: 1.5rem;
    color: #ff6b35;
}

.simple-req strong {
    color: white;
    display: block;
    font-size: 0.9rem;
}

.simple-req p {
    color: #bbb;
    font-size: 0.75rem;
}

.requirements-note {
    background: rgba(255,107,53,0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    color: #ff6b35;
    font-size: 0.9rem;
}

.requirements-note i {
    margin-right: 8px;
}

/* Tabla de cuotas */
.payjoy-table {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.payjoy-table h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
    text-align: center;
}

.table-subtitle {
    text-align: center;
    color: #bbb;
    margin-bottom: 1.5rem;
}

.weekly-table {
    overflow-x: auto;
}

.weekly-header, .weekly-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.weekly-header {
    background: rgba(255,107,53,0.2);
    border-radius: 12px;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.weekly-row {
    color: #ddd;
}

.weekly-row:hover {
    background: rgba(255,255,255,0.05);
}

.price {
    font-weight: bold;
    color: #ff6b35;
}

.weekly {
    font-weight: bold;
    color: #ff6b35;
}

.table-note {
    font-size: 0.7rem;
    color: #888;
    margin-top: 1rem;
    text-align: center;
}

/* Formas de pago */
.payjoy-payment {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.payjoy-payment h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.payment-methods-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.method {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: transform 0.3s;
}

.method:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
}

.method i {
    font-size: 2rem;
    color: #ff6b35;
    display: block;
    margin-bottom: 0.5rem;
}

.method span {
    display: block;
    font-weight: bold;
    color: white;
    margin-bottom: 0.2rem;
}

.method small {
    font-size: 0.7rem;
    color: #bbb;
}

/* Comparativa */
.payjoy-comparison {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.payjoy-comparison h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.comparison-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.comp-item {
    padding: 1.5rem;
    border-radius: 15px;
}

.payjoy-comp {
    background: rgba(255,107,53,0.1);
    border-left: 4px solid #ff6b35;
}

.others-comp {
    background: rgba(255,255,255,0.05);
    border-left: 4px solid #ff4444;
}

.comp-item h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.comp-item ul {
    list-style: none;
    padding: 0;
}

.comp-item li {
    color: #ddd;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* FAQ */
.payjoy-faq {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.payjoy-faq h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
    font-weight: bold;
    color: white;
}

.faq-question i {
    color: #ff6b35;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 0 1rem 0;
    color: #bbb;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA */
.payjoy-cta {
    margin-bottom: 1rem;
}

.cta-gradient {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-left i {
    font-size: 3rem;
    color: white;
}

.cta-left h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.3rem;
}

.cta-left p {
    color: rgba(255,255,255,0.9);
}

.payjoy-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #075e54;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.payjoy-whatsapp:hover {
    transform: scale(1.05);
    color: white;
}

/* Aviso importante */
.payjoy-notice {
    background: rgba(255,107,53,0.1);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-left: 4px solid #ff6b35;
}

.payjoy-notice i {
    font-size: 1.2rem;
    color: #ff6b35;
}

.payjoy-notice p {
    font-size: 0.8rem;
    color: #ccc;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .payjoy-info-section {
        padding: 2rem 1rem;
    }
    
    .payjoy-info-header h2 {
        font-size: 1.6rem;
    }
    
    .payjoy-about {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-simple {
        grid-template-columns: 1fr;
    }
    
    .cta-gradient {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-left {
        flex-direction: column;
    }
}















/* ===== SECCIÓN DE ACCESORIOS CON IMÁGENES ===== */
.accessories-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.accessories-container {
    max-width: 1300px;
    margin: 0 auto;
}

.accessories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.accessories-header h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.accessories-header .highlight {
    color: #ff6b35;
}

.accessories-header p {
    color: #666;
    font-size: 1.1rem;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.accessory-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.accessory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.accessory-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-content p {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 1.2rem;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a1a2e;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background: #ff6b35;
    color: white;
    gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .accessories-section {
        padding: 2rem 1rem;
    }
    
    .accessories-header h2 {
        font-size: 1.6rem;
    }
    
    .accessories-grid {
        gap: 1rem;
    }
    
    .card-image {
        height: 180px;
    }
}














/* ===== SECCIÓN DE OFERTAS ===== */
.offers-section {
    background: #f5f5f5;
    padding: 2rem 0;
}

.offers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.offer-card {
    display: block;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.offer-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive para tablet */
@media (max-width: 1240px) {
    .offers-container {
        max-width: 95%;
        margin: 0 auto;
    }
}

/* Responsive para teléfono */
@media (max-width: 768px) {
    .offers-section {
        padding: 1rem 0;
    }
    
    .offers-container {
        gap: 1rem;
        max-width: 98%;
    }
    
    .offer-card {
        border-radius: 12px;
    }
    
    .offer-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
}











/* ===== SECCIÓN DE POLÍTICAS DE DEVOLUCIÓN Y CAMBIOS ===== */
.policies-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.policies-container {
    max-width: 1300px;
    margin: 0 auto;
}

.policies-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policies-header h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.policies-header .highlight {
    color: #ff6b35;
    position: relative;
}

.policies-header p {
    color: #666;
    font-size: 1.1rem;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.policy-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    gap: 1.2rem;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.warning-card {
    background: #fff8f0;
    border-left: 4px solid #ff6b35;
}

.policy-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-icon i {
    font-size: 1.5rem;
    color: #ff6b35;
}

.policy-content {
    flex: 1;
}

.policy-content h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
}

.policy-content p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.policy-content ul {
    margin: 0.5rem 0 0 1.2rem;
    padding: 0;
}

.policy-content li {
    color: #555;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.policy-content strong {
    color: #1a1a2e;
}

.required-docs {
    margin-top: 0.8rem;
    font-weight: 500;
}

.no-exception {
    background: #fff0e8;
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-top: 0.5rem;
}

/* Contacto */
.contact-info-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-info-box h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
}

.contact-info-box h3 i {
    color: #ff6b35;
    margin-right: 8px;
}

.contact-info-box > p {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    min-width: 220px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff6b35;
}

.contact-item strong {
    display: block;
    color: #1a1a2e;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.contact-item a {
    display: block;
    color: #ff6b35;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item span {
    color: #555;
    font-size: 0.85rem;
}

.contact-item small {
    font-size: 0.7rem;
    color: #999;
    display: block;
    margin-top: 0.2rem;
}

/* Nota importante */
.important-note {
    background: #e8f4fd;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid #2196f3;
}

.important-note i {
    font-size: 1.3rem;
    color: #2196f3;
}

.important-note p {
    margin: 0;
    color: #333;
    font-size: 0.85rem;
    line-height: 1.4;
}

.important-note strong {
    color: #1a1a2e;
}

/* Responsive */
@media (max-width: 768px) {
    .policies-section {
        padding: 2rem 1rem;
    }
    
    .policies-header h2 {
        font-size: 1.6rem;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .policy-card {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .policy-icon {
        margin: 0 auto;
    }
    
    .policy-content ul {
        text-align: left;
    }
    
    .contact-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .important-note {
        flex-direction: column;
        text-align: center;
    }
}










/* ===== SECCIÓN DE POLÍTICAS DE ENVÍO ===== */
.shipping-policies-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fd 100%);
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.shipping-policies-container {
    max-width: 1300px;
    margin: 0 auto;
}

.shipping-policies-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shipping-policies-header h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.shipping-policies-header .highlight {
    color: #2196f3;
    position: relative;
}

.shipping-policies-header p {
    color: #666;
    font-size: 1.1rem;
}

.shipping-policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.shipping-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    gap: 1.2rem;
}

.shipping-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.free-shipping-card {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #4caf50;
}

.warning-card {
    background: #fff8f0;
    border-left: 4px solid #ff9800;
}

.shipping-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdef5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shipping-icon i {
    font-size: 1.5rem;
    color: #2196f3;
}

.free-shipping-card .shipping-icon {
    background: linear-gradient(135deg, #e8f5e9 0%, #a5d6a7 100%);
}

.free-shipping-card .shipping-icon i {
    color: #4caf50;
}

.warning-card .shipping-icon {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.warning-card .shipping-icon i {
    color: #ff9800;
}

.shipping-content {
    flex: 1;
}

.shipping-content h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
}

.shipping-content p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.shipping-content strong {
    color: #1a1a2e;
}

.store-address {
    background: #f5f5f5;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 0.5rem;
}

/* Tabla resumen */
.shipping-summary {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.shipping-summary h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.shipping-summary h3 i {
    color: #2196f3;
    margin-right: 8px;
}

.summary-table {
    overflow-x: auto;
}

.summary-header, .summary-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.summary-header {
    background: #2196f3;
    color: white;
    border-radius: 12px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.summary-row {
    color: #555;
    font-size: 0.85rem;
}

.summary-row:hover {
    background: #f8f9fa;
}

.free {
    color: #4caf50;
    font-weight: bold;
}

/* Contacto */
.shipping-contact-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.shipping-contact-box h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.shipping-contact-box h3 i {
    color: #2196f3;
    margin-right: 8px;
}

.shipping-contact-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.shipping-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.shipping-contact-item i {
    font-size: 1.5rem;
    color: #2196f3;
}

.shipping-contact-item strong {
    display: block;
    color: #1a1a2e;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.shipping-contact-item a {
    color: #2196f3;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.shipping-contact-item a:hover {
    text-decoration: underline;
}

.shipping-contact-item span {
    color: #555;
    font-size: 0.85rem;
}

/* Footer notas */
.shipping-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.important-note, .changes-note, .commitment-note {
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.important-note {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.changes-note {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.commitment-note {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.important-note i {
    color: #2196f3;
    font-size: 1.3rem;
}

.changes-note i {
    color: #ff9800;
    font-size: 1.3rem;
}

.commitment-note i {
    color: #4caf50;
    font-size: 1.3rem;
}

.important-note p, .changes-note p, .commitment-note p {
    margin: 0;
    color: #333;
    font-size: 0.85rem;
    line-height: 1.4;
}

.important-note strong, .changes-note strong, .commitment-note strong {
    color: #1a1a2e;
}

/* Responsive */
@media (max-width: 768px) {
    .shipping-policies-section {
        padding: 2rem 1rem;
    }
    
    .shipping-policies-header h2 {
        font-size: 1.6rem;
    }
    
    .shipping-policies-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .shipping-card {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .shipping-icon {
        margin: 0 auto;
    }
    
    .summary-header, .summary-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .summary-header span:nth-child(3),
    .summary-header span:nth-child(4),
    .summary-row span:nth-child(3),
    .summary-row span:nth-child(4) {
        display: none;
    }
    
    .shipping-contact-row {
        flex-direction: column;
        align-items: center;
    }
    
    .important-note, .changes-note, .commitment-note {
        flex-direction: column;
        text-align: center;
    }
}









/* ===== SECCIÓN DE POLÍTICAS DE GARANTÍA ===== */
.warranty-policies-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.warranty-policies-container {
    max-width: 1300px;
    margin: 0 auto;
}

.warranty-policies-header {
    text-align: center;
    margin-bottom: 3rem;
}

.warranty-policies-header h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.warranty-policies-header .highlight {
    color: #4caf50;
    position: relative;
}

.warranty-policies-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Introducción */
.warranty-intro {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 5px solid #4caf50;
}

.intro-icon i {
    font-size: 3rem;
    color: #4caf50;
}

.intro-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.intro-text strong {
    color: #1a1a2e;
}

.contact-note {
    background: #e8f5e9;
    padding: 0.8rem;
    border-radius: 10px;
    margin-top: 0.5rem;
}

/* Grid principal */
.warranty-policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.warranty-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    gap: 1.2rem;
}

.warranty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.warranty-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warranty-icon i {
    font-size: 1.5rem;
    color: #4caf50;
}

.warranty-content {
    flex: 1;
}

.warranty-content h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
}

.warranty-content p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.warranty-content ul {
    margin: 0;
    padding-left: 1.2rem;
}

.warranty-content li {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.duration {
    color: #4caf50;
    font-weight: bold;
}

.no-cover {
    background: #ffebee;
    padding: 0.8rem;
    border-radius: 10px;
    margin-top: 0.8rem;
}

/* Exclusiones */
.exclusions-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.exclusions-section h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.exclusions-section h3 i {
    color: #f44336;
    margin-right: 8px;
}

.exclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.8rem;
}

.exclusion-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #fff5f5;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #555;
}

.exclusion-item i {
    color: #f44336;
    font-size: 1rem;
    flex-shrink: 0;
}

.exclusion-item strong {
    color: #1a1a2e;
}

/* Proceso de garantía */
.process-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.process-section h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.process-section h3 i {
    color: #2196f3;
    margin-right: 8px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.2s;
}

.step-item:hover {
    background: #f0f7ff;
}

.step-number {
    width: 35px;
    height: 35px;
    background: #2196f3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-text {
    color: #555;
    line-height: 1.5;
    font-size: 0.9rem;
}

.step-text strong {
    color: #1a1a2e;
}

.process-note {
    background: #e3f2fd;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.process-note i {
    color: #2196f3;
    font-size: 1.2rem;
}

.process-note p {
    margin: 0;
    color: #333;
    font-size: 0.85rem;
}

/* Software */
.software-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdef5 100%);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.software-icon i {
    font-size: 2.5rem;
    color: #2196f3;
}

.software-content h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 0.3rem;
}

.software-content p {
    color: #333;
    font-size: 0.9rem;
}

/* Contacto */
.warranty-contact-box {
    background: #1a1a2e;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
}

.warranty-contact-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.warranty-contact-box h3 i {
    color: #4caf50;
    margin-right: 8px;
}

.warranty-contact-box > p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.warranty-contact-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.warranty-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.warranty-contact-item i {
    font-size: 1.5rem;
    color: #4caf50;
}

.warranty-contact-item strong {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.warranty-contact-item a {
    color: #4caf50;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.warranty-contact-item a:hover {
    text-decoration: underline;
}

.warranty-contact-item span {
    color: #ccc;
    font-size: 0.85rem;
}

/* Footer */
.warranty-footer {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.warranty-footer p {
    color: #555;
    font-size: 0.9rem;
}

.warranty-footer strong {
    color: #1a1a2e;
}

/* Responsive */
@media (max-width: 768px) {
    .warranty-policies-section {
        padding: 2rem 1rem;
    }
    
    .warranty-policies-header h2 {
        font-size: 1.6rem;
    }
    
    .warranty-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .warranty-policies-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .warranty-card {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .warranty-icon {
        margin: 0 auto;
    }
    
    .warranty-content ul {
        text-align: left;
    }
    
    .exclusions-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .software-section {
        flex-direction: column;
        text-align: center;
    }
    
    .warranty-contact-row {
        flex-direction: column;
        align-items: center;
    }
}










/* ===== SECCIÓN DE POLÍTICAS DE SORTEO ===== */
.sweepstakes-policies-section {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.sweepstakes-policies-container {
    max-width: 1300px;
    margin: 0 auto;
}

.sweepstakes-policies-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sweepstakes-policies-header h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.sweepstakes-policies-header .highlight {
    color: #ff9800;
    position: relative;
}

.sweepstakes-policies-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Introducción */
.sweepstakes-intro {
    background: white;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 5px solid #ff9800;
}

.intro-icon i {
    font-size: 2.5rem;
    color: #ff9800;
}

.intro-text p {
    margin: 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
}

.intro-text strong {
    color: #1a1a2e;
}

/* Grid principal */
.sweepstakes-policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.sweepstakes-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    gap: 1.2rem;
}

.sweepstakes-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.sweepstakes-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sweepstakes-icon i {
    font-size: 1.5rem;
    color: #ff9800;
}

.sweepstakes-content {
    flex: 1;
}

.sweepstakes-content h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
}

.sweepstakes-content ul {
    margin: 0;
    padding-left: 1.2rem;
}

.sweepstakes-content li {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.sweepstakes-content li strong {
    color: #1a1a2e;
}

/* Reglas */
.rules-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.rules-section h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.rules-section h3 i {
    color: #ff9800;
    margin-right: 8px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #fffbf5;
    border-radius: 12px;
    transition: transform 0.2s;
}

.rule-item:hover {
    background: #fff5e6;
}

.rule-item i {
    font-size: 1.2rem;
    color: #ff9800;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.rule-item h4 {
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 0.3rem;
}

.rule-item p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

.rule-item strong {
    color: #1a1a2e;
}

/* Evaluación */
.evaluation-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.evaluation-section h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.evaluation-section h3 i {
    color: #2196f3;
    margin-right: 8px;
}

.evaluation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
}

.evaluation-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.2s;
}

.evaluation-card:hover {
    transform: translateY(-3px);
    background: #f0f7ff;
}

.eval-number {
    width: 40px;
    height: 40px;
    background: #2196f3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.eval-content h4 {
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.eval-content p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 0.3rem;
}

.warning-text {
    color: #ff9800 !important;
    font-weight: 500;
}

/* Determinación de premios */
.prize-determination {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.determination-icon i {
    font-size: 2.5rem;
    color: #ff9800;
}

.determination-content h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.determination-content p {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.determination-content strong {
    color: #1a1a2e;
}

/* Reserva de derechos */
.rights-reserved {
    background: #1a1a2e;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.rights-icon i {
    font-size: 2.5rem;
    color: #ff9800;
}

.rights-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rights-content p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.rights-content strong {
    color: white;
}

/* Contacto */
.sweepstakes-contact-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sweepstakes-contact-box h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.sweepstakes-contact-box h3 i {
    color: #ff9800;
    margin-right: 8px;
}

.sweepstakes-contact-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.sweepstakes-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.sweepstakes-contact-item i {
    font-size: 1.5rem;
    color: #ff9800;
}

.sweepstakes-contact-item strong {
    display: block;
    color: #1a1a2e;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.sweepstakes-contact-item a {
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.sweepstakes-contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.sweepstakes-footer {
    background: #fff8e1;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid #ff9800;
}

.sweepstakes-footer i {
    font-size: 1.2rem;
    color: #ff9800;
}

.sweepstakes-footer p {
    margin: 0;
    color: #333;
    font-size: 0.85rem;
    line-height: 1.4;
}

.sweepstakes-footer strong {
    color: #1a1a2e;
}

/* Responsive */
@media (max-width: 768px) {
    .sweepstakes-policies-section {
        padding: 2rem 1rem;
    }
    
    .sweepstakes-policies-header h2 {
        font-size: 1.6rem;
    }
    
    .sweepstakes-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .sweepstakes-policies-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sweepstakes-card {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .sweepstakes-icon {
        margin: 0 auto;
    }
    
    .sweepstakes-content ul {
        text-align: left;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .evaluation-grid {
        grid-template-columns: 1fr;
    }
    
    .evaluation-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .prize-determination {
        flex-direction: column;
        text-align: center;
    }
    
    .rights-reserved {
        flex-direction: column;
        text-align: center;
    }
    
    .sweepstakes-contact-row {
        flex-direction: column;
        align-items: center;
    }
    
    .sweepstakes-footer {
        flex-direction: column;
        text-align: center;
    }
}












/* ===== SECCIÓN DE TÉRMINOS Y CONDICIONES ===== */
.terms-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.terms-container {
    max-width: 1300px;
    margin: 0 auto;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
}

.terms-header h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.terms-header .highlight {
    color: #6c63ff;
    position: relative;
}

.terms-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Información de la empresa */
.company-info {
    background: white;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 5px solid #6c63ff;
}

.company-icon i {
    font-size: 2.5rem;
    color: #6c63ff;
}

.company-text p {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
}

.company-text strong {
    color: #1a1a2e;
}

/* Grid principal */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.terms-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    gap: 1.2rem;
}

.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.terms-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #e8e6ff 0%, #d4d0ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terms-icon i {
    font-size: 1.5rem;
    color: #6c63ff;
}

.terms-content {
    flex: 1;
}

.terms-content h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
}

.terms-content p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.terms-content ul {
    margin: 0.5rem 0 0 1.2rem;
    padding: 0;
}

.terms-content li {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.terms-content strong {
    color: #1a1a2e;
}

/* Emisión de comprobantes */
.invoice-section {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 5px solid #28a745;
}

.invoice-icon i {
    font-size: 2rem;
    color: #28a745;
}

.invoice-content h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
}

.invoice-content p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.invoice-content strong {
    color: #1a1a2e;
}

/* Reserva de derechos */
.rights-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
}

.rights-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.rights-section h3 i {
    margin-right: 8px;
}

.rights-section p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Contacto */
.terms-contact-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.terms-contact-box h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.terms-contact-box h3 i {
    color: #6c63ff;
    margin-right: 8px;
}

.terms-contact-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.terms-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.terms-contact-item i {
    font-size: 1.5rem;
    color: #6c63ff;
}

.terms-contact-item strong {
    display: block;
    color: #1a1a2e;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.terms-contact-item a {
    color: #6c63ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.terms-contact-item a:hover {
    text-decoration: underline;
}

.terms-contact-item span {
    color: #555;
    font-size: 0.85rem;
}

/* Footer */
.terms-footer {
    background: #e8e6ff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid #6c63ff;
}

.terms-footer i {
    font-size: 1.2rem;
    color: #6c63ff;
}

.terms-footer p {
    margin: 0;
    color: #333;
    font-size: 0.85rem;
    line-height: 1.4;
}

.terms-footer strong {
    color: #1a1a2e;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-section {
        padding: 2rem 1rem;
    }
    
    .terms-header h2 {
        font-size: 1.6rem;
    }
    
    .company-info {
        flex-direction: column;
        text-align: center;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .terms-card {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .terms-icon {
        margin: 0 auto;
    }
    
    .terms-content ul {
        text-align: left;
    }
    
    .invoice-section {
        flex-direction: column;
        text-align: center;
    }
    
    .terms-contact-row {
        flex-direction: column;
        align-items: center;
    }
    
    .terms-footer {
        flex-direction: column;
        text-align: center;
    }
}











/* ===== HERO ALTERNATIVO - CATÁLOGO COMPLETO ===== */
.catalog-hero {
    position: relative;
    background: #E35436; /* Color terracota principal de la marca */
    padding: 20px 0 20px;
    overflow: hidden;
}

.catalog-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Contenido izquierdo */
.catalog-hero-content {
    flex: 1;
    max-width: 650px;
}

/* Badge */
.catalog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.catalog-hero-badge i {
    font-size: 0.8rem;
}

/* Título */
.catalog-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.catalog-hero-title .highlight {
    color: #FFD4C6;
    position: relative;
    display: inline-block;
}

/* Descripción */
.catalog-hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Beneficios rápidos */
.catalog-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-feature-item i {
    color: #FFFFFF;
    font-size: 1.1rem;
}

/* Botones */
.catalog-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-main-catalog {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #575756; /* Gris secundario de la marca */
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-main-catalog:hover {
    background: #3D3D3C; /* Gris más oscuro para hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-main-catalog i:last-child {
    transition: transform 0.3s ease;
}

.btn-main-catalog:hover i:last-child {
    transform: translateX(5px);
}

.btn-secondary-catalog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.btn-secondary-catalog:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Marcas destacadas */
.catalog-hero-brands {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
}

.brands-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brands-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.brands-icons span {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    cursor: pointer;
}

.brands-icons span:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Imagen derecha */
.catalog-hero-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 30px;
    animation: floatImage 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
}

/* Animación flotante para la imagen */
@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Elemento decorativo opcional - círculo detrás */
.catalog-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .catalog-hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .catalog-hero-content {
        max-width: 100%;
    }
    
    .catalog-hero-features {
        justify-content: center;
    }
    
    .catalog-hero-buttons {
        justify-content: center;
    }
    
    .brands-icons {
        justify-content: center;
    }
    
    .catalog-hero-title {
        font-size: 2.5rem;
    }
    
    .catalog-hero-image {
        order: -1;
    }
    
    .catalog-hero-image img {
        max-width: 350px;
    }
    
    .catalog-hero::after {
        width: 400px;
        height: 400px;
        right: -30%;
    }
}

@media (max-width: 768px) {
    .catalog-hero {
        padding: 50px 0 60px;
    }
    
    .catalog-hero-container {
        padding: 0 20px;
    }
    
    .catalog-hero-title {
        font-size: 1.8rem;
    }
    
    .catalog-hero-description {
        font-size: 0.95rem;
    }
    
    .catalog-hero-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .catalog-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-main-catalog, 
    .btn-secondary-catalog {
        width: 100%;
        justify-content: center;
    }
    
    .brands-icons {
        gap: 12px;
    }
    
    .brands-icons span {
        font-size: 0.75rem;
    }
    
    .catalog-hero-image img {
        max-width: 250px;
    }
    
    .catalog-hero::after {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .catalog-hero-title {
        font-size: 1.5rem;
    }
    
    .catalog-hero-badge {
        font-size: 0.65rem;
        padding: 4px 12px;
    }
    
    .hero-feature-item {
        font-size: 0.75rem;
    }
    
    .brands-icons span {
        font-size: 0.7rem;
    }
    
    .catalog-hero::after {
        display: none;
    }
}