/* ===================================================================
   RESPONSIVE DESIGN - TABLETS (768px - 968px)
   =================================================================== */
@media (max-width: 968px) {
    .topbar-container {
        padding: 0 1rem;
    }
    
    .topbar-left {
        gap: 1rem;
    }
    
    .topbar-item {
        font-size: 0.75rem;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 220px;
        max-width: 200px;
    }
    
    .header-actions {
        gap: 0.8rem;
    }
    
    .hero-slider {
        height: 70vh;
        margin-top: 125px;
    }
    
    .slide-content {
        max-width: 500px;
        padding: 0 1.5rem;
    }
    
    .slider-btn {
        font-size: 1.2rem;
        padding: 0.8rem;
    }
    
    .prev { left: 15px; }
    .next { right: 15px; }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-content-side {
        padding-left: 0;
        order: -1;
    }
    
    .about-image-side {
        height: 500px;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .stats-overlay {
        top: 1rem;
        left: 1rem;
        padding: 1.5rem;
        min-width: 180px;
    }
    
    .stats-number {
        font-size: 3rem;
    }
    
    .proposito-container {
        gap: 3rem;
    }
    
    .proposito-content {
        padding-right: 1rem;
    }
    
    .proposito-title {
        font-size: 2.4rem;
    }
    
    .proposito-description {
        font-size: 1rem;
    }
    
    .proposito-image {
        height: 400px;
    }
}

/* ===================================================================
   RESPONSIVE DESIGN - MÓVILES (768px y menores)
   =================================================================== */
@media (max-width: 768px) {
    .topbar-left {
        gap: 1rem;
    }
    
    .topbar-item span {
        display: none;
    }
    
    /* MOSTRAR HAMBURGER EN MÓVIL */
    .hamburger {
        display: flex !important;
    }
    
    /* ===================================================================
   MENÚ MÓVIL
   =================================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(25px);
    z-index: 999;
    transition: left 0.3s ease;
    display: none;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    overflow-y: auto;
    padding: 120px 1rem 2rem;
}

.mobile-menu-content a {
    width: 90%;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.mobile-menu-content a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

    
    /* CARRITO PERMANECE VISIBLE EN MÓVIL */
    .desktop-cart {
        display: flex !important;
        background: rgba(255, 255, 255, 0.2) !important;
        padding: 0.6rem 0.8rem !important;
        border-radius: 50px !important;
        font-size: 0.9rem !important;
    }
    
    .header-actions {
        gap: 0.8rem;
    }
    
    .hero-slider {
        height: 60vh;
        margin-top: 125px;
    }
    
    .slide-content {
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .slider-btn {
        font-size: 1rem;
        padding: 0.6rem;
    }
    
    .prev { left: 10px; }
    .next { right: 10px; }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }
    
    .about-section {
        padding: 4rem 0;
    }
    
    .about-container {
        padding: 0 1.5rem;
        gap: 2.5rem;
    }
    
    .about-image-side {
        height: 400px;
        position: relative;
        width: 100%;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .stats-overlay {
        padding: 1rem;
        min-width: 150px;
        position: absolute;
        top: 1rem;
        left: 1rem;
        z-index: 10;
        background: var(--primary-blue);
        color: white;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .stats-text {
        font-size: 0.8rem;
    }
    
    .main-image {
        position: absolute !important;
        top: 10% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 80% !important;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        animation: float 6s ease-in-out infinite;
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    }
    
    .about-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        display: block !important;
    }
    
    .secondary-image {
        display: none !important;
    }
    
    .feature-item {
        text-align: left;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .proposito-section {
        padding: 4rem 0;
    }
    
    .proposito-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .proposito-content {
        padding-right: 0;
        order: 1;
        animation: slideInUp 0.8s ease-out;
    }
    
    .proposito-image {
        order: 2;
        height: 350px;
        margin: 0 auto;
        max-width: 500px;
        animation: slideInUp 0.8s ease-out 0.2s both;
    }
    
    .proposito-title {
        font-size: 2rem;
    }
    
    .proposito-description {
        text-align: left;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .carrito-content {
        width: 95%;
        margin: 1rem;
    }
    
    .carrito-actions {
        flex-direction: column;
    }
    
    .numerito {
        top: -6px;
        right: -6px;
        min-width: 18px;
        height: 18px;
        font-size: 0.7rem;
        padding: 2px 6px;
    }
    
    .cart-link {
        padding: 6px 10px !important;
        font-size: 0.9rem !important;
    }
    
    .clients-section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .clients-subtitle {
        font-size: 1.1rem;
    }
    
    .logos-carousel {
        margin-bottom: 3rem;
    }
    
    .logos-row::before,
    .logos-row::after {
        display: none;
    }
    
    .logos-track {
        animation-duration: 20s;
        gap: 0.3rem;
    }
    
    .logo-card {
        width: 220px;
        height: 110px;
        padding: 0.3rem;
    }
    
    .logo-card img {
        width: 180px;
        height: 100px;
    }
    
    .metric-card {
        padding: 2rem 1.5rem;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .metric-number {
        font-size: 1.75rem;
    }
    
    .header.move-up ~ .hero-slider {
        margin-top: 80px;
    }
}

/* ===================================================================
   RESPONSIVE DESIGN - MÓVILES PEQUEÑOS (480px y menores)
   =================================================================== */
@media (max-width: 480px) {
    /* TOPBAR CORREGIDO PARA MÓVILES PEQUEÑOS */
    .topbar {
        height: 35px;
    }
    
    .topbar-left {
        display: flex !important;
        gap: 0.8rem;
    }
    
    /* Mostrar solo teléfono y email */
    .topbar-item:nth-child(1),
    .topbar-item:nth-child(2) {
        display: flex;
        font-size: 0.7rem;
    }
    
    .topbar-item:nth-child(3) {
        display: none;
    }
    
    .topbar-right .topbar-item {
        display: none;
    }
    
    .social-links {
        display: flex;
    }
    
    .topbar-container {
        padding: 0 1rem;
    }
    
    /* HEADER AJUSTADO */
    .header {
        top: 35px;
        height: 60px;
    }
    
    .header.scrolled {
        top: 0;
    }
    
    .header.move-up {
        transform: translateY(-35px);
    }
    
    .logo-img {
        height: 180px;
        max-width: 160px;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .desktop-cart {
        padding: 0.5rem 0.7rem !important;
        font-size: 0.85rem !important;
    }
    
    .numerito {
        font-size: 0.7rem;
        min-width: 16px;
        height: 16px;
    }
    
    /* HAMBURGER ASEGURADO */
    .hamburger {
        display: flex !important;
        z-index: 1004 !important;
    }
    
    .mobile-menu {
        display: block !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    /* HERO SLIDER */
    .hero-slider {
        height: 50vh;
        margin-top: 95px;
    }
    
    .header.move-up ~ .hero-slider {
        margin-top: 60px;
    }
    
    .slide-content h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.5rem;
    }
    
    .slide-content p {
        font-size: clamp(0.8rem, 4vw, 1rem);
        margin-bottom: 1rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .slider-btn {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    /* ABOUT SECTION */
    .about-container {
        padding: 0 1rem;
    }
    
    .about-image-side {
        height: 300px !important;
        position: relative !important;
        width: 100% !important;
    }
    
    .about-title {
        font-size: 1.6rem;
    }
    
    .stats-overlay {
        top: 0.5rem !important;
        left: 0.5rem !important;
        padding: 0.8rem !important;
        min-width: 130px !important;
        position: absolute !important;
        z-index: 10 !important;
        background: var(--primary-blue) !important;
        color: white !important;
        border-radius: 16px !important;
        animation: floatStats 7s ease-in-out infinite;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .stats-text {
        font-size: 0.7rem;
    }
    
    .about-features {
        gap: 2rem;
    }
    
    .main-image {
        position: absolute !important;
        top: 10% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 85% !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
        animation: float 6s ease-in-out infinite !important;
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%) !important;
        margin: 0 !important;
    }
    
    .about-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
    
    .secondary-image {
        display: none !important;
        visibility: hidden !important;
    }
    
    .decorative-hex {
        width: 60px;
        height: 60px;
        background-size: 10px 10px;
        bottom: -1rem;
        right: -1rem;
    }
    
    /* PROPOSITO SECTION */
    .proposito-container {
        padding: 0 1.5rem;
        gap: 2rem;
    }
    
    .proposito-title {
        font-size: 1.7rem;
    }
    
    .proposito-description {
        font-size: 0.95rem;
    }
    
    .proposito-image {
        height: 280px;
        border-radius: 16px;
    }
    
    /* CATEGORIES */
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    /* CARRITO */
    .cart-link {
        padding: 4px 8px !important;
        font-size: 0.85rem !important;
    }
    
    .carrito-item {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .item-info {
        flex-basis: 100%;
        order: -1;
    }
    
    /* TRUST METRICS */
    .trust-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .logos-track {
        animation-duration: 15s;
        gap: 0.2rem;
    }
    
    .logo-card {
        width: 200px;
        height: 100px;
        padding: 0.2rem;
    }
    
    .logo-card img {
        width: 160px;
        height: 90px;
    }
}

/* ===================================================================
   MÓVILES MUY PEQUEÑOS (320px y menores)
   =================================================================== */
@media (max-width: 320px) {
    .hero-slider {
        height: 45vh;
    }
    
    .slide-content h1 {
        font-size: 1.3rem;
    }
    
    .slide-content p {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* ===================================================================
   PANTALLAS MUY ANCHAS (1400px y mayores)
   =================================================================== */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

/* ===================================================================
   EFECTOS ADICIONALES
   =================================================================== */
.about-img,
.team-img {
    filter: brightness(1) contrast(1.1);
    transition: all 0.3s ease;
}

.main-image:hover .about-img,
.secondary-image:hover .team-img {
    filter: brightness(1.1) contrast(1.2);
}

/* ===================================================================
   UTILITY CLASSES
   =================================================================== */
.main-container {
    padding: 1rem;
    margin-top: 80px;
}

.content-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.titulo-principal {
    font-size: 2rem;
}

.filtros-container {
    justify-content: center;
}

.contenedor-productos {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* ===================================================================
   AJUSTE FINAL DEL CONTENIDO
   =================================================================== */
.hero-slider {
    margin-top: 125px; /* 45px topbar + 80px header */
}

/* RESPONSIVE FINAL */
@media (max-width: 768px) {
    .main-container {
        padding: 1rem;
        margin-top: 80px;
    }
}

@media (max-width: 480px) {
    .contenedor-productos {
        grid-template-columns: 1fr;
    }
    
    .main-container {
        margin-top: 95px; /* 35px topbar + 60px header */
    }
} /* ===================================================================
   RESET Y VARIABLES GLOBALES
   =================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3c72;
    --secondary-blue: #2a5298;
    --accent-color: #667eea;
    --text-dark: #333;
    --text-light: #666;
    --text-muted: #666;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
     font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================================================
   TOPBAR RESPONSIVE CON GRADIENTE DINÁMICO
   =================================================================== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0c197b;
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    color: var(--white);
    padding: 0.5rem 0;
    z-index: 1001;
    height: 45px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.topbar.hidden {
    transform: translateY(-100%);
}

.topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 100%;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.topbar-item:hover {
    color: #3b82f6;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    color: #3b82f6;
    transform: scale(1.1);
}


/* ===================================================================
   HEADER CON BLUR ELEGANTE
   =================================================================== */
.header {
    position: fixed;
    top: 45px;
    left: 0;
    width: 100%;
    background:#10209e;
    backdrop-filter: blur(12px) saturate(130%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    height: 80px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}
.header.move-up {
    transform: translateY(-45px);
}

.header.scrolled {
    top: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a {
    display: inline-block;
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 240px;
    display: block;
}


/* ===================================================================
   NAVEGACIÓN RESPONSIVE
   =================================================================== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a,
.nav-menu button {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}

.nav-menu a:hover,
.nav-menu button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ===================================================================
   CARRITO Y ACCIONES DEL HEADER
   =================================================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1002;
}

.desktop-cart,
.cart-link {
    background: rgba(255, 255, 255, 0.2) !important;
    padding: 0.75rem 1rem !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    color: var(--white);
    border: none;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.desktop-cart:hover,
.cart-link:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
}
/* ===================================================================
   HAMBURGER MENU
   =================================================================== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1002;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===================================================================
   NUMERITO DEL CARRITO CON ANIMACIÓN
   =================================================================== */
.numerito {
    background: #e52521;
    animation: subtlePulse 3s infinite;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -5px;
}

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===================================================================
   CONTENIDO PRINCIPAL ULTRA RESPONSIVE
   =================================================================== */
.main-container {
    width: 100%;
    max-width: 1400px;
    margin: 125px auto 0;
    padding: 1rem;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px) saturate(120%);
    border: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.08);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    flex-wrap: wrap;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.titulo-principal {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.15));
    font-size: 2.5rem;
    font-weight: 700;
}

/* ===================================================================
   MOBILE MENU - SISTEMA ÚNICO
   =================================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(25px) saturate(150%) brightness(0.7);
    -webkit-backdrop-filter: blur(25px) saturate(150%) brightness(0.7);
    z-index: 999;
    transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    z-index: -1;
}

.mobile-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.02);
    z-index: -1;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    height: 100%;
    overflow-y: auto;
    position: relative;
    z-index: 2;
}

.mobile-menu-content a {
    width: 90%;
    margin: 0.25rem 0;
    padding: 1rem 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px) saturate(130%);
    -webkit-backdrop-filter: blur(15px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.mobile-menu-content a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px) scale(1.02);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 1);
}

.mobile-cart-btn {
    width: 85%;
    margin: 2rem auto;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.mobile-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.mobile-cart-btn:hover::before {
    left: 100%;
}

.mobile-cart-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.02);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.mobile-cart-btn.has-items {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 0 1px rgba(239, 68, 68, 0.1);
}

.mobile-cart-btn.has-items::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    animation: liquidPulse 2s infinite;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2),
                0 0 20px rgba(239, 68, 68, 0.6);
}

@keyframes liquidPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.mobile-cart-btn.has-items:hover {
    background: rgba(239, 68, 68, 0.25);
    border: 1px solid rgba(239, 68, 68, 0.4);
    box-shadow: 0 16px 48px rgba(239, 68, 68, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                0 0 0 1px rgba(239, 68, 68, 0.2);
}

.numerito-mobile {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-radius: 50%;
    padding: 0.3rem 0.6rem;
    font-size: 0.9rem;
    min-width: 24px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* ===================================================================
   OVERLAYS
   =================================================================== */
.mobile-overlay,
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active,
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/* ===================================================================
   MODAL DEL CARRITO - ESTRUCTURA ORIGINAL
   =================================================================== */
.carrito-modal {
    display: none;
    position: fixed;
    z-index: 10050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.carrito-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrito-content {
    background: white;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideIn 0.3s ease;
    position: relative;
    z-index: 10051;
}

.carrito-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carrito-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.carrito-items {
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem;
}

.carrito-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.carrito-total {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.carrito-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-vaciar,
.btn-comprar {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    min-width: 120px;
}

.btn-vaciar {
    background: #f44336;
    color: white;
}

.btn-vaciar:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

.btn-comprar {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
}

.btn-comprar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

/* ITEMS DEL CARRITO - ESTRUCTURA HORIZONTAL ORIGINAL */
.carrito-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.carrito-item:last-child {
    border-bottom: none;
}

.item-imagen {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.item-info {
    flex: 1;
}

.item-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.item-precio {
    margin: 0;
    color: var(--accent-color);
    font-weight: 600;
}

.item-cantidad {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cantidad {
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent-color);
    background: white;
    color: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: var(--transition);
}

.btn-cantidad:hover {
    background: var(--accent-color);
    color: white;
}

.item-subtotal {
    font-weight: bold;
    color: var(--primary-blue);
    min-width: 80px;
    text-align: right;
}

.btn-eliminar {
    background: #f44336;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-eliminar:hover {
    background: #d32f2f;
    transform: scale(1.1);
}

.carrito-vacio {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-dark);
}

.carrito-vacio p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.btn-seguir-comprando {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-seguir-comprando:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* ===================================================================
   RESPONSIVE PARA EL CARRITO ORIGINAL
   =================================================================== */
@media (max-width: 768px) {
    .carrito-content {
        width: 95%;
        margin: 1rem;
    }
    
    .carrito-header {
        padding: 1rem;
    }
    
    .carrito-header h2 {
        font-size: 1.3rem;
    }
    
    .carrito-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-vaciar,
    .btn-comprar {
        min-width: 100px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .carrito-content {
        width: 95%;
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .carrito-header {
        padding: 1rem;
    }
    
    .carrito-header h2 {
        font-size: 1.2rem;
    }
    
    .carrito-items {
        padding: 0.8rem;
        max-height: 300px;
    }
    
    .carrito-item {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.8rem;
    }
    
    .item-info {
        flex-basis: 100%;
        order: -1;
    }
    
    .item-info h4 {
        font-size: 0.9rem;
    }
    
    .item-precio {
        font-size: 0.8rem;
    }
    
    .item-imagen {
        width: 50px;
        height: 50px;
    }
    
    .btn-cantidad {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .btn-eliminar {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .item-subtotal {
        font-size: 0.9rem;
        min-width: 70px;
    }
    
    .carrito-footer {
        padding: 1rem;
    }
    
    .carrito-total {
        font-size: 1.2rem;
    }
    
    .carrito-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-vaciar, 
    .btn-comprar {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        min-width: 100px;
    }
}

@media (max-width: 360px) {
    .carrito-content {
        width: 98%;
        margin: 0.2rem;
    }
    
    .carrito-header {
        padding: 0.6rem;
    }
    
    .carrito-header h2 {
        font-size: 1rem;
    }
    
    .close-btn {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
    
    .carrito-items {
        padding: 0.4rem;
        max-height: 250px;
    }
    
    .carrito-item {
        padding: 0.4rem;
        gap: 0.4rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .item-imagen {
        width: 35px;
        height: 35px;
    }
    
    .item-info {
        width: 100%;
        order: 1;
    }
    
    .item-cantidad {
        order: 2;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    
    .item-subtotal {
        order: 3;
        width: 100%;
        text-align: left;
        font-size: 0.8rem;
    }
    
    .btn-eliminar {
        order: 4;
        align-self: center;
    }
}

/* ===================================================================
   SWEETALERT Z-INDEX
   =================================================================== */
.swal2-container {
    z-index: 99999 !important;
}

.swal2-popup {
    z-index: 100000 !important;
}

.swal2-backdrop-show {
    z-index: 99998 !important;
}


/* ===================================================================
   HERO SLIDER
   =================================================================== */
.hero-slider {
    height: 75vh;
    position: relative;
    overflow: hidden;
    margin-top: 125px;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.slide-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 600px;
    padding: 0 2rem;
    position: relative;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.slide-content p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background: var(--white);
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0);
    border: none;
    color: rgba(255, 255, 255, 0.441);
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    border-radius: 50%;
    
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev { left: 20px; }
.next { right: 20px; }

/* ===================================================================
   SECCIÓN SOBRE HYPERMETALES - SIMPLE Y FUNCIONAL
   =================================================================== */

.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(147, 197, 253, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* LADO IZQUIERDO - IMÁGENES */
.about-image-side {
    position: relative;
    height: 600px;
}

.stats-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #273583;
    color: white;
    padding: 1rem;
    border-radius: 16px;
    z-index: 5;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
    min-width: 200px;
    animation: floatStats 8s ease-in-out infinite;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-text {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.95;
}

.main-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 60%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.main-image:hover .about-img {
    transform: scale(1.05);
}

/* SEGUNDA IMAGEN - AHORA MÁS HORIZONTAL PARA VIDEO */
.secondary-image {
    position: absolute;
    bottom: 1rem; /* Más separado del borde */
    left: 0;
    width: 85%; /* Más ancho - era 60% */
    height: 50%; /* Más alto - era 40% para mejor visibilidad */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
    animation: floatReverse 8s ease-in-out infinite;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    aspect-ratio: 16/9; /* Formato ideal para video */
}

/* ESTILOS PARA VIDEO EN LA SEGUNDA IMAGEN */
.secondary-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.secondary-image:hover video {
    transform: scale(1.05);
}

/* MANTENER COMPATIBILIDAD CON IMAGEN */
.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.secondary-image:hover .team-img {
    transform: scale(1.05);
}

/* BOTÓN DE PLAY PARA VIDEO (OPCIONAL) */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.video-play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid var(--primary-blue);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.video-play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* LADO DERECHO - CONTENIDO */
.about-content-side {
    padding-left: 2rem;
}

.about-badge {
    display: inline-block;
    background: #273583;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 197, 253, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0);
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    letter-spacing: 0.3px;
}

.feature-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-side {
        height: 500px; /* Aumentado para acomodar mejor el video */
        order: 2;
    }
    
    /* HACER QUE EL VIDEO SEA MÁS PROMINENTE EN MÓVILES */
    .main-image {
        width: 60%; /* Reducido para dar más espacio al video */
        height: 45%; /* Reducido */
        top: 0;
        right: 0;
    }
    
    .secondary-image {
        width: 95%; /* Casi todo el ancho en móviles */
        height: 45%; /* Más alto en móviles */
        bottom: 0;
        left: 0;
        z-index: 4; /* Asegurar que esté por encima */
    }
    
    .stats-overlay {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.8rem;
        min-width: 160px;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .about-content-side {
        padding-left: 0;
        order: 1;
    }
}

/* ANIMACIONES */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
}

@keyframes floatStats {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* ===================================================================
   RESPONSIVE - TABLETS Y MÓVILES
   =================================================================== */
@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .about-content-side {
        order: 1;
        padding-left: 0;
    }
    
    .about-image-side {
        order: 2;
        height: 400px;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 1rem;
        text-align: left;
    }
    
    .stats-overlay {
        padding: 1rem;
        min-width: 150px;
        top: 1rem;
        left: 1rem;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .stats-text {
        font-size: 0.8rem;
    }
    
    .main-image {
        top: 5%;
        left: 5%;
        width: 90%;
        height: 90%;
        min-height: 320px;
    }
    
    .secondary-image {
        display: none;
    }
    
    .feature-item {
        text-align: left;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 1rem;
    }
    
    .about-image-side {
        height: 350px;
    }
    
    .about-title {
        font-size: 1.6rem;
    }
    
    .stats-overlay {
        padding: 0.8rem;
        min-width: 130px;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .stats-text {
        font-size: 0.7rem;
    }
    
    .main-image {
        min-height: 280px;
    }
    
    .about-features {
        gap: 2rem;
    }
}

/* ===================================================================
   ANIMACIONES
   =================================================================== */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(0.5deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-0.5deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(8px) rotate(-0.3deg); }
    50% { transform: translateY(15px) rotate(0deg); }
    75% { transform: translateY(5px) rotate(0.3deg); }
}

@keyframes floatStats {
    0%, 100% { transform: translateY(0px) scale(1); }
    33% { transform: translateY(-8px) scale(1.02); }
    66% { transform: translateY(4px) scale(0.98); }
}
/* ===================================================================
   ANIMACIONES
   =================================================================== */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(0.5deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-0.5deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(8px) rotate(-0.3deg); }
    50% { transform: translateY(15px) rotate(0deg); }
    75% { transform: translateY(5px) rotate(0.3deg); }
}

@keyframes floatStats {
    0%, 100% { transform: translateY(0px) scale(1); }
    33% { transform: translateY(-8px) scale(1.02); }
    66% { transform: translateY(4px) scale(0.98); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===================================================================
   EFECTOS ADICIONALES
   =================================================================== */
.about-img,
.team-img {
    filter: brightness(1) contrast(1.1);
    transition: all 0.3s ease;
}

.main-image:hover .about-img,
.secondary-image:hover .team-img {
    filter: brightness(1.1) contrast(1.2);
}

/* ===================================================================
   SECCIÓN NUESTRO PROPÓSITO - RESPONSIVE CORREGIDO
   =================================================================== */
.proposito-section {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.proposito-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(147, 197, 253, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.proposito-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.proposito-content {
    padding-right: 2rem;
    animation: slideInLeft 0.8s ease-out;
}

.proposito-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.title-blue {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.title-orange {
    color: #e52521;
    font-style: italic;
}

.proposito-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.1rem;
}

.proposito-description p {
    margin-bottom: 1.5rem;
}

.proposito-description p:last-child {
    margin-bottom: 0;
}

/* IMAGEN - CORREGIDA PARA SER RESPONSIVE */
.proposito-image {
    position: relative;
    width: 100%;
    /* Removemos height fijo que causaba problemas */
    /* height: 500px; */
    
    /* Agregamos aspect-ratio para mantener proporciones */
    aspect-ratio: 4/3;
    min-height: 300px;
    max-height: 500px;
    
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.8s ease-out;
}

.proceso-img {
    width: 100%;
    height: 100%;
    /* Cambiamos de cover a contain para imágenes con texto/diagramas */
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    /* Agregamos fondo para espacios vacíos */
    background-color: rgba(255, 255, 255, 0.1);
}

.proposito-image:hover .proceso-img {
    transform: scale(1.02); /* Reducimos el zoom para evitar pixelado */
}

/* ===================================================================
   RESPONSIVE BREAKPOINTS
   =================================================================== */

/* Tablets grandes (1024px y menos) */
@media (max-width: 1024px) {
    .proposito-container {
        gap: 3rem;
    }
    
    .proposito-content {
        padding-right: 1rem;
    }
    
    .proposito-title {
        font-size: 2.4rem;
    }
    
    .proposito-description {
        font-size: 1rem;
    }
    
    .proposito-image {
        aspect-ratio: 16/10;
        min-height: 280px;
        max-height: 400px;
    }
}

/* Tablets (768px y menos) */
@media (max-width: 768px) {
    .proposito-section {
        padding: 4rem 0;
    }
    
    .proposito-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .proposito-content {
        order: 1;
        padding-right: 0;
        text-align: center;
    }
    
    .proposito-image {
        order: 2;
        aspect-ratio: 16/9;
        min-height: 250px;
        max-height: 350px;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .proposito-title {
        font-size: 2rem;
    }
    
    .proposito-description {
        font-size: 1rem;
        text-align: left;
    }
}

/* Móviles grandes (600px y menos) */
@media (max-width: 600px) {
    .proposito-container {
        padding: 0 1rem;
        gap: 2.5rem;
    }
    
    .proposito-title {
        font-size: 1.8rem;
    }
    
    .proposito-image {
        aspect-ratio: 4/3;
        min-height: 220px;
        max-height: 300px;
    }
    
    .proposito-description {
        font-size: 0.95rem;
    }
}

/* Móviles pequeños (480px y menos) */
@media (max-width: 480px) {
    .proposito-section {
        padding: 3rem 0;
    }
    
    .proposito-container {
        gap: 2rem;
    }
    
    .proposito-title {
        font-size: 1.6rem;
    }
    
    .title-blue,
    .title-orange {
        margin-bottom: 0.3rem;
    }
    
    .proposito-image {
        aspect-ratio: 1/1;
        min-height: 200px;
        max-height: 280px;
        border-radius: 15px;
    }
    
    .proposito-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .proposito-description p {
        margin-bottom: 1.2rem;
    }
}

/* Móviles muy pequeños (360px y menos) */
@media (max-width: 360px) {
    .proposito-title {
        font-size: 1.4rem;
    }
    
    .proposito-image {
        min-height: 180px;
        max-height: 250px;
    }
    
    .proposito-description {
        font-size: 0.85rem;
    }
}

/* ===================================================================
   ANIMACIONES RESPONSIVE
   =================================================================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* En móviles, simplificamos las animaciones */
@media (max-width: 768px) {
    .proposito-content,
    .proposito-image {
        animation: fadeInUp 0.6s ease-out;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ===================================================================
   MEJORAS ADICIONALES PARA LA IMAGEN
   =================================================================== */

/* Para imágenes con mucho texto o diagramas */
.proceso-img.diagram {
    object-fit: contain;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.95);
}

/* Fallback si la imagen no carga */
.proposito-image.error {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
}

.proposito-image.error::before {
    content: "📊 Diagrama no disponible";
}



.proposito-image.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================================================================
   CATEGORIES SECTION
   =================================================================== */
.categories {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section-titulo {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: #273583;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
    z-index: -1;
    opacity: 1;
    transition: var(--transition);
}

.category-card:hover::before {
    filter: blur(1px);
    transform: scale(1.05);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.category-icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/**************color del logo*******/
.category-card:hover .category-icon {
    transform: scale(1.1);
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #fff;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.category-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.category-btn {
    background: #273583;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.category-btn:hover {
    background: #e52521;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    border-color: rgba(0, 180, 255, 0.8);
}

.category-btn:active {
    transform: translateY(0px);
    background: rgba(255, 0, 0, 0.9);
}

.category-card:active {
    transform: translateY(-5px);
}

/* ===================================================================
   OFFERS SECTION
   =================================================================== */
.offers {
    padding: 5rem 0;
    background: var(--white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.offer-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.offer-btn {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===================================================================
   SECCIÓN DE CLIENTES
   =================================================================== */
/* Sección Principal de Clientes */
        .partner-showcase {
            padding: 6rem 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .partner-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 103, 0, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .partner-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header de la Sección */
        .partner-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .partner-main-title {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            background: #273583;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .partner-description {
            font-size: 1.25rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 500;
            font-style: oblique;
        }

        /* Grilla de Logos */
        .partner-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 5rem;
            position: relative;
            z-index: 2;
        }

        .partner-logo-item {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(0, 123, 255, 0.08);
            border-radius: 20px;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            height: 160px;
            box-shadow: 0 4px 20px rgba(0, 123, 255, 0.06);
        }

        .partner-logo-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(255, 103, 0, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .partner-logo-item:hover::before {
            opacity: 1;
        }

        .partner-logo-item:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(255, 103, 0, 0.2);
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 
                0 20px 40px rgba(0, 123, 255, 0.12),
                0 0 25px rgba(255, 103, 0, 0.15);
        }

        .partner-logo-img {
            max-width: 180px;
            max-height: 100px;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .partner-logo-item:hover .partner-logo-img {
            transform: scale(1.08);
            filter: drop-shadow(0 4px 12px rgba(0, 123, 255, 0.2));
        }

        /* Métricas de Confianza */
        .trust-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .trust-stat-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(0, 123, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 123, 255, 0.08);
        }

        .trust-stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(255, 103, 0, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .trust-stat-card:hover::before {
            opacity: 1;
        }

        .trust-stat-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 103, 0, 0.3);
            background: rgba(255, 255, 255, 1);
            box-shadow: 
                0 25px 50px rgba(0, 123, 255, 0.15),
                0 0 30px rgba(255, 103, 0, 0.2);
        }

        .trust-stat-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        }

        .trust-stat-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .trust-stat-card:hover .trust-stat-icon::before {
            opacity: 1;
        }

        .trust-stat-content {
            flex: 1;
        }

        .trust-stat-number {
            font-size: 2rem;
            font-weight: 800;
            background: #e52521;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .trust-stat-label {
            color: #273583;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .partner-showcase {
                padding: 4rem 0;
            }
            
            .partner-container {
                padding: 0 1rem;
            }
            
            .partner-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .partner-logo-item {
                height: 140px;
                padding: 1.5rem;
            }
            
            .trust-stats {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

                .partner-logo-item {
            opacity: 0.3;
            transform: scale(0.9);
            transition: all 0.6s ease;
            border: 1px solid transparent;
        }

        .partner-logo-item.active {
            opacity: 1;
            transform: scale(1.15);
            border-color: #1347ab;
            box-shadow: 0 8px 25px rgba(19, 71, 171, 0.4);
            background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
        }

        .partner-logo-item.viewed {
            opacity: 100%;
            transform: scale(1);
        }

        .partner-logo-img {
            filter: grayscale(80%);
            transition: all 0.6s ease;
        }

        .partner-logo-item.active .partner-logo-img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .partner-logo-item.viewed .partner-logo-img {
            filter: grayscale(40%);
        }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* ===================================================================
   BOTONES ADICIONALES
   =================================================================== */
.btn-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.btn-secondary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}

.nav-menu li button {
    background: none;
    border: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
}

/* ===================================================================
   ANIMACIONES OPTIMIZADAS
   =================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}







/*************************************************************************************/
 /* SECCIÓN ENCUENTRA LA EXCELENCIA */
.excelencia-section {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0);
    position: relative;
    overflow: hidden;
}

.excelencia-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(147, 197, 253, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.excelencia-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* LADO IZQUIERDO - IMAGEN DEL PRODUCTO */
.excelencia-image-side {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    border-radius: 15%;
}

.product-showcase:hover .product-img {
    transform: scale(1.02) rotate(1deg);
}

/* ELEMENTOS FLOTANTES DECORATIVOS */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.element-3 {
    top: 50%;
    right: -10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-3deg);
    }
}

/* LADO DERECHO - CONTENIDO */
.excelencia-content-side {
    padding-left: 2rem;
}

.excelencia-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 3rem;
}

.title-highlight {
    background: #273583;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 2px;
}

/* CARACTERÍSTICAS - ESTILO MINIMALISTA */
.excelencia-features {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-left: 0;
}

.feature-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 2px;
    transition: height 0.6s ease;
}

.feature-item.aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-item.aos-animate::before {
    height: 100%;
}

.feature-item:hover {
    background: transparent;
    border: none;
    transform: translateX(10px);
    box-shadow: none;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    box-shadow: none;
    margin-left: 1rem;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
    color: var(--secondary-blue);
    box-shadow: none;
}

.feature-content {
    flex: 1;
    padding-left: 1rem;
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
    position: relative;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    transition: width 0.4s ease;
}

.feature-item:hover .feature-content h3::after {
    width: 60px;
}

.feature-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}

/* RESPONSIVE DESIGN */

/* Tablets */
@media (max-width: 1024px) {
    .excelencia-container {
        gap: 4rem;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .excelencia-content-side {
        padding-left: 0;
        order: -1;
    }
    
    .excelencia-image-side {
        height: 500px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .excelencia-title {
        font-size: 3rem;
    }
    
    .floating-element {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .excelencia-section {
        padding: 5rem 0;
    }
    
    .excelencia-container {
        padding: 0 1.5rem;
        gap: 3rem;
    }
    
    .excelencia-image-side {
        height: 400px;
    }
    
    .excelencia-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        padding: 0;
        gap: 1rem;
        margin-left: 0;
    }
    
    .feature-icon {
        width: 20px;
        height: 20px;
        font-size: 1.2rem;
        margin-left: 0.5rem;
    }
    
    .feature-content {
        padding-left: 0.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .floating-element {
        display: none;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .excelencia-container {
        padding: 0 1rem;
    }
    
    .excelencia-image-side {
        height: 320px;
    }
    
    .excelencia-title {
        font-size: 2rem;
    }
    
    .feature-item {
        gap: 0.8rem;
    }
    
    .feature-icon {
        width: 18px;
        height: 18px;
        font-size: 1rem;
        margin-left: 0.3rem;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}




/***********************************************************************************************************************/

 /* SECCIÓN GÓNDOLAS - ESTILO MINIMALISTA */
.gondolas-section {
    padding: 8rem 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.gondolas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 15% 15%, rgba(59, 130, 246, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 85% 85%, rgba(156, 163, 175, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.gondolas-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* LADO IZQUIERDO - IMÁGENES */
.gondolas-image-side {
    position: relative;
    height: 700px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-showcase {
    flex: 2;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gondola-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.08));
}

.product-showcase:hover .gondola-main-img {
    transform: scale(1.02);
}

.ambiente-showcase {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.ambiente-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ambiente-showcase:hover .ambiente-img {
    transform: scale(1.05);
}

/* LADO DERECHO - CONTENIDO */
.gondolas-content {
    padding-left: 2rem;
}

.gondolas-header {
    margin-bottom: 3rem;
}

.gondolas-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.gondolas-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    margin: 0;
}

.gondolas-description {
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

.intro-text strong {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-blue);
    float: left;
    line-height: 0.8;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

/* CARACTERÍSTICAS MINIMALISTAS */
.gondolas-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.feature-line {
    position: relative;
    padding-left: 2rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease;
}

.feature-line.aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-line:hover::before {
    width: 12px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #6b7280 100%);
}

.feature-text {
    display: block;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 400;
    transition: color 0.3s ease;
}

.feature-line:hover .feature-text {
    color: var(--text-dark);
}

/* BOTÓN MINIMALISTA */
.gondolas-action {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.gondolas-action.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.minimal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    background: none;
    border: none;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.minimal-btn::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.minimal-btn:hover::before {
    width: calc(100% - 2rem);
}

.btn-text {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.btn-arrow {
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(0);
}

.minimal-btn:hover .btn-text {
    color: var(--primary-blue);
}

.minimal-btn:hover .btn-arrow {
    transform: translateX(4px);
    color: var(--secondary-blue);
}

.minimal-btn:active {
    transform: translateY(1px);
}

/* RESPONSIVE DESIGN */

/* Tablets */
@media (max-width: 1024px) {
    .gondolas-container {
        gap: 4rem;
    }
    
    .gondolas-content {
        padding-left: 1rem;
    }
    
    .gondolas-title {
        font-size: 3rem;
    }
    
    .gondolas-subtitle {
        font-size: 1.3rem;
    }
    
    .intro-text strong {
        font-size: 3.5rem;
    }
    
    .gondolas-image-side {
        height: 600px;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .gondolas-section {
        padding: 5rem 0;
    }
    
    .gondolas-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .gondolas-image-side {
        order: 2; /* Imagen después del texto */
        height: 500px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .gondolas-content {
        order: 1; /* Texto primero */
        padding-left: 0;
    }
    
    .gondolas-title {
        font-size: 2.5rem;
    }
    
    .gondolas-subtitle {
        font-size: 1.2rem;
    }
    
    .intro-text {
        text-align: left;
        font-size: 1rem;
    }
    
    .intro-text strong {
        font-size: 3rem;
    }
    
    .gondolas-features {
        text-align: left;
        gap: 2rem;
    }
    
    .feature-line {
        padding-left: 1.5rem;
        transform: translateX(-20px);
    }
    
    .feature-line.aos-animate {
        transform: translateX(0);
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .gondolas-container {
        padding: 0 1.5rem;
        gap: 2.5rem;
    }
    
    .gondolas-title {
        font-size: 2rem;
    }
    
    .gondolas-subtitle {
        font-size: 1.1rem;
    }
    
    .gondolas-image-side {
        height: 400px;
    }
    
    .intro-text strong {
        font-size: 2.5rem;
        margin-right: 0.3rem;
    }
    
    .gondolas-features {
        gap: 1.8rem;
    }
    
    .feature-line {
        padding-left: 1.2rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .minimal-btn {
        font-size: 0.9rem;
    }
    
    .btn-arrow {
        font-size: 1.1rem;
    }
}

/* Efecto de brillo para imágenes */
.product-showcase::after,
.ambiente-showcase::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: transform 0.6s ease;
}

.product-showcase:hover::after,
.ambiente-showcase:hover::after {
    transform: rotate(45deg) translate(100%, 100%);
}


/*******************************************************************************************/
/* SECCIÓN PUNTOS DE VENTA - ESTILO MINIMALISTA */
.puntos-venta-section {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.puntos-venta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 85% 15%, rgba(239, 68, 68, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 15% 85%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.puntos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* CONTENIDO DE TEXTO */
.puntos-content {
    padding-right: 2rem;
}

.puntos-header {
    margin-bottom: 3rem;
}

.puntos-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.puntos-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    margin: 0;
}

.puntos-description {
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

.intro-text strong {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-blue);
    float: left;
    line-height: 0.8;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

/* CARACTERÍSTICAS MINIMALISTAS */
.puntos-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-line {
    position: relative;
    padding-left: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

.feature-line.aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-line:hover::before {
    width: 12px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #ef4444 100%);
}

.feature-text {
    display: block;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 400;
    transition: color 0.3s ease;
}

.feature-line:hover .feature-text {
    color: var(--text-dark);
}

/* BOTÓN MINIMALISTA */
.puntos-action {
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.puntos-action.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.minimal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    background: none;
    border: none;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.minimal-btn::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.minimal-btn:hover::before {
    width: calc(100% - 2rem);
}

.btn-text {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.btn-arrow {
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(0);
}

.minimal-btn:hover .btn-text {
    color: var(--primary-blue);
}

.minimal-btn:hover .btn-arrow {
    transform: translateX(4px);
    color: var(--secondary-blue);
}

.minimal-btn:active {
    transform: translateY(1px);
}

/* IMAGEN DEL PRODUCTO */
.puntos-image-side {
    position: relative;
    height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.product-display {
    position: relative;
    width: 100%;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.product-main-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.product-display:hover .product-main-img {
    transform: scale(1.02) rotate(1deg);
}

/* Efecto de brillo sutil */
.product-display::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: transform 0.6s ease;
}

.product-display:hover::after {
    transform: rotate(45deg) translate(100%, 100%);
}

/* RESPONSIVE DESIGN */

/* Tablets */
@media (max-width: 1024px) {
    .puntos-container {
        gap: 4rem;
    }
    
    .puntos-content {
        padding-right: 1rem;
    }
    
    .puntos-title {
        font-size: 3rem;
    }
    
    .puntos-subtitle {
        font-size: 1.3rem;
    }
    
    .intro-text strong {
        font-size: 3.5rem;
    }
    
    .puntos-image-side {
        height: 500px;
    }
    
    .product-display {
        height: 420px;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .puntos-venta-section {
        padding: 5rem 0;
    }
    
    .puntos-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .puntos-content {
        padding-right: 0;
        order: 1;
    }
    
    .puntos-image-side {
        order: 2;
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .product-display {
        height: 380px;
    }
    
    .puntos-title {
        font-size: 2.5rem;
    }
    
    .puntos-subtitle {
        font-size: 1.2rem;
    }
    
    .intro-text {
        text-align: left;
        font-size: 1rem;
    }
    
    .intro-text strong {
        font-size: 3rem;
    }
    
    .puntos-features {
        text-align: left;
        gap: 2rem;
    }
    
    .feature-line {
        padding-left: 1.5rem;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .puntos-container {
        padding: 0 1.5rem;
        gap: 2.5rem;
    }
    
    .puntos-title {
        font-size: 2rem;
    }
    
    .puntos-subtitle {
        font-size: 1.1rem;
    }
    
    .puntos-image-side {
        height: 380px;
    }
    
    .product-display {
        height: 300px;
    }
    
    .intro-text strong {
        font-size: 2.5rem;
        margin-right: 0.3rem;
    }
    
    .puntos-features {
        gap: 1.8rem;
    }
    
    .feature-line {
        padding-left: 1.2rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .minimal-btn {
        font-size: 0.9rem;
    }
    
    .btn-arrow {
        font-size: 1.1rem;
    }
}

/* Animaciones adicionales */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.puntos-header {
    animation: fadeInUp 0.8s ease-out;
}

.puntos-description {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
/****************************************************************************************************************/
   
        /* SECTION BANNER RESPONSIVE - IMAGEN COMPLETA SIN CORTAR */
.banner-section {
    width: 100%;
    height: auto; /* Cambiamos a auto para adaptarse a la imagen */
    min-height: 250px; /* Altura mínima */
    max-height: 400px; /* Altura máxima para que no crezca demasiado */
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.banner-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGEN DEL BANNER - COMPLETA SIN CORTAR */
.banner-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-img {
    width: 100%;
    height: auto; /* Altura automática para mantener proporciones */
    max-height: 400px; /* Máximo para que no crezca demasiado */
    object-fit: contain; /* Cambiado de 'cover' a 'contain' para ver imagen completa */
    object-position: center center;
    display: block;
    transition: transform 0.3s ease;
}

/* Efecto hover opcional */
.banner-image:hover .banner-img {
    transform: scale(1.02);
}

/* OVERLAY SIN OSCURIDAD - SOLO PARA CONTENIDO */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* CONTENIDO OPCIONAL SOBRE LA IMAGEN */
.banner-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 1.5rem;
    z-index: 3;
}

.banner-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-btn {
    background: var(--primary-blue);
    color: white;
    padding: 0.7rem 1.3rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.banner-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

/* RESPONSIVE DESIGN - IMAGEN COMPLETA */

/* Tablets */
@media (max-width: 968px) {
    .banner-section {
        max-height: 350px;
        min-height: 200px;
    }
    
    .banner-img {
        max-height: 350px;
    }
    
    .banner-content h2 {
        font-size: 1.8rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .banner-section {
        max-height: 280px;
        min-height: 180px;
    }
    
    .banner-img {
        max-height: 280px;
    }
    
    .banner-content {
        padding: 1rem;
    }
    
    .banner-content h2 {
        font-size: 1.5rem;
    }
    
    .banner-content p {
        font-size: 0.8rem;
    }
    
    .banner-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .banner-section {
        max-height: 220px;
        min-height: 150px;
    }
    
    .banner-img {
        max-height: 220px;
    }
    
    .banner-content {
        padding: 0.7rem;
    }
    
    .banner-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    .banner-content p {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }
    
    .banner-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }
}

/* Para pantallas muy anchas */
@media (min-width: 1400px) {
    .banner-section {
        max-height: 450px;
        min-height: 300px;
    }
    
    .banner-img {
        max-height: 450px;
    }
    
    .banner-content h2 {
        font-size: 2.5rem;
    }
}

/* VARIANTES DE ALTURA FIJAS - CON LÍMITES */

/* Banner alto */
.banner-tall {
    max-height: 500px;
    min-height: 350px;
}

.banner-tall .banner-img {
    max-height: 500px;
}

/* Banner medio */
.banner-medium {
    max-height: 300px;
    min-height: 200px;
}

.banner-medium .banner-img {
    max-height: 300px;
}

/* Banner corto */
.banner-short {
    max-height: 200px;
    min-height: 120px;
}

.banner-short .banner-img {
    max-height: 200px;
}

/* SIN OVERLAY (imagen pura sin oscuridad) */
.banner-no-overlay .banner-overlay {
    background: transparent;
    display: none;
}