/* ===== ESTILOS ESPECÍFICOS PARA PÁGINAS ===== */

/* Variables de color del sistema */
:root {
    --primary-yellow: #FFD700;
    --secondary-yellow: #FFC000;
    --dark-yellow: #FFA500;
    --pure-black: #000000;
    --pure-white: #FFFFFF;
    --dark-gray: #1a1a1a;
    --medium-gray: #666666;
    --light-gray: #cccccc;
    --off-white: #f8f9fa;
    --warning-orange: #FF6B35;
    --success-green: #28a745;
    --border-radius: 10px;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Hero Banner Slider Section */
.hero-carousel-section {
    background: linear-gradient(135deg, var(--pure-black) 0%, var(--dark-gray) 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
    box-shadow: var(--shadow-heavy);
    margin: 0;
    border-top: none;
}

.hero-carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 700px;
}

/* Carrusel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.prev {
    transform: translateX(-100%);
}

/* Banner Slide */
.slide-banner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius);
    filter: brightness(0.9) contrast(1.1);
}

.banner-image:hover {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

/* Overlay decorativo para banners */
.slide-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.1) 0%,
        rgba(255, 192, 0, 0.05) 50%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
    border-radius: var(--border-radius);
}

/* Efecto de borde brillante */
.slide-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;

/* Botones de navegación del carrusel */
.carousel-nav-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1000 !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    font-size: 18px !important;
    font-weight: bold !important;
}

.carousel-nav-btn i {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: bold !important;
}

.carousel-nav-btn:hover {
    background: rgba(255, 215, 0, 0.9);
    color: #000000 !important;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.carousel-nav-btn:hover i {
    color: #000000 !important;
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.5);
}

.carousel-prev-btn {
    left: 20px !important;
}

.carousel-next-btn {
    right: 20px !important;
}

