/* Reset y variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --primary-purple: #3c166d;
    --secondary-purple: #5a2d91;
    --light-purple: #cbaff0;
    --dark-purple: #2a0e4d;
    --accent-purple: #8b5fbf;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #334155;
    --text-primary: #2a0e4d;
    --text-secondary: #475569;
    --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-purple), var(--accent-purple));
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Tipografías Poppins */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.font-light {
    font-weight: 300;
}

.font-regular {
    font-weight: 400;
}

.font-bold {
    font-weight: 700;
}

/* WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s ease;
    flex-direction: row-reverse;
}

.whatsapp-float.show {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon i {
    color: white;
    font-size: 28px;
}

.whatsapp-message {
    background: white;
    padding: 12px 18px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
    max-width: 200px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-message::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}

.whatsapp-float.show .whatsapp-message {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInMessage 0.5s ease 0.3s both;
}

.whatsapp-message .close-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.whatsapp-message .close-btn:hover {
    background: var(--dark-purple);
    transform: scale(1.1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeInMessage {
    from {
        opacity: 0;
        transform: translateX(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Estilos para zoom modal */
.zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: zoom-out;
}

.zoom-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 3001;
}

.zoom-container img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.zoom-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--primary-purple);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 3002;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.zoom-close:hover {
    background: var(--dark-purple);
    transform: scale(1.1);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-icon {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon i {
        font-size: 24px;
    }
    
    .whatsapp-message {
        font-size: 13px;
        padding: 10px 15px;
        max-width: 180px;
    }
    
    .zoom-container {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .zoom-close {
        top: -10px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* ===== ESTILOS DEL CATÁLOGO ===== */

/* Main del catálogo */
.catalog-main {
    margin-top: 80px;
}

/* Banner del catálogo */
.catalog-banner {
    position: relative;
    height: 314px; /* Altura exacta de la imagen 1920x314 */
    overflow: hidden;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 22, 109, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    pointer-events: auto;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Sección del catálogo con filtros */
.catalog-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.catalog-layout {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 15px;
    align-items: start;
    width: 100%;
    max-width: none;
}

/* Filtros laterales */
.catalog-filters {
    background: var(--white);
    border-radius: 12px;
    padding: 15px 10px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    height: fit-content;
    width: 100%;
}

.catalog-filters h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--light-purple);
    padding-bottom: 6px;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-checkbox:hover {
    background: var(--light-purple);
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.filter-checkbox.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.filter-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-purple);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.filter-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary-purple);
}

.filter-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 3px;
    color: var(--white);
    font-weight: bold;
    font-size: 14px;
}

.filter-info {
    flex: 1;
}

.filter-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1px;
    font-size: 0.8rem;
}

.filter-count {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.btn-clear-filters {
    background: var(--light-purple);
    color: var(--primary-purple);
    border: none;
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-clear-filters:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
}

/* Área de productos */
.catalog-products {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--light-purple);
    padding-bottom: 20px;
}

.catalog-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-filter label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.sort-select {
    padding: 8px 12px;
    border: 2px solid var(--light-purple);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(60, 22, 109, 0.1);
}

.catalog-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.catalog-stats {
    color: var(--text-secondary);
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 100%;
}

