/*
Theme Name: Hidraqueen Theme
Description: Tema personalizado para Hidraqueen - Indumentaria deportiva mayorista
Version: 1.0
Author: Hidraqueen
Text Domain: hidraqueen
*/

/* Hidraqueen - Diseño Minimalista con Franjas */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 4vw, 2rem);
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo h1 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

.logo h1 a {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo h1 a:hover {
    color: #495057;
}

.site-logo {
    max-height: clamp(40px, 6vw, 60px);
    width: auto;
    transition: transform 0.3s ease;
}

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

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 clamp(1rem, 3vw, 2rem);
}

.header-social-icons {
    display: flex;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    align-items: center;
    flex: 0 0 auto;
    padding-right: 0.5rem;
}

.header-social-icons .social-link {
    width: clamp(28px, 4vw, 32px);
    height: clamp(28px, 4vw, 32px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #495057;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    outline: none;
    border-radius: 6px;
    position: relative;
    text-decoration: none !important;
}

/* Hover removido para evitar línea negra sobre iconos */

.header-social-icons .social-link svg {
    width: clamp(18px, 3vw, 22px);
    height: clamp(18px, 3vw, 22px);
    fill: currentColor;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

/* Hover en SVG también removido */

/* Desktop menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

/* Ocultar iconos sociales móviles en desktop */
.mobile-social-icons {
    display: none;
}

.nav-menu a {
    text-decoration: none;
    color: #212529;
    font-weight: 500;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #495057;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: transparent;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #212529;
    transition: 0.3s;
    border-radius: 2px;
}

/* Ocultar iconos sociales móviles en desktop */
.mobile-social-icons {
    display: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: calc(100vh - 80px) !important;
    margin-top: 80px !important;
    padding-top: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 clamp(1rem, 4vw, 2rem);
    z-index: 3;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin: 0 0 clamp(1rem, 3vw, 1.5rem);
    color: #212529;
}

.hero-content p {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: #495057;
    margin: 0 0 clamp(2rem, 5vw, 3rem);
    line-height: 1.6;
}

.hero-button {
    display: inline-block;
    padding: clamp(0.8rem, 2.5vw, 1rem) clamp(2rem, 5vw, 3rem);
    background: #212529;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-button:hover {
    background: #495057;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Estilos adicionales para hero con video/imagen */
.hero-section.has-background .hero-content h1,
.hero-section.has-background .hero-content p {
    color: white;
}

.hero-section.has-background .hero-button {
    background: rgba(255, 255, 255, 0.9);
    color: #212529;
    backdrop-filter: blur(10px);
}

.hero-section.has-background .hero-button:hover {
    background: rgba(255, 255, 255, 1);
    color: #212529;
}

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

/* Animación para el fondo del hero */
@keyframes heroBackgroundMove {
    0% {
        background-position: 0% center;
    }
    25% {
        background-position: 100% center;
    }
    50% {
        background-position: 50% center;
    }
    75% {
        background-position: 0% center;
    }
    100% {
        background-position: 0% center;
    }
}

/* Forzar tamaño 300% en móviles */
@media screen and (max-width: 768px) {
    .hero-section {
        margin-top: 96px !important;
        padding-top: 0 !important;
        min-height: calc(100vh - 70px) !important;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        margin-top: 96px !important;
        padding-top: 0 !important;
        min-height: calc(100vh - 65px) !important;
    }
}

@media screen and (max-width: 360px) {
    .hero-section {
        margin-top: 96px !important;
        padding-top: 0 !important;
        min-height: calc(100vh - 60px) !important;
    }
}

.hero-content h1 {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content p {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-button {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Supplex Sections - Minimalista */

/* Sección Introducción Supplex */
.supplex-intro-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: #f8f9fa;
}

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

.supplex-intro-content h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.supplex-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.supplex-description h3 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.supplex-description p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Sección Beneficios Supplex */
.supplex-benefits-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: white;
}

.supplex-benefits-section h3 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.benefit-icon {
    font-size: clamp(2rem, 5vw, 2.5rem);
    display: block;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: #666;
    line-height: 1.5;
}

/* Sección CTA Supplex */
.supplex-cta-section {
    padding: clamp(2rem, 6vw, 3rem) 0;
    background: #1a1a1a;
}

.supplex-cta-content {
    text-align: center;
}

.supplex-cta-content p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: white;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive para Supplex */
@media screen and (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item:hover {
        transform: none;
    }
}

/* Products Section */
.products-section {
    padding: clamp(2rem, 6vw, 4rem) 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: 300;
    color: #000;
    margin-bottom: clamp(2rem, 6vw, 4rem);
    letter-spacing: -1px;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-card {
    display: flex;
    min-height: 60vh;
    align-items: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    background: #fafafa;
}

.product-card:nth-child(even) {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1;
    height: 130vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover .product-image::before {
    background: rgba(0, 0, 0, 0.05);
}

/* Las imágenes de productos se configuran desde el Customizer de WordPress */

.product-info {
    flex: 1;
    padding: clamp(2rem, 6vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 400;
    color: #000;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    letter-spacing: -1px;
    line-height: 1.2;
}

.product-description {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #666;
    font-weight: 300;
    line-height: 1.8;
}

/* Bogotá Section - Diseño Premium */
.bogota-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bogota-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.bogota-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 2rem);
    position: relative;
    z-index: 1;
}

.bogota-content h2 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: clamp(0.8rem, 3vw, 1.2rem);
    letter-spacing: -2px;
    text-transform: uppercase;
    position: relative;
}

.bogota-content h2::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(80px, 20vw, 150px);
    height: 3px;
    background: linear-gradient(90deg, transparent, #000, transparent);
    border-radius: 2px;
}

.bogota-description {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    color: #555;
    margin-bottom: clamp(3rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Bogotá Info Layout - Diseño en Cards */
.bogota-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.bogota-details,
.bogota-contact {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.bogota-details::before,
.bogota-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000, #333, #000);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.bogota-details:hover::before,
.bogota-contact:hover::before {
    transform: scaleX(1);
}

.bogota-details:hover,
.bogota-contact:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.bogota-details h3,
.bogota-contact h3 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 600;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    color: #1a1a1a;
    position: relative;
    padding-bottom: 0.8rem;
}

.bogota-details h3::after,
.bogota-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #000;
    border-radius: 1px;
}

.visit-message {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: #666;
    line-height: 1.6;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    background: rgba(0, 0, 0, 0.03);
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: 12px;
    border-left: 4px solid #007bff;
}

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

.info-list li {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #555;
    margin-bottom: clamp(1rem, 2.5vw, 1.2rem);
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 3vw, 1.2rem);
    background: rgba(248, 249, 250, 0.7);
    border-radius: 10px;
    border-left: 4px solid #000;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.info-list li:hover {
    background: rgba(248, 249, 250, 0.9);
    transform: translateX(8px);
    border-left-width: 6px;
    color: #333;
}

.info-list li:hover::before {
    left: 100%;
}

.bogota-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.8rem, 2vw, 1rem);
    padding: clamp(1rem, 3vw, 1.3rem) clamp(1.5rem, 4vw, 2rem);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(1rem, 3vw, 1.2rem);
    box-shadow: 
        0 8px 32px rgba(37, 211, 102, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 48px rgba(37, 211, 102, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-btn:active {
    transform: translateY(-2px) scale(1);
}

.whatsapp-icon {
    width: clamp(20px, 5vw, 24px);
    height: clamp(20px, 5vw, 24px);
    fill: currentColor;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.map-container {
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}

.map-container:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    border-radius: 16px;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

/* Responsive para Bogotá */
@media screen and (max-width: 768px) {
    .bogota-section {
        padding: clamp(3rem, 8vw, 5rem) 0;
    }
    
    .bogota-info {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vw, 3rem);
    }
    
    .bogota-content h2 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        letter-spacing: -1px;
    }
    
    .bogota-details,
    .bogota-contact {
        padding: clamp(1.5rem, 4vw, 2rem);
    }
    
         .info-list li:hover {
         transform: none;
     }
     
     .product-image {
         height: 50vh;
         width: 100%;
         min-height: 820px;
     }
}

@media screen and (max-width: 480px) {
    .bogota-details,
    .bogota-contact {
        border-radius: 16px;
        padding: clamp(1.2rem, 4vw, 1.5rem);
    }
    
    .whatsapp-btn {
        padding: clamp(0.8rem, 3vw, 1rem) clamp(1.2rem, 4vw, 1.5rem);
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
}

/* Contact Section */
.contact-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: #f8f8f8;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.contact-content h2 {
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: 300;
    color: #000;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    letter-spacing: -1px;
}

.contact-content p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #666;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    font-weight: 300;
}

/* Contact Info Layout */
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
    text-align: left;
}

.contact-details h3,
.contact-buttons h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 600;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    color: #000;
}

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

.info-list li {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: #666;
    margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
    display: flex;
    align-items: center;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 2vw, 0.8rem);
    align-items: stretch;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 0.8rem);
    padding: clamp(0.8rem, 3vw, 1.2rem) clamp(1.5rem, 5vw, 2.5rem);
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #000;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

