/* 1. GRID DE PRODUCTOS */
    .pro-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }

    /* 2. TARJETA DE PRODUCTO */
    .pro-card {
        background: #fff;
        border: none;
        border-radius: 12px;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.35s ease, box-shadow 0.35s ease;
        height: 100%;
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
        box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    }
    .pro-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.10);
        z-index: 2;
    }

    /* FOTO ALTA Y ADAPTABLE */
    .pro-img-box {
        width: 100%;
        height: 260px;
        overflow: hidden;
        position: relative;
        background-color: #f8fafc;
    }

    .pro-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
        transition: transform 0.5s ease;
    }
    .pro-card:hover .pro-img { transform: scale(1.06); }

    /* INFO DEL PRODUCTO */
    .pro-info { 
        padding: 16px 14px 18px;
        text-align: center; 
        background-color: #fff;
    }
    
    .pro-details {
        font-size: 11px;
        color: #94a3b8;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        font-weight: 500;
    }
    
    .pro-price {
        color: #dc2626;
        font-weight: 800;
        font-size: 18px;
        display: block;
        margin-bottom: 0;
    }
    .pro-price small { font-size: 11px; color: #999; font-weight: normal; margin-right: 3px; }

    /* COLOR DOTS */
    .pro-colors { display:flex; align-items:center; gap:4px; justify-content:center; margin-bottom:6px; flex-wrap:wrap; }
    .pro-dot { width:16px; height:16px; border-radius:50%; overflow:hidden; border:1.5px solid #e2e8f0; flex-shrink:0; cursor:pointer; transition:all .2s; }
    .pro-dot:hover { border-color:#005a9c; transform:scale(1.15); }
    .pro-dot img { width:100%; height:100%; object-fit:cover; display:block; }
    .pro-dot-more { font-size:10px; color:#94a3b8; font-weight:600; margin-left:2px; }
    /* SIZE RANGE */
    .pro-sizes { font-size:10px; color:#94a3b8; margin-bottom:6px; letter-spacing:0.3px; }
    .pro-sizes span { display:inline-block; background:#f1f5f9; color:#64748b; padding:1px 5px; border-radius:3px; font-weight:500; font-size:9px; margin:0 1px; }

    /* 2b. BARRA DE BENEFICIOS */
    .benefits-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 12px 10px;
        margin: 20px 0 30px 0;
        gap: 8px;
    }
    .benefit-item {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
        justify-content: center;
    }
    .benefit-item + .benefit-item {
        border-left: 1px solid #e2e8f0;
        padding-left: 10px;
    }
    .benefit-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    .benefit-text {
        font-size: 12px;
        color: #475569;
        font-weight: 500;
        white-space: nowrap;
    }
    @media (max-width: 768px) {
        .benefits-bar {
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            padding: 15px;
        }
        .benefit-item + .benefit-item {
            border-left: none;
            padding-left: 0;
        }
        .benefit-item {
            flex: 0 0 calc(50% - 10px);
            justify-content: flex-start;
        }
    }
    @media (max-width: 420px) {
        .benefit-item {
            flex: 0 0 100%;
        }
    }

    /* T&Iacute;TULO */
    .pro-card-link {
        display: block;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
    }
    .pro-card-link:hover { text-decoration: none; }

    .pro-title {
        font-size: 14px;
        font-weight: 700;
        color: #1e293b;
        text-decoration: none !important;
        line-height: 1.5;
        min-height: 42px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: color 0.2s ease;
        margin-bottom: 6px;
    }
    .pro-title:hover { color: #005a9c; }

    /* 3. SLOGAN PRINCIPAL DESTACADO */
    .hero-title-box {
        text-align: center;
        margin: 15px 0 20px 0;
        padding: 0 10px;
    }
    .super-title {
        font-family: 'Segoe UI', system-ui, Arial, sans-serif;
        font-size: 32px;
        font-weight: 800;
        color: #005a9c;
        text-transform: uppercase;
        margin: 0;
        letter-spacing: -1px;
        line-height: 1.1;
    }
    .super-subtitle {
        display: block;
        font-size: 18px;
        color: #334155;
        margin-top: 5px;
        font-weight: 600;
    }

    /* 4. T&Eacute;CNICAS DE IMPRESI&Oacute;N */
    .svc-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 25px 0;
    }
    .svc-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #fff;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        padding: 9px 14px;
        font-family: 'Segoe UI', system-ui, Arial, sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #1e293b;
        text-decoration: none;
        transition: all 0.15s;
    }
    .svc-pill:hover {
        background: #005a9c;
        border-color: #005a9c;
        color: #fff;
        text-decoration: none;
    }
    .svc-pill:hover svg { stroke: #fff; }
    .svc-pill svg { transition: stroke 0.15s; }

    /* 4b. LOGOS EMPRESAS */
    .logos-grid {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 28px 36px;
        margin: 15px 0 25px;
        padding: 24px 20px;
        background: #f9fafb;
        border-radius: 8px;
    }
    .logo-item {
        height: auto;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.5;
        transition: all 0.2s;
    }
    .logo-item:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

    /* 5. T&Iacute;TULOS SECUNDARIOS */
    .section-header {
        background: linear-gradient(to right, #f1f5f9, #ffffff);
        border-left: 5px solid #005a9c;
        padding: 12px 20px;
        margin: 35px 0 20px 0;
        border-radius: 4px;
    }
    .section-header h2, .section-header h3 {
        margin: 0;
        font-size: 17px;
        font-weight: 800;
        color: #334155;
        text-transform: uppercase;
        font-family: 'Segoe UI', system-ui, Arial, sans-serif;
    }

    /* 6. TEXTOS SEO */
    .seo-block {
        font-size: 13px;
        line-height: 1.6;
        color: #475569;
        margin-top: 25px;
        text-align: justify;
    }
    .seo-block p { margin-bottom: 16px; }
    .seo-block a { color: #005a9c; font-weight: 700; text-decoration: underline; }
    .seo-block strong { color: #0f172a; font-weight: 700; }
    
    .seo-highlight {
        background-color: #f8fafc;
        padding: 20px;
        border-radius: 8px;
        border: 1px solid #e2e8f0;
        margin: 20px 0;
    }

    /* BANNERS RESPONSIVE 100% */
    .banner-wrap {
        width: 100%;
        max-height: 300px;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    .banner-full { 
        width: 100%;
        height: auto; 
        display: block; 
        border-radius: 0; 
        box-shadow: none; 
        margin: 0;
        object-fit: cover;
        object-position: center;
    }

    /* LISTA DE INFORMACI&Oacute;N */
    .info-list {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 20px 25px;
        margin: 30px 0;
    }
    .info-list p {
        margin: 0 0 8px 0;
        font-size: 13px;
        color: #475569;
        line-height: 1.6;
    }
    .info-list p:last-child { margin-bottom: 0; }

    /* --- ESTILOS DEL SLIDER RESPONSIVO --- */
    :root {
        --color-texto-gris: #666;
        --color-acento-azul: #5a67b5;
    }
    
        .slider-container, .slider-container * {
        box-sizing: border-box;
    }
    
    .slider-container {
        width: 100%;
        max-width: 911px;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        margin: 0 auto 20px auto; 
    }

    .slider-track {
        display: flex;
        width: 100%;
        transition: transform 0.5s ease-in-out;
    }

    .slide-link {
        display: block;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
    }

    .slide {
        min-width: 100%;
        position: relative;
    }

    .slide img {
        width: 100%;
        height: auto;
        display: block;
    }

    .slide-content {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.55);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        border-radius: 0;
        display: flex;
        align-items: center;
        padding: 0;
        z-index: 2;
        
        overflow: hidden;
    }
    
    .slide-info-left {
        flex: 1;
        padding: 14px 22px;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .txt-box-questions {
        font-family: 'Segoe UI', system-ui, Arial, sans-serif;
        font-size: clamp(10px, 1.3vw, 12px); 
        color: rgba(255,255,255,0.85);
        font-weight: 400;
        line-height: 1.4;
    }

    .txt-box-title {
        background: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        width: auto;
        display: block;
    }
    
    .txt-box-title h2 {
        margin: 0;
        font-family: 'Segoe UI', system-ui, Arial, sans-serif;
        font-size: clamp(15px, 2.8vw, 22px);
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 1.15; 
        color: #fff;
        font-weight: 800;
    }

    .txt-box-price {
        background: #9b1b30;
        padding: 14px 22px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 130px;
        flex-shrink: 0;
        align-self: stretch;
    }

    .txt-box-price .label {
        font-family: 'Segoe UI', system-ui, Arial, sans-serif;
        font-size: clamp(9px, 1.2vw, 11px); 
        color: rgba(255,255,255,0.7);
        letter-spacing: 1px;
        font-weight: 400;
        text-transform: uppercase;
    }
    
    .txt-box-price .price {
        font-family: 'Segoe UI', system-ui, Arial, sans-serif;
        font-size: clamp(24px, 4.5vw, 32px); 
        font-weight: 900;
        color: #fff;
        line-height: 1;
        letter-spacing: -0.5px;
    }

    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.3);
        color: white;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 10;
        font-size: 24px;
        transition: background-color 0.3s;
    }
    
    .nav-btn:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }
    
    .prev-btn { left: 0; border-radius: 0 5px 5px 0; }
    .next-btn { right: 0; border-radius: 5px 0 0 5px; }

    /* DOTS INDICADORES SLIDER */
    .slider-dots {
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 11;
    }
    .slider-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255,255,255,0.4);
        border: none;
        cursor: pointer;
        padding: 0;
        transition: background 0.3s;
    }
    .slider-dot.active {
        background: #fff;
    }


    /* RESPONSIVE */
    @media (max-width: 768px) {
        .pro-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .pro-img-box { height: 200px; } 
        .super-title { font-size: 24px; }
        .pro-price { font-size: 16px; }
        .svc-grid { flex-wrap: wrap; }
        .info-list { padding: 15px; }
        .pro-card-link {
        display: block;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
    }
    .pro-card-link:hover { text-decoration: none; }

    .pro-title { min-height: auto; }
        
        .nav-btn { padding: 8px; font-size: 18px; }
        .slide-content { bottom: 10px; }
        .slide-info-left { padding: 10px 14px; }
        .txt-box-price { min-width: 100px; padding: 10px 14px; }
        .txt-box-questions { font-size: 10px; }
    }