.product-card-catalog {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-catalog:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image-catalog {
    position: relative;
    height: 320px; /* Aumentado para mejor relación de aspecto con las imágenes WebP */
    overflow: hidden;
    background: var(--light-gray);
}

.product-image-catalog img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    padding: 10px;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(60, 22, 109, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 10px;
}

.product-overlay::after {
    content: 'Clic para ver detalles';
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.product-card-catalog:hover .product-overlay {
    opacity: 1;
}

.product-overlay i {
    color: var(--white);
    font-size: 3rem;
}

.product-info-catalog {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info-catalog h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-code {
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
    font-size: 0.95rem;
}

.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.btn-view-product {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-view-product:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-add-cart-preview {
    background: #10b981;
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart-preview:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mensaje sin productos */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.no-products i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-products h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.no-products p {
    font-size: 1rem;
}

/* Responsive del catálogo */
@media (max-width: 768px) {
    .catalog-banner {
        height: 200px; /* Proporción ajustada para móviles */
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .catalog-filters {
        position: relative;
        top: 0;
        order: 1;
        margin-bottom: 20px;
    }
    
    .catalog-products {
        order: 2;
    }
    
    .catalog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .catalog-header-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }
    
    .sort-filter {
        width: 100%;
        justify-content: space-between;
    }
    
    .sort-select {
        flex: 1;
        max-width: 150px;
    }
    
    .cart-preview {
        width: 300px;
        right: -50px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image-catalog {
        height: 280px; /* Ajustado para móviles */
    }
    
    .info-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .info-label {
        font-weight: 700;
    }
}

/* Responsive para pantallas grandes */
@media (min-width: 1600px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Responsive para tablets grandes */
@media (max-width: 1200px) and (min-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .catalog-layout {
        grid-template-columns: 150px 1fr;
        gap: 12px;
    }
    
    .catalog-section .container {
        padding: 0 10px;
    }
}

/* Responsive para tablets medianos */
@media (max-width: 899px) and (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image-catalog {
        height: 300px; /* Ajustado para tablets */
    }
    
    .catalog-layout {
        grid-template-columns: 140px 1fr;
        gap: 10px;
    }
    
    .catalog-section .container {
        padding: 0 10px;
    }
}

/* ===== MODAL DE PRODUCTOS ===== */

.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--white);
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: translateY(50px);
    transition: transform 0.3s ease;
    z-index: 2001;
}

.product-modal.show .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-purple);
    transform: scale(1.1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 85vh;
    overflow: hidden;
}

.product-images {
    padding: 30px;
    background: var(--light-gray);
}

.main-image {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    background: white;
    border-radius: 10px;
}

.image-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: contain;
    object-position: center;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: white;
    box-shadow: var(--shadow-sm);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-purple);
    transform: scale(1.05);
}

.product-details {
    padding: 30px;
    overflow-y: auto;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.product-details h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.product-code-large {
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
}

.product-description-full h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

/* Información técnica del producto */
.product-info-section {
    margin-bottom: 25px;
    flex-shrink: 0;
}

.product-info-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--light-purple);
    padding-bottom: 10px;
}

.info-grid {
    display: grid;
    gap: 15px;
}

.info-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.info-label {
    font-weight: 600;
    color: var(--primary-purple);
    font-size: 0.9rem;
}

.info-value {
    color: var(--text-primary);
    font-weight: 500;
}

/* Características del producto */
.product-characteristics {
    margin-bottom: 30px;
    flex-shrink: 0;
}

.product-characteristics h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--light-purple);
    padding-bottom: 10px;
}

.characteristics-list {
    list-style: none;
    padding: 0;
}

.characteristics-list li {
    padding: 10px 0;
    padding-left: 25px;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    color: var(--text-primary);
    line-height: 1.5;
    word-wrap: break-word;
}

.characteristics-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary-purple);
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: var(--light-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-direction: column;
    flex-shrink: 0;
    margin-top: 20px;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 120px;
}