.whatsapp-button:hover {
    background: #fff;
    color: #000;
}

.whatsapp-icon {
    width: clamp(16px, 4vw, 20px);
    height: clamp(16px, 4vw, 20px);
    fill: currentColor;
}

.social-links {
    display: flex;
    gap: clamp(1rem, 3vw, 1.5rem);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.social-icons-container {
    display: flex;
    gap: clamp(1rem, 3vw, 1.5rem);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.social-links h3 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 500;
    color: #000;
    margin-bottom: clamp(0.5rem, 2vw, 0);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(28px, 6vw, 32px);
    height: clamp(28px, 6vw, 32px);
    background: #000;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

/* Hover general de social-link removido */

.social-icon {
    width: clamp(12px, 3vw, 14px);
    height: clamp(12px, 3vw, 14px);
    fill: currentColor;
}

/* Footer */
.site-footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    opacity: 0.8;
    line-height: 1.6;
}

.footer-content a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.footer-content a:hover {
    color: #f8f9fa;
    border-bottom-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
}

/* ==========================================================================
   SECCIÓN TESTIMONIOS (EJEMPLO)
   ========================================================================== */

.testimonials-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-top: clamp(2rem, 5vw, 3rem);
}

.testimonial-card {
    background: white;
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.6;
    color: #495057;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: #212529;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
}

