/* ===========================================
   CSS EXCLUSIVO PARA PÁGINA DE SERVICIOS
   Complementa styles.css principal
   =========================================== */

/* Variables adicionales para servicios */
:root {
    --service-card-bg: rgba(255, 255, 255, 0.95);
    --service-card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --product-card-bg: #ffffff;
    --product-card-hover: #f8f9fa;
    --star-product-bg: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* ===========================================
   1. HERO SECTION PARA SERVICIOS
   =========================================== */
.services-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.7) 100%),
        url('../img/services-hero-bg.jpg') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
    margin-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 188, 212, 0.1) 0%, 
        rgba(233, 30, 99, 0.1) 50%, 
        rgba(255, 235, 59, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-xxl) 0;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: var(--space-lg);
    font-weight: 600;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    font-weight: 800;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

/* CTA Hero */
.hero-cta {
    margin-bottom: var(--space-xl);
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Centra horizontalmente */
    gap: var(--space-md);
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--magenta), var(--cyan));
    color: #ffffff;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    height: auto;
    min-height: 56px; /* Altura mínima para consistencia */
    line-height: 1.2; /* Reducido de 1.4 para mejor centrado vertical */
}

/* Asegura que todos los elementos hijos estén alineados verticalmente */
.hero-cta-btn > * {
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
}

.hero-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* Estilo específico para el texto del botón - Mejor alineación */
.hero-cta-btn .cta-text {
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.1; /* Asegura que el texto no tenga altura extra */
    padding: 0; /* Elimina cualquier padding interno */
    margin: 0; /* Elimina cualquier margen interno */
    display: inline-flex;
    align-items: center;
}

/* Estilo específico para el icono de WhatsApp - Mejor alineación */
.hero-cta-btn .cta-icon {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    line-height: 1;
}

/* Ajuste para el efecto glow */
.cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(15px);
    opacity: 0.4;
    z-index: -1;
    animation: pulse 2s infinite;
}

.hero-cta-note {
    font-size: 0.85rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: 8px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: var(--space-xs);
    font-family: monospace;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, 
        var(--cyan), 
        transparent);
}

.scroll-dot {
    width: 12px;
    height: 12px;
    background: var(--cyan);
    border-radius: 50%;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ===========================================
   2. SECTION HEADER CON CTA
   =========================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
    position: relative;
}

.section-badge {
    display: inline-block;
    background: var(--cyan);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CTA en header de sección */
.section-header-cta {
    margin-top: var(--space-xl);
}

.catalog-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, 
        rgba(0, 188, 212, 0.1) 0%, 
        rgba(233, 30, 99, 0.1) 100%);
    border: 2px solid rgba(0, 188, 212, 0.2);
    border-radius: var(--radius-lg);
    color: #ffffff; /* Cambiado de var(--black) a blanco */
    text-decoration: none;
    transition: all 0.3s ease;
}

.catalog-cta:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, 
        rgba(0, 188, 212, 0.15) 0%, 
        rgba(233, 30, 99, 0.15) 100%);
}

.catalog-cta i {
    font-size: 2rem;
    color: #ffffff; /* Cambiado de var(--cyan) a blanco */
    margin-bottom: var(--space-xs);
}

.catalog-cta span {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff; /* Asegura que el span sea blanco */
}

.catalog-cta small {
    font-size: 0.85rem;
    opacity: 0.85; /* Ajustado de 0.7 a 0.85 para mejor legibilidad en blanco */
    color: #ffffff; /* Asegura que el small sea blanco */
}
/* ===========================================
   3. GRID DE SERVICIOS PROFESIONALES
   =========================================== */
/* Grid de Servicios - Organizado en 2 filas: 3 arriba, 2 abajo centrados */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas iguales */
    gap: var(--space-lg); /* Reducido de var(--space-xl) */
    margin-bottom: var(--space-xxl);
}

/* Los primeros 3 items ocupan las 3 columnas normales */
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3) {
    grid-row: 1;
}

/* Los últimos 2 items se centran en la segunda fila */
.service-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.service-card:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

/* Si quieres que los 2 de abajo estén centrados con espacio alrededor */
.services-grid {
    justify-items: center; /* Centra horizontalmente cada item */
}

/* Si prefieres que los 2 de abajo estén perfectamente centrados en la segunda fila */
@media (min-width: 768px) {
    .service-card:nth-child(4) {
        justify-self: end; /* Empuja a la derecha */
        margin-right: calc(var(--space-lg) / 2);
    }
    
    .service-card:nth-child(5) {
        justify-self: start; /* Empuja a la izquierda */
        margin-left: calc(var(--space-lg) / 2);
    }
}