.quantity-selector label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.quantity-btn {
    width: 35px;
    height: 40px;
    border: none;
    background: var(--light-gray);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.quantity-btn:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--white);
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-add-to-cart,
.btn-whatsapp-inquiry {
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-add-to-cart {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp-inquiry {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp-inquiry:hover {
    background: #20b358;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsive del modal */
@media (max-width: 768px) {
    .product-modal {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .modal-content {
        margin: 0;
        max-height: 90vh;
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        max-height: none;
        overflow: visible;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .product-images {
        padding: 20px;
        flex-shrink: 0;
    }
    
    .main-image img {
        height: 250px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .product-details {
        padding: 15px;
        overflow-y: auto;
        flex: 1;
        max-height: 60vh;
        -webkit-overflow-scrolling: touch;
    }
    
    .product-details h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .product-code-large {
        font-size: 0.9rem;
        padding: 6px 15px;
        margin-bottom: 20px;
    }
    
    .product-info-section,
    .product-characteristics {
        margin-bottom: 20px;
    }
    
    .product-info-section h3,
    .product-characteristics h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .info-item {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 8px 0;
    }
    
    .info-label {
        font-weight: 700;
        color: var(--primary-purple);
    }
    
    .characteristics-list li {
        padding: 8px 0 8px 20px;
        font-size: 0.9rem;
    }
    
    .product-actions {
        position: sticky;
        bottom: 0;
        background: var(--white);
        padding: 15px;
        border-top: 1px solid var(--light-gray);
        margin: 15px -15px -15px -15px;
        flex-shrink: 0;
        z-index: 10;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .quantity-selector {
        margin-bottom: 10px;
    }
    
    .btn-add-to-cart,
    .btn-whatsapp-inquiry {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    /* Ocultar botón WhatsApp en modal de producto en móvil */
    .btn-whatsapp-inquiry,
    .modal-content .btn-whatsapp-inquiry,
    .product-modal .btn-whatsapp-inquiry {
        display: none !important;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Container específico SOLO para la página del catálogo ahora también limitado */
.catalog-main .catalog-section .container {
    max-width: 1200px;
    padding: 0 20px;
}

/* Asegurar que todas las secciones del main en index mantengan el ancho limitado */
main:not(.catalog-main) .catalog-section .container,
.featured-products .container,
.services-section .container,
.contact-section .container {
    max-width: 1200px !important;
    padding: 0 20px !important;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Barra de scroll personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-purple);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
}

.header .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Navegación */
.nav {
    justify-self: start;
    margin-left: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-purple);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-purple);
    background-color: var(--light-purple);
}

.nav-link:hover::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--primary-purple);
    font-size: 1.5rem;
}

/* Header center */
.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Header actions - barra de búsqueda y carrito */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-self: end;
    margin-right: 0;
}

/* Barra de búsqueda */
.search-bar {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    width: 250px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.search-bar:focus-within {
    background: var(--white);
    border-color: var(--secondary-purple);
    box-shadow: var(--shadow-md);
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    padding: 0.25rem;
    color: var(--text-primary);
}

.search-bar button {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-bar button:hover {
    transform: scale(1.1);
}

/* Carrito */
.cart {
    position: relative;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    color: var(--primary-purple);
}

.cart:hover {
    background: var(--light-purple);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-purple);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Preview del carrito */
.cart-preview {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    width: 350px;
    max-height: 400px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 10px;
}

.cart:hover .cart-preview {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-preview-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 20px;
    font-weight: 600;
    font-size: 1rem;
}

.cart-preview-items {
    max-height: 250px;
    overflow-y: auto;
    padding: 10px 0;
}

.cart-preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-bottom: 1px solid var(--light-gray);
    transition: background 0.2s ease;
}

.cart-preview-item:hover {
    background: var(--light-gray);
}

.cart-preview-item:last-child {
    border-bottom: none;
}

.cart-preview-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--light-gray);
}

.cart-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.cart-preview-info {
    flex: 1;
    min-width: 0;
}

.cart-preview-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-preview-quantity {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.cart-preview-remove {
    background: #ef4444;
    color: var(--white);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cart-preview-remove:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.cart-preview-footer {
    background: var(--light-gray);
    padding: 15px 20px;
    border-top: 1px solid var(--light-purple);
}

.cart-preview-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.cart-preview-actions {
    display: flex;
    gap: 10px;
}

.btn-cart-preview {
    flex: 1;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
}

.btn-view-cart {
    background: var(--light-purple);
    color: var(--primary-purple);
}

.btn-view-cart:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.cart-empty {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-secondary);
}

.cart-empty i {
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

.cart-empty p {
    margin: 0;
    font-size: 0.9rem;
}

/* Main content */
main {
    margin-top: 80px;
}

/* Banner Carousel */
.banner-section {
    position: relative;
    height: 250px;
    overflow: hidden;
    margin-top: 80px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--white);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Sección del catálogo */
.catalog-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.catalog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.catalog-image {
    margin-top: 80px;
}

.catalog-text h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-main {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-sub {
    color: var(--text-primary);
}

.highlight-text {
    font-weight: 600;
    background: linear-gradient(120deg, var(--accent-purple) 0%, var(--accent-purple) 50%, transparent 50%, transparent 100%);
    background-size: 220% 100%;
    background-position: -120% 0;
    transition: background-position 1.5s ease;
    display: inline;
    position: relative;
    color: var(--text-primary);
    padding: 2px 6px;
    border-radius: 4px;
}

.highlight-text.highlighted {
    background-position: 0 0;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.catalog-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(60, 22, 109, 0.3);
}

.image-container img {
    width: 100%;
    height: 529px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

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



/* Sección Quienes Somos - Versión Compacta */
.about-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ffffff" opacity="0.1"/><path d="M0,10 L20,10 M10,0 L10,20" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>') repeat;
    z-index: 1;
}

.about-compact {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

.about-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 6px 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-year {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.badge-text {
    font-size: 0.8rem;
    opacity: 0.8;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.title-highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-stats-inline {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-mini {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 90px;
    width: 90px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-mini:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-number-mini {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.3rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.stat-label-mini {
    font-size: 0.65rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.btn-about-compact {
    background: var(--white);
    color: var(--primary-purple);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-about-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--primary-purple);
}

/* Responsive para Quienes Somos Compacta */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-description {
        font-size: 0.9rem;
    }
    
    .about-stats-inline {
        gap: 1.5rem;
    }
    
    .stat-number-mini {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .about-stats-inline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-title {
        font-size: 1.3rem;
    }
}

/* Productos destacados */
.featured-products {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-purple);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--light-purple);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

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

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.product-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.btn-add-cart {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-view-details {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Servicios */
.services-section {
    padding: 80px 0;
    background: var(--light-purple);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Sección de contacto */
.contact-section {
    padding: 100px 0;
    background: var(--white);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-content {
    position: relative;
    z-index: 2;
    animation: slideUpContact 1s ease-out 0.3s both;
}

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

.contact-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-content h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.btn-contact {
    background: var(--accent-purple);
    color: var(--white);
    border: none;
    padding: 18px 45px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 95, 191, 0.3);
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(139, 95, 191, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(139, 95, 191, 0.5);
    }
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 0;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 95, 191, 0.4);
}

.btn-contact:hover::before {
    width: 400px;
    height: 400px;
}

.btn-contact:active {
    transform: translateY(0);
}

/* Mantener compatibilidad con el ID del script existente */
.btn-whatsapp {
    background: var(--accent-purple);
    color: var(--white);
    border: none;
    padding: 18px 45px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 95, 191, 0.3);
    animation: buttonPulse 2s ease-in-out infinite;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 0;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 95, 191, 0.4);
}

.btn-whatsapp:hover::before {
    width: 400px;
    height: 400px;
}

/* Footer Clásico y Prolijo */
.footer {
    background: #2d3748;
    color: var(--white);
    padding: 40px 0 20px;
    width: 100%;
    border-top: 4px solid var(--primary-purple);
}

.footer .container {
    max-width: 1200px;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    border-bottom: 2px solid var(--primary-purple);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5e0;
    margin: 0;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #cbd5e0;
    line-height: 1.5;
}

.contact-info i {
    color: var(--primary-purple);
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 16px;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 10px;
    border-left: 3px solid var(--primary-purple);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #4a5568;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(60, 22, 109, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        text-align: center;
    }
    
    .contact-info p {
        justify-content: center;
        text-align: left;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a:hover {
        padding-left: 0;
        border-left: none;
        color: var(--primary-purple);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-logo {
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        grid-template-columns: auto 1fr auto;
        padding: 1rem 15px;
        gap: 0.5rem;
    }
    
    .nav {
        order: 3;
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: stretch;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        text-align: center;
        border-radius: 8px;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .header-center {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-bar {
        width: 100%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    /* Banner móvil corregido */
    .banner-section {
        height: 200px;
        margin-top: 80px;
    }
    
    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        background: var(--light-gray);
    }
    
    /* Sección catálogo corregida */
    .catalog-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .catalog-text {
        text-align: center;
        order: 1;
    }
    
    .catalog-text h2 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .catalog-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .catalog-image {
        margin-top: 0;
        order: 2;
    }
    
    .image-container {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .image-container img {
        height: 300px;
        width: 100%;
        object-fit: contain;
        padding: 10px;
        background: var(--white);
        border-radius: 15px;
    }
    
    /* Stats corregidos */
    .about-stats-inline {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-mini {
        min-width: 80px;
        width: 80px;
        height: 70px;
        flex: 0 0 auto;
    }
    
    .stat-number-mini {
        font-size: 1.1rem;
    }
    
    .stat-label-mini {
        font-size: 0.6rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .footer .container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section:first-child,
    .footer-section:last-child {
        justify-self: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        padding: 1rem 10px;
        gap: 0.3rem;
    }
    
    .mobile-menu-toggle {
        right: 60px;
    }
    
    .banner-section {
        height: 200px;
        margin-top: 80px;
    }
    
    .catalog-banner {
        height: 150px; /* Altura más pequeña para pantallas muy pequeñas */
    }
    
    .catalog-text h2 {
        font-size: 1.8rem;
    }
    
    .catalog-text p {
        font-size: 0.9rem;
    }
    
    /* Stats aún más compactos en pantallas pequeñas */
    .about-stats-inline {
        gap: 0.8rem;
    }
    
    .stat-mini {
        min-width: 70px;
        width: 70px;
        height: 65px;
        padding: 0.5rem;
    }
    
    .stat-number-mini {
        font-size: 1rem;
    }
    
    .stat-label-mini {
        font-size: 0.55rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .contact-content h2 {
        font-size: 1.75rem;
    }
    
    /* Modal más compacto en pantallas muy pequeñas */
    .product-modal {
        padding: 5px;
    }
    
    .product-details {
        max-height: 55vh;
    }
    
    .main-image img {
        height: 200px;
    }
    
    .product-details h2 {
        font-size: 1.2rem;
    }
}

/* Animaciones de entrada mejoradas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInAnimation {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clases para animaciones de entrada */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 1s ease-out;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out;
}

.fade-in-scale {
    animation: fadeInScale 1s ease-out;
}

.slide-down {
    animation: slideDown 0.8s ease-out;
}

/* Aplicar animaciones automáticas a elementos principales */
.header {
    animation: slideDown 1s ease-out;
}

.banner-section {
    animation: fadeInScale 1.2s ease-out;
}

.catalog-section .catalog-text {
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.catalog-section .catalog-image {
    animation: fadeInRight 1s ease-out 0.5s both;
}

.section-title {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.product-card {
    animation: fadeInUp 1s ease-out both;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.4s;
}

.service-card {
    animation: fadeInUp 1s ease-out both;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

.contact-section {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.footer {
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Efecto parallax suave para secciones */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Hover effects para botones */
button, .btn-catalog, .btn-add-cart, .btn-whatsapp {
    position: relative;
    overflow: hidden;
}

button::before, .btn-catalog::before, .btn-add-cart::before, .btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button:hover::before, .btn-catalog:hover::before, .btn-add-cart:hover::before, .btn-whatsapp:hover::before {
    width: 300px;
    height: 300px;
}

/* Estilos para la página de Contacto */
.contact-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.contact-main {
    padding: 80px 0;
    background: linear-gradient(180deg, 
        var(--light-gray) 0%, 
        white 50%, 
        var(--light-gray) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section h2,
.map-section h2 {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-purple);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #20b858;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.map-info {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form-section {
    padding: 80px 0;
    background: var(--primary-purple);
    color: white;
}

.form-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-purple);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(60, 22, 109, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-submit,
.btn-whatsapp-form {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-submit {
    background: var(--gradient-primary);
    color: white;
}

.btn-submit:hover {
    background: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp-form {
    background: #25D366;
    color: white;
}

.btn-whatsapp-form:hover {
    background: #20b858;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsive para Contacto */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        margin: 0 auto 1rem auto;
    }
    
    .contact-details {
        text-align: center;
        width: 100%;
    }
    
    .contact-details h3 {
        text-align: center;
        margin-bottom: 0.8rem;
    }
    
    .contact-details p {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    /* Ocultar botón de envío normal en móvil */
    .btn-submit.desktop-only {
        display: none;
    }
    
    .btn-whatsapp-form {
        width: 100%;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Estilos para la página Sobre Nosotros */
.about-hero {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 350px;
    overflow: hidden;
    color: white;
    text-align: center;
}

/* Overlay para el contenido del hero */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(60, 22, 109, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Carrusel dentro de about-hero */
.about-hero .carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Botones del carrusel en about-hero - FUERA del contenedor para evitar problemas de z-index */
.about-carousel-prev,
.about-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--white);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 10;
    pointer-events: all;
}

.about-carousel-prev:hover,
.about-carousel-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.about-carousel-prev {
    left: 30px;
}

.about-carousel-next {
    right: 30px;
}

/* Indicadores del carrusel en about-hero - z-index más alto */
.about-hero .carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.about-hero .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-hero .indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

.about-hero .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.about-hero .carousel-slide.active {
    opacity: 1;
}

.about-hero .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero .hero-content {
    position: relative;
    z-index: 4;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
    background: linear-gradient(180deg, 
        var(--light-gray) 0%, 
        white 50%, 
        var(--light-gray) 100%);
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.content-block {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-purple);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.content-block:nth-child(even) {
    grid-template-columns: 1fr auto;
}

.content-block:nth-child(even) .content-text {
    order: 1;
}

.content-block:nth-child(even) .content-icon {
    order: 2;
}

.content-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.content-text h2 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--light-purple);
    padding-bottom: 0.5rem;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.content-text strong {
    color: var(--primary-purple);
    font-weight: 600;
}

.quote-section {
    background: var(--primary-purple);
    color: white;
    padding: 80px 0;
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="70" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.quote-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--light-purple);
    margin-bottom: 2rem;
    display: block;
}

blockquote {
    margin: 0;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    font-weight: 300;
}

.cta-section {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-purple);
}

.btn-primary:hover {
    background: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-link.active {
    color: var(--primary-purple) !important;
    font-weight: 600;
}

/* Responsive para Sobre Nosotros */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        padding: 50px 0;
    }
    
    .content-grid {
        gap: 2.5rem;
    }
    
    .content-block {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }
    
    .content-block:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .content-block:nth-child(even) .content-text,
    .content-block:nth-child(even) .content-icon {
        order: unset;
    }
    
    .content-icon {
        margin: 0 auto 1.5rem auto;
    }
    
    .content-text h2 {
        font-size: 1.5rem;
    }
    
    .quote-section {
        padding: 50px 0;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
    
    blockquote {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 250px;
        max-width: 100%;
    }
} 