.testimonial-author span {
    color: #6c757d;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        padding: clamp(0.5rem, 3vw, 1rem) 1rem clamp(0.5rem, 3vw, 1rem) clamp(1rem, 5vw, 1.5rem);
        justify-content: space-between;
    }
    
    .main-nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
        margin: 0;
    }
    
    .header-social-icons {
        display: none; /* Ocultar iconos del header en móviles */
    }
    
    /* Mostrar iconos sociales solo en el menú móvil */
    .mobile-social-icons {
        display: flex !important;
    }
    
    .site-logo {
        max-height: 65px !important;
        min-height: 60px !important;
        height: auto !important;
        width: auto !important;
    }
    
    .header-social-icons .social-link {
        width: clamp(20px, 5vw, 24px);
        height: clamp(20px, 5vw, 24px);
    }
    
    .header-social-icons .social-link svg {
        width: clamp(14px, 4vw, 18px);
        height: clamp(14px, 4vw, 18px);
    }
    
    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        left: -100vw !important;
        width: 100vw !important;
        height: calc(100vh - 70px) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 2rem 0 2rem 2rem !important;
        transition: left 0.3s ease !important;
        z-index: 9999 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        display: flex !important;
        gap: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow-y: auto !important;
        border-right: none !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Overlay para cerrar el menú */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0.5rem 0 !important;
        width: 100% !important;
        display: block !important;
    }
    
    .nav-menu li.mobile-social-icons {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: center !important;
        margin: 2.5rem 0 0 0 !important;
        padding-top: 2.5rem !important;
        padding-left: 1rem !important;
        border-top: 1px solid #e9ecef !important;
        gap: 2rem !important;
        width: 100% !important;
        list-style: none !important;
    }
    
    .nav-menu a {
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        padding: 0.8rem 0 !important;
        width: 100% !important;
        text-align: left !important;
        color: #495057 !important;
        text-decoration: none !important;
        display: block !important;
        transition: all 0.3s ease !important;
        border-bottom: 1px solid transparent !important;
        letter-spacing: 0.5px !important;
    }
    
    .nav-menu a:hover {
        color: #212529 !important;
        transform: translateX(5px) !important;
    }
    
    /* Iconos sociales dentro del menú móvil */
    .mobile-social-icons {
        display: flex !important;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        margin-top: 2.5rem;
        padding-top: 2.5rem;
        padding-left: 1rem;
        border-top: 1px solid #e9ecef;
        width: 100%;
        flex-direction: row !important;
        list-style: none !important;
    }
    
    .mobile-social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        border-radius: 0;
        transition: all 0.3s ease;
        position: relative;
        text-decoration: none !important;
    }
    
    /* Hover removido de iconos sociales del menú móvil */
    
    .mobile-social-link svg {
        width: 32px;
        height: 32px;
        fill: #6c757d;
        transition: all 0.3s ease;
    }
    
    /* Hover SVG también removido del menú móvil */
    
    .hamburger {
        display: flex;
        margin-right: 1rem;
        position: relative;
        right: 0;
        padding: 0.5rem;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2rem);
        text-align: center;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-details h3 {
        text-align: center;
    }
    
    .info-list {
        text-align: center;
    }
    
    .product-card {
        flex-direction: column !important;
        min-height: auto;
        height: auto;
        padding: clamp(1rem, 3vw, 1.5rem);
    }
    
    .product-card:nth-child(even) {
        flex-direction: column !important;
    }
    
    .product-image {
        height: 50vh;
        width: 100%;
        min-height: 765px;
        flex-shrink: 0;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .product-info {
        padding: clamp(1rem, 3vw, 1.5rem) 0;
        text-align: center;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
    
    .social-links h3 {
        margin-bottom: 0.5rem;
        text-align: center;
        width: 100%;
    }
    
    .social-icons-container {
        display: flex;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 30px;
        height: 30px;
    }
    
    .social-icon {
        width: 12px;
        height: 12px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Animación más suave en móviles */
    @keyframes heroBackgroundMove {
        0% {
            background-position: 0% center;
        }
        50% {
            background-position: 100% center;
        }
        100% {
            background-position: 0% center;
        }
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .product-image {
        height: 45vh;
        min-height: 250px;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
    }
    
    .social-icon {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 360px) {
    .product-image {
        height: 40vh;
        min-height: 220px;
    }
    
    .social-link {
        width: 26px;
        height: 26px;
    }
    
    .social-icon {
        width: 9px;
        height: 9px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .product-info {
        padding: clamp(2rem, 4vw, 3rem);
    }
    
    .social-link {
        width: 30px;
        height: 30px;
    }
    
     .social-icon {
        width: 12px;
        height: 12px;
    }
}

@media (min-width: 1200px) {
    .social-link {
        width: 32px;
        height: 32px;
    }
    
     .social-icon {
        width: 14px;
        height: 14px;
    }
} 