/* Optimizar tarjetas para mejor espacio y proporción */
.service-card {
    background: var(--service-card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--service-card-shadow);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 320px; /* Ancho máximo controlado */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px); /* Reducido de -10px */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Optimizar espacio en header */
.service-card-header {
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column; /* Icono arriba, título abajo */
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
}

.service-icon {
    width: 50px; /* Reducido de 60px */
    height: 50px; /* Reducido de 60px */
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem; /* Reducido de 1.5rem */
    flex-shrink: 0;
    margin-bottom: var(--space-xs);
}

/* Textos en gris oscuro */
.service-card-title {
    font-size: 1.2rem; /* Reducido de 1.5rem */
    margin: 0;
    color: #333333; /* Gris oscuro */
    font-weight: 700;
    line-height: 1.3;
}

/* Optimizar cuerpo de tarjeta */
.service-card-body {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-description {
    color: #555555; /* Gris oscuro */
    margin-bottom: var(--space-md);
    line-height: 1.5; /* Reducido de 1.6 */
    font-size: 0.9rem;
    text-align: center;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-lg);
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #444444; /* Gris oscuro */
    line-height: 1.4;
}

/* Iconos de check mantienen sus colores específicos */
.service-features i.fas.fa-check {
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Mantener colores específicos para cada servicio */
.service-features i.cyan-text {
    color: var(--cyan) !important;
}

.service-features i.magenta-text {
    color: var(--magenta) !important;
}

.service-features i.yellow-text {
    color: var(--yellow) !important;
}

/* CTA dentro de tarjeta - Optimizado */
.service-card-cta {
    margin-top: auto;
}

/* Botones con colores específicos optimizados */
.service-card:nth-child(1) .service-cta-btn,
.service-card:nth-child(4) .service-cta-btn {
    /* Diseño Gráfico y Creación de Contenido - Cyan */
    background: linear-gradient(135deg, 
        rgba(0, 188, 212, 0.08) 0%, 
        rgba(0, 188, 212, 0.15) 100%);
    border: 1px solid rgba(0, 188, 212, 0.2);
    color: var(--cyan);
}

.service-card:nth-child(2) .service-cta-btn,
.service-card:nth-child(5) .service-cta-btn {
    /* Diseño Web e Instalación - Magenta */
    background: linear-gradient(135deg, 
        rgba(233, 30, 99, 0.08) 0%, 
        rgba(233, 30, 99, 0.15) 100%);
    border: 1px solid rgba(233, 30, 99, 0.2);
    color: var(--magenta);
}

.service-card:nth-child(3) .service-cta-btn {
    /* Marketing Digital - Yellow */
    background: linear-gradient(135deg, 
        rgba(255, 193, 7, 0.08) 0%, 
        rgba(255, 193, 7, 0.15) 100%);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: var(--yellow);
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.service-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

/* Hover específicos por color */
.service-card:nth-child(1) .service-cta-btn:hover,
.service-card:nth-child(4) .service-cta-btn:hover {
    background: linear-gradient(135deg, 
        rgba(0, 188, 212, 0.12) 0%, 
        rgba(0, 188, 212, 0.2) 100%);
    border-color: var(--cyan);
}

.service-card:nth-child(2) .service-cta-btn:hover,
.service-card:nth-child(5) .service-cta-btn:hover {
    background: linear-gradient(135deg, 
        rgba(233, 30, 99, 0.12) 0%, 
        rgba(233, 30, 99, 0.2) 100%);
    border-color: var(--magenta);
}

.service-card:nth-child(3) .service-cta-btn:hover {
    background: linear-gradient(135deg, 
        rgba(255, 193, 7, 0.12) 0%, 
        rgba(255, 193, 7, 0.2) 100%);
    border-color: var(--yellow);
}

/* Responsive para pantallas más pequeñas */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablet */
    }
    
    .service-card:nth-child(1),
    .service-card:nth-child(2) {
        grid-row: 1;
    }
    
    .service-card:nth-child(3),
    .service-card:nth-child(4) {
        grid-row: 2;
    }
    
    .service-card:nth-child(5) {
        grid-row: 3;
        grid-column: 1 / span 2; /* Ocupa las 2 columnas en móvil */
        justify-self: center;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 columna en móvil */
    }
    
    .service-card:nth-child(5) {
        grid-column: 1;
    }
    
    .service-card {
        max-width: 100%;
    }
}
/* ===========================================
   4. CTA INTERMEDIOS
   =========================================== */