/* Indicadores de posición del carrusel */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.carousel-indicator:hover {
    background: rgba(255, 215, 0, 0.8);
    border-color: rgba(255, 215, 0, 0.9);
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    background: linear-gradient(45deg, var(--primary-yellow), var(--secondary-yellow), var(--primary-yellow)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.7;
    z-index: 2;
    pointer-events: none;
}


    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.indicator.active {
    border-color: var(--secondary-yellow);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.indicator.active::before {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
}





/* Animaciones */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Categories Section - Legacy styles (overridden by modern-categories.css) */
.categories-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.categories-simple-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Build Modal */
.build-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.build-modal.show {
    opacity: 1;
    visibility: visible;
}

.build-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.build-modal-content {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border: 2px solid #FFD700;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.build-modal.show .build-modal-content {
    transform: scale(1);
}

.build-modal-header {
    padding: 25px 30px 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.build-modal-header h2 {
    color: #fff;
    font-size: 1.8rem;
    margin: 0;
}

.build-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.build-modal-close:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

.build-modal-body {
    padding: 30px;
}

.build-price-section {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.modal-price {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
}

.modal-price-note {
    color: #ccc;
    font-size: 0.9rem;
}

.build-sections {
    display: grid;
    gap: 25px;
}

.build-section h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.components-list {
    display: grid;
    gap: 8px;
}

.component-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #FFD700;
}

.component-type {
    color: #FFD700;
    font-weight: 600;
    min-width: 120px;
}

.component-name {
    color: #fff;
    text-align: right;
    flex: 1;
}

.performance-info {
    display: grid;
    gap: 12px;
}

.perf-item {
    color: #ccc;
    line-height: 1.5;
}

.perf-item strong {
    color: #FFD700;
}

.games-list {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.game-tag {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.build-modal-footer {
    padding: 20px 30px 30px;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.build-modal-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Category Modal */
.category-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.category-modal.show {
    opacity: 1;
    visibility: visible;
}

.category-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.category-modal-content {
    background: #fff;
    border: 2px solid #FFD700;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.category-modal.show .category-modal-content {
    transform: scale(1);
}

.category-modal-header {
    padding: 25px 30px 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.category-modal-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-modal-title i {
    color: #FFD700;
    font-size: 2rem;
}

.category-modal-title h2 {
    color: #333;
    font-size: 1.8rem;
    margin: 0;
}

.category-modal-close {
    background: none;
    border: none;
    color: #666;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.category-modal-close:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

.category-modal-body {
    padding: 30px;
}

.category-description {
    margin-bottom: 30px;
    text-align: center;
}

.category-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.category-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #FFD700;
    transform: translateY(-2px);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFC000);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: #000;
    font-size: 1.2rem;
}

.info-content h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-content p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.category-featured,
.category-brands {
    margin-bottom: 25px;
}

.category-featured h3,
.category-brands h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-featured h3::before {
    content: '⭐';
}

.category-brands h3::before {
    content: '🏷️';
}

.featured-tags,
.brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.featured-tag {
    background: linear-gradient(135deg, #FFD700, #FFC000);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.brand-tag {
    background: rgba(255, 215, 0, 0.1);
    color: #333;
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.category-modal-footer {
    padding: 20px 30px 30px;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.category-modal-footer .btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Offers Section */
.offers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFD700, #FFC000);
    text-align: center;
}

.offers-section .section-title {
    color: #000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.offers-section .section-subtitle {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offers-button-container {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.offers-button-container .btn {
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    max-width: 250px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.offers-button-container .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Products Carousel Section */
.products-carousel-section {
    padding: 80px 0;
    background: #f5f5f5 !important;
}

.products-carousel-container {
    position: relative;
    margin-top: 50px;
    background: transparent !important;
}

.products-carousel {
    display: flex;
    overflow: hidden;
    transition: transform 0.4s ease;
    width: 100%;
    background: transparent !important;
}

.product-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    padding: 0 15px;
    box-sizing: border-box;
    background: transparent !important;
}

/* Controles del carrusel de productos */
.products-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.products-carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFC000);
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.products-carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.products-carousel-indicators {
    display: flex;
    gap: 10px;
}

.products-indicator {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.products-indicator.active {
    background: #FFD700;
    transform: scale(1.2);
}

/* Products Section */
.products-section {
    padding: 80px 0;
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 25px;
    background: #f8f9fa;
    border: 2px solid #FFD700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #000;
}

.category-tab:hover,
.category-tab.active {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
    font-weight: 700;
}

.products-grid {
    gap: 30px;
}

.product-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFD700;
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.product-badge.featured {
    background: linear-gradient(45deg, #FFD700, #FFC000);
    color: #000;
}

.product-badge.discount {
    background: linear-gradient(45deg, #E74C3C, #C0392B);
    color: white;
}

.product-badge.low-stock {
    background: linear-gradient(45deg, #F39C12, #E67E22);
    color: white;
}

.product-badge.out-of-stock {
    background: linear-gradient(45deg, #95A5A6, #7F8C8D);
    color: white;
}

/* Estados de stock */
.product-stock {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    text-align: center;
}

.product-stock.in-stock {
    background: linear-gradient(45deg, #27AE60, #2ECC71);
    color: white;
}

.product-stock.out-of-stock {
    background: linear-gradient(45deg, #E74C3C, #C0392B);
    color: white;
}

.product-stock i {
    font-size: 0.6rem;
}

/* Brand del producto */
.product-brand {
    color: #FFD700;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000;
    line-height: 1.3;
    min-height: 2.6rem; /* Espacio para 2 líneas */
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 2.8rem; /* Espacio para 2 líneas */
    flex-grow: 1;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    min-height: 2rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.price-original {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: auto;
    min-height: 3rem;
}

.add-to-cart {
    flex: 1;
    transition: all 0.3s ease;
}

.btn-icon {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    color: #FFD700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-icon:hover {
    background: #FFD700;
    color: #000;
    transform: scale(1.1);
}

.btn-icon.active {
    background: #FFD700;
    color: #000;
}

/* Offers Section */
.offers-section {
    background: linear-gradient(135deg, #FFD700 0%, #FFC000 100%);
    color: #000;
}

.offers-banner {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.offer-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    background: #f8f9fa;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    background: #2c3e50;
    border: 1px solid #34495e;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000, #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: #FFD700;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-actions {
    margin-top: auto;
    padding-top: 20px;
}


/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #2c3e50;
}

.contact-section .section-title {
    color: #ffffff;
}

.contact-section .section-subtitle {
    color: #cccccc;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #ffffff;
}

.contact-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.2rem;
    color: #FFD700;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-form .btn-primary {
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    max-width: 250px;
}

/* Efectos adicionales para banners */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    animation: slideInActive 0.8s ease-out;
}

.hero-slide.prev {
    transform: translateX(-100%);
    animation: slideOutPrev 0.8s ease-in;
}

@keyframes slideInActive {
    0% {
        opacity: 0;
        transform: translateX(100%) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideOutPrev {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-100%) scale(0.95);
    }
}

/* Responsive Design para Banner Slider */
@media screen and (max-width: 1200px) {
    .hero-carousel-container {
        height: 400px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Responsive para Categorías - Tablets */
@media screen and (max-width: 1024px) {
    .categories-simple-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {
    .categories-simple-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {
    .hero-carousel-section {
        padding: 0;
    }
    
    .hero-carousel-container {
        height: 300px;
    }
    

    
    .slide-banner {
        border-radius: 8px;
    }
    
    .banner-image {
        border-radius: 8px;
    }
}

@media screen and (max-width: 480px) {
    .hero-carousel-section {
        padding: 0;
    }
    
    .hero-carousel-container {
        height: 250px;
    }
    

    
    .slide-banner {
        border-radius: 6px;
    }
    
    .banner-image {
        border-radius: 6px;
    }
    

    
    .product-categories {
        gap: 10px;
    }

    .category-tab {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .offers-banner {
        padding: 40px 20px;
    }

    .offer-content h3 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 25px;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .categories-simple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    /* Responsive para carrusel de productos */
    .product-slide {
        flex: 0 0 calc(50% - 15px);
        min-width: 280px;
    }
    
    .products-carousel-controls {
        gap: 20px;
        margin-top: 30px;
    }
    
    .products-carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .service-card {
        padding: 25px 20px;
    }

    .feature-icon,
    .service-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i,
    .service-icon i {
        font-size: 1.5rem;
    }

    .product-card {
        height: 420px; /* Menor altura en tablets */
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
        min-height: 2.4rem;
    }
    
    .product-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .product-actions {
        gap: 8px;
    }
    
    .product-actions .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .categories-simple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    /* Responsive para carrusel de productos */
    .product-slide {
        flex: 0 0 calc(50% - 15px);
        min-width: 280px;
    }
    
    .products-carousel-controls {
        gap: 20px;
        margin-top: 30px;
    }
    
    .products-carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .service-card {
        padding: 25px 20px;
    }

    .feature-icon,
    .service-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i,
    .service-icon i {
        font-size: 1.5rem;
    }

    .offers-banner {
        padding: 30px 15px;
    }

    .offer-content h3 {
        font-size: 1.8rem;
    }

    .product-card {
        height: 420px; /* Menor altura en tablets */
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
        min-height: 2.4rem;
    }
    
    .product-description {
        font-size: 0.85rem;
        min-height: 2.6rem;
    }
}

/* Animaciones adicionales */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Estados de los productos */
.product-card[style*="display: none"] {
    animation: fadeOut 0.3s ease-out;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}