.intermediate-cta {
    background: linear-gradient(135deg, 
        rgba(0, 188, 212, 0.1) 0%, 
        rgba(233, 30, 99, 0.1) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin: var(--space-xxl) 0;
    border: 2px solid rgba(0, 188, 212, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Fondo sutil para mejorar el contraste del texto blanco */
.intermediate-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.3) 100%);
    z-index: 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Título en blanco y más grande */
.cta-title {
    font-size: 2.2rem; /* Aumentado de 1.8rem */
    margin-bottom: var(--space-sm);
    color: #ffffff; /* Cambiado a blanco */
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); /* Sombra para mejor legibilidad */
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Texto también en blanco para mejor contraste */
.cta-text {
    font-size: 1.2rem; /* Ligeramente más grande */
    color: rgba(255, 255, 255, 0.9); /* Blanco con ligera transparencia */
    margin-bottom: var(--space-lg);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
}

/* Mantener el strong dentro del párrafo más visible */
.cta-text strong {
    color: #ffffff;
    font-weight: 800;
}

.package-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, var(--magenta), var(--cyan));
    color: #ffffff; /* Asegurar blanco */
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Efecto glow para el botón */
.package-cta-btn::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--magenta), var(--cyan));
    filter: blur(15px);
    opacity: 0.4;
    z-index: -1;
    animation: pulse 2s infinite;
}

.package-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    color: #ffffff; /* Mantener blanco en hover */
}

.samples-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, var(--yellow), var(--cyan));
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.samples-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 235, 59, 0.3);
}

/* Animación de pulso para el efecto glow */
@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.6;
    }
}
/* ===========================================
   5. PRODUCTOS DE IMPRESIÓN DIGITAL
   =========================================== */
.products-section {
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, 
        #f8f9fa 0%, 
        #ffffff 100%);
}

.product-category {
    margin-bottom: var(--space-xxl);
}

.category-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.8rem;
    margin-bottom: var(--space-xl);
    color: var(--black);
}

.category-title i {
    font-size: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.product-card {
    background: var(--product-card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--product-card-hover);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-content {
    padding: var(--space-xl);
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
    color: var(--black);
}

.product-description {
    color: #666;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.product-specs {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

.spec i {
    color: var(--cyan);
}

/* CTA por producto */
.product-cta {
    margin-top: var(--space-lg);
}

.product-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md);
    background: linear-gradient(135deg, 
        rgba(0, 188, 212, 0.1) 0%, 
        rgba(0, 188, 212, 0.2) 100%);
    border: 2px solid rgba(0, 188, 212, 0.3);
    border-radius: var(--radius-md);
    color: var(--cyan);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-cta-btn:hover {
    background: linear-gradient(135deg, 
        rgba(0, 188, 212, 0.2) 0%, 
        rgba(0, 188, 212, 0.3) 100%);
    border-color: var(--cyan);
    transform: translateY(-2px);
}

/* ===========================================
   6. MÁS PRODUCTOS GRID
   =========================================== */
.more-products {
    margin: var(--space-xxl) 0;
}

.more-products-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: var(--space-xl);
    color: var(--black);
}

.more-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.more-product-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.more-product-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.more-product-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto var(--space-md);
    color: var(--white);
}

.more-product-item h4 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    color: var(--black);
}

.more-product-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.more-product-cta {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background: rgba(0, 188, 212, 0.1);
    color: var(--cyan);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.more-product-cta:hover {
    background: rgba(0, 188, 212, 0.2);
    border-color: var(--cyan);
}

/* ===========================================
   7. PRODUCTOS ESTRELLA (AVISOS ACRÍLICOS Y NEON FLEX)
   =========================================== */
.special-products {
    padding: var(--space-xxl) 0;
    background: var(--star-product-bg);
}

.star-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.star-product:last-child {
    margin-bottom: 0;
}

.star-product-content {
    padding: var(--space-xxl);
    position: relative;
}

.star-product-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.star-product-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--black);
}

.star-product-title i {
    font-size: 2.5rem;
}

.star-product-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.star-product strong {
    color: var(--black);
}

.star-product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.star-product-features .feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
}

.star-product-features i {
    font-size: 1.2rem;
}

/* CTA Producto Estrella */
.star-product-cta {
    margin-top: var(--space-xl);
}

.price-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    font-weight: 600;
}

.new-price {
    font-size: 2rem;
    font-weight: 800;
}

.discount-badge {
    background: var(--magenta);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.9rem;
}

.star-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    width: 100%;
    padding: var(--space-lg);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.star-product-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s infinite;
}

.cta-note {
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.star-product-image {
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.star-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.star-product:hover .star-product-image img {
    transform: scale(1.05);
}

/* ===========================================
   8. PRODUCTOS ADICIONALES
   =========================================== */
.additional-products {
    padding: var(--space-xxl) 0;
}

/* Grid Adicional - 4 columnas en fila horizontal */
.additional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas iguales */
    gap: var(--space-lg); /* Reducido de var(--space-xl) */
    margin-bottom: var(--space-xxl);
    width: 100%;
}

/* Optimizar tarjetas para mejor espacio y proporción */
.additional-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg); /* Reducido de var(--space-xl) */
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 300px; /* Altura mínima consistente */
}

.additional-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Iconos optimizados */
.additional-icon {
    width: 60px; /* Reducido de 70px */
    height: 60px; /* Reducido de 70px */
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem; /* Reducido de 1.8rem */
    margin: 0 auto var(--space-md);
    color: var(--white);
}

/* Títulos en gris oscuro */
.additional-card h4 {
    font-size: 1.15rem; /* Reducido de 1.3rem */
    margin-bottom: var(--space-sm);
    color: #333333; /* Gris oscuro */
    font-weight: 700;
    line-height: 1.3;
}

/* Descripciones en gris oscuro */
.additional-card p {
    color: #555555; /* Gris oscuro */
    margin-bottom: var(--space-md);
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1; /* Para que ocupe espacio disponible */
}

/* Botones optimizados con colores específicos */
.additional-card:nth-child(1) .additional-cta {
    /* Señalización - Cyan */
    background: linear-gradient(135deg, 
        rgba(0, 188, 212, 0.08) 0%, 
        rgba(0, 188, 212, 0.15) 100%);
    border: 1px solid rgba(0, 188, 212, 0.2);
    color: var(--cyan);
}

.additional-card:nth-child(2) .additional-cta {
    /* Mugs Sublimados - Magenta */
    background: linear-gradient(135deg, 
        rgba(233, 30, 99, 0.08) 0%, 
        rgba(233, 30, 99, 0.15) 100%);
    border: 1px solid rgba(233, 30, 99, 0.2);
    color: var(--magenta);
}

.additional-card:nth-child(3) .additional-cta {
    /* Camisetas - Yellow */
    background: linear-gradient(135deg, 
        rgba(255, 193, 7, 0.08) 0%, 
        rgba(255, 193, 7, 0.15) 100%);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: var(--yellow);
}

.additional-card:nth-child(4) .additional-cta {
    /* Hoodies - Cyan */
    background: linear-gradient(135deg, 
        rgba(0, 188, 212, 0.08) 0%, 
        rgba(0, 188, 212, 0.15) 100%);
    border: 1px solid rgba(0, 188, 212, 0.2);
    color: var(--cyan);
}

.additional-cta {
    display: inline-block;
    padding: 10px 16px; /* Reducido de var(--space-sm) var(--space-md) */
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-align: center;
    width: 100%;
    max-width: 180px;
}

/* Hover específicos por color */
.additional-card:nth-child(1) .additional-cta:hover,
.additional-card:nth-child(4) .additional-cta:hover {
    background: linear-gradient(135deg, 
        rgba(0, 188, 212, 0.12) 0%, 
        rgba(0, 188, 212, 0.2) 100%);
    border-color: var(--cyan);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 188, 212, 0.15);
}

.additional-card:nth-child(2) .additional-cta:hover {
    background: linear-gradient(135deg, 
        rgba(233, 30, 99, 0.12) 0%, 
        rgba(233, 30, 99, 0.2) 100%);
    border-color: var(--magenta);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(233, 30, 99, 0.15);
}

.additional-card:nth-child(3) .additional-cta:hover {
    background: linear-gradient(135deg, 
        rgba(255, 193, 7, 0.12) 0%, 
        rgba(255, 193, 7, 0.2) 100%);
    border-color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(255, 193, 7, 0.15);
}

/* Responsive para diferentes tamaños de pantalla */
@media (max-width: 1200px) {
    .additional-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablet */
        gap: var(--space-lg);
    }
    
    .additional-card {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .additional-grid {
        grid-template-columns: 1fr; /* 1 columna en móvil */
        gap: var(--space-md);
    }
    
    .additional-card {
        min-height: 260px;
        padding: var(--space-lg);
    }
    
    .additional-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .additional-card h4 {
        font-size: 1.1rem;
    }
    
    .additional-card p {
        font-size: 0.85rem;
    }
    
    .additional-cta {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
}
/* ===========================================
   9. CTA FINAL DE CATÁLOGO
   =========================================== */
.catalog-final-cta {
    background: linear-gradient(135deg, 
        rgba(0, 188, 212, 0.1) 0%, 
        rgba(233, 30, 99, 0.1) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xxl);
    border: 2px solid rgba(0, 188, 212, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Fondo oscuro sutil para mejorar el contraste del texto blanco */
.catalog-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.15) 0%, 
        rgba(0, 0, 0, 0.2) 100%);
    z-index: 0;
}

.catalog-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.catalog-icon {
    font-size: 4rem;
    color: #ffffff; /* Cambiado a blanco para mejor contraste */
    margin-bottom: var(--space-lg);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Título en blanco como solicitado */
.catalog-text h3 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: #ffffff; /* Cambiado de var(--black) a blanco */
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

/* También cambiamos el párrafo a blanco para mantener consistencia */
.catalog-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9); /* Blanco con ligera transparencia */
    margin-bottom: var(--space-xl);
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Strong dentro del párrafo más visible */
.catalog-text p strong {
    color: #ffffff;
    font-weight: 800;
}

.catalog-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.catalog-download-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-xl);
    background: var(--cyan);
    color: #ffffff; /* Asegurar blanco */
    border-radius: var(--radius-lg);
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Efecto glow para el botón de descarga */
.catalog-download-btn::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--cyan);
    filter: blur(15px);
    opacity: 0.4;
    z-index: -1;
    animation: pulse 2s infinite;
}

.catalog-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
    color: #ffffff;
}

.catalog-consultation-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-xl);
    background: var(--magenta);
    color: #ffffff; /* Asegurar blanco */
    border-radius: var(--radius-lg);
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Efecto glow para el botón de asesoría */
.catalog-consultation-btn::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--magenta);
    filter: blur(15px);
    opacity: 0.4;
    z-index: -1;
    animation: pulse 2s infinite;
}

.catalog-consultation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    color: #ffffff;
}

/* Asegurar que los iconos dentro de los botones sean blancos */
.catalog-download-btn i,
.catalog-consultation-btn i {
    color: #ffffff;
}

/* ===========================================
   10. FORMULARIO FIJO DE COTIZACIÓN
   =========================================== */
.fixed-quote-form {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    display: none;
    animation: slideInUp 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.quote-form-content {
    position: relative;
}

.quote-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: var(--white);
}

.quote-form-header h4 {
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.quote-form-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.quote-form-close:hover {
    transform: rotate(90deg);
}

.quote-form-body {
    padding: var(--space-lg);
    text-align: center;
}

.quote-form-body p {
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    color: #666;
}

.quote-form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md);
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quote-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

/* ===========================================
   11. RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 1024px) {
    .star-product {
        grid-template-columns: 1fr;
    }
    
    .star-product-image {
        order: -1;
        min-height: 300px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta-btn {
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: var(--space-lg);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .star-product-content {
        padding: var(--space-xl);
    }
    
    .star-product-title {
        font-size: 1.5rem;
    }
    
    .star-product-features {
        grid-template-columns: 1fr;
    }
    
    .fixed-quote-form {
        width: 300px;
        right: 15px;
        bottom: 15px;
    }
    
    .catalog-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta-note {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .catalog-cta {
        padding: var(--space-md);
    }
    
    .fixed-quote-form {
        width: calc(100% - 30px);
        right: 15px;
    }
}

/* ===========================================
   12. ANIMACIONES ESPECÍFICAS PARA SERVICIOS
   =========================================== */
@keyframes serviceCardEntry {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: serviceCardEntry 0.6s ease forwards;
    animation-delay: calc(var(--i, 0) * 0.1s);
    opacity: 0;
}

@keyframes productCardEntry {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-card {
    animation: productCardEntry 0.6s ease forwards;
    animation-delay: calc(var(--i, 0) * 0.1s);
    opacity: 0;
}

/* ===========================================
   13. ESTADOS DE HOVER MEJORADOS
   =========================================== */
.service-card:hover .service-icon {
    transform: rotate(15deg) scale(1.1);
    transition: transform 0.3s ease;
}

.product-card:hover .product-badge {
    animation: pulse 1s infinite;
}

.star-product-btn:hover i {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* ===========================================
   14. ACCESIBILIDAD Y FOCUS STATES
   =========================================== */
.service-cta-btn:focus,
.product-cta-btn:focus,
.star-product-btn:focus,
.catalog-download-btn:focus,
.catalog-consultation-btn:focus {
    outline: 3px solid var(--cyan);
    outline-offset: 2px;
}

/* ===========================================
   15. LOADING STATES PARA IMÁGENES
   =========================================== */
.product-image {
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.05) 25%, 
        rgba(0, 0, 0, 0.1) 50%, 
        rgba(0, 0, 0, 0.05) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}