/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Variables de colores - Ultra Professional */
:root {
    --primary-color: #0d1b2a;
    --secondary-color: #415a77;
    --accent-color: #778da9;
    --gold-accent: #d4af37;
    --success-color: #28a745;
    --gray-color: #495057;
    --light-gray: #f8f9fa;
    --ultra-light: #fdfdfe;
    --white: #ffffff;
    --dark: #212529;
    --text-primary: #1a1a1a;
    --text-secondary: #6c757d;
    --border-light: #e9ecef;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
}

/* Header Ultra Professional */
.header {
    background: linear-gradient(135deg, var(--white) 0%, var(--ultra-light) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px var(--shadow-light);
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 50px var(--shadow-medium);
}

.navbar {
    padding: 1.2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-accent), var(--accent-color));
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(13, 27, 42, 0.05);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gold-accent), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 60%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section Ultra Professional */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, 
        #1a1a1a 0%, 
        #2d2d2d 25%, 
        #3a3a3a 50%, 
        #2d2d2d 75%, 
        #1a1a1a 100%);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="luxury-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="45" fill="none" stroke="rgba(212,175,55,0.06)" stroke-width="1"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/><circle cx="50" cy="50" r="15" fill="none" stroke="rgba(212,175,55,0.04)" stroke-width="1"/><path d="M20,50 Q50,20 80,50 Q50,80 20,50" fill="none" stroke="rgba(255,255,255,0.01)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23luxury-pattern)"/></svg>');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 20%, 
        rgba(212, 175, 55, 0.15) 45%, 
        rgba(255, 215, 0, 0.1) 50%, 
        rgba(212, 175, 55, 0.15) 55%, 
        transparent 80%);
    animation: heroShine 10s linear infinite;
    pointer-events: none;
}

@keyframes heroShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.7) 0%, 
        rgba(45, 45, 45, 0.5) 50%, 
        rgba(58, 58, 58, 0.6) 100%);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    padding: 0 40px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    line-height: 1.1;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #f8f9fa 25%, 
        var(--gold-accent) 50%, 
        #ffd700 75%, 
        var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold-accent) 0%, #b8860b 100%);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #b8860b 0%, var(--gold-accent) 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-primary:hover::after {
    transform: translateX(4px);
}

/* Estilos para contacto ultra profesional */

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--accent-color) 100%);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.section-divider {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    margin: 0 auto 30px;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold-accent);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* About Section Ultra Professional */
.about {
    background: linear-gradient(180deg, var(--ultra-light) 0%, var(--white) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.about-content {
    display: grid;
    gap: 60px;
}

.about-text {
    text-align: center;
}

.about-text p {
    font-size: 1.3rem;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 2;
    font-weight: 300;
    position: relative;
    padding: 30px 0;
}

.about-text p::before {
    content: '"';
    font-size: 4rem;
    color: var(--gold-accent);
    position: absolute;
    top: -10px;
    left: -30px;
    font-family: serif;
    opacity: 0.3;
}

.about-text p::after {
    content: '"';
    font-size: 4rem;
    color: var(--gold-accent);
    position: absolute;
    bottom: -10px;
    right: -30px;
    font-family: serif;
    opacity: 0.3;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    background: linear-gradient(135deg, var(--white) 0%, var(--ultra-light) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow-light);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-medium);
    border-color: rgba(212, 175, 55, 0.2);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.2);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold-accent), var(--accent-color));
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover .feature-icon::after {
    opacity: 1;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon i {
    transform: scale(1.1);
}

.feature h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.feature p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 300;
}

/* Stats Section Ultra Professional */
.stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats::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 1200 400"><defs><pattern id="stats-pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(212,175,55,0.3)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23stats-pattern)"/></svg>');
    opacity: 0.1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), rgba(212, 175, 55, 0.3));
    border-radius: 2px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold-accent);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brands Section */
.brands {
    background: var(--white);
    position: relative;
}

.brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

/* Brands Carousel */
.brands-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px 0;
    overflow: hidden;
}

.brands-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative;
}

.brand-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 10px;
    border-radius: 0;
    transition: all 0.8s ease;
    box-shadow: none;
    position: relative;
    min-width: 180px;
    min-height: 100px;
    border: none;
}

/* Centro - marca principal - SIEMPRE destacada */
.brand-slide.center {
    opacity: 1;
    transform: scale(1.4);
    filter: grayscale(0%);
    box-shadow: none;
    border: none;
    z-index: 5;
    background: transparent;
}

/* Lados - marcas secundarias */
.brand-slide.side {
    opacity: 0.7;
    transform: scale(0.8);
    filter: grayscale(40%);
    z-index: 3;
}

/* Muy a los lados - marcas pequeñas - OCULTAS para mostrar solo 3 */
.brand-slide.far {
    opacity: 0;
    transform: scale(0.5);
    filter: grayscale(100%);
    z-index: 1;
    display: none;
}

.brand-slide img {
    width: 120px;
    height: 50px;
    object-fit: contain;
    object-position: center;
    transition: all 0.8s ease;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-sizing: border-box;
    /* Efecto de escalado reducido para evitar superposiciones */
    transform: scale(1.1);
}

.brand-slide.center img {
    width: 200px;
    height: 80px;
    padding: 0;
    /* Los logos del centro se ven más grandes en layout de 3 elementos */
    transform: scale(1.4);
}

.brand-slide.side img {
    width: 140px;
    height: 55px;
    padding: 0;
}

.brand-slide:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.brand-slide:hover img {
    transform: scale(1.05);
}



/* Responsive adjustments for carousel */
@media screen and (max-width: 968px) {
    .brands-carousel-container {
        max-width: 800px;
    }
    
    .brands-carousel {
        gap: 60px;
    }
    
    .brand-slide img {
        width: 100px;
        height: 45px;
        padding: 0;
    }
    
    .brand-slide.center {
        transform: scale(1.25);
    }
    
    .brand-slide.center img {
        width: 150px;
        height: 60px;
        padding: 0;
    }
    
    .brand-slide.side img {
        width: 120px;
        height: 50px;
        padding: 0;
    }
}

@media screen and (max-width: 768px) {
    .brands-carousel-container {
        max-width: 600px;
        padding: 30px 0;
    }
    
    .brands-carousel {
        gap: 50px;
    }
    
    .brand-slide {
        padding: 15px;
    }
    
    .brand-slide img {
        width: 80px;
        height: 35px;
        padding: 0;
    }
    
    .brand-slide.center {
        transform: scale(1.4);
    }
    
    .brand-slide.center img {
        width: 130px;
        height: 55px;
        padding: 0;
    }
    
    .brand-slide.side {
        transform: scale(1.0);
    }
    
    .brand-slide.side img {
        width: 100px;
        height: 40px;
        padding: 0;
    }
    
    .brand-slide.far {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .brands-carousel-container {
        max-width: 400px;
    }
    
    .brands-carousel {
        gap: 40px;
    }
    
    .brand-slide {
        padding: 10px;
    }
    
    .brand-slide img {
        width: 60px;
        height: 25px;
        padding: 0;
    }
    
    .brand-slide.center {
        transform: scale(1.5);
    }
    
    .brand-slide.center img {
        width: 110px;
        height: 45px;
        padding: 0;
    }
    
    .brand-slide.side img {
        width: 80px;
        height: 30px;
        padding: 0;
    }
    
    .brand-slide.far {
        display: none; /* Ocultar las muy lejanas en móviles pequeños */
    }
}

/* Contact Section Ultra Professional */
.contact {
    background: linear-gradient(180deg, var(--ultra-light) 0%, var(--white) 50%, var(--light-gray) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Contacto Ultra Profesional */
.contact-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
}

.contact-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--ultra-light) 100%);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
    min-height: 280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--accent-color));
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px var(--shadow-medium);
    border-color: var(--gold-accent);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-accent), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.contact-card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-card-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-content p {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-card-content .phone-number,
.contact-card-content .email {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-card-content .location {
    color: var(--accent-color);
    font-weight: 500;
}

.contact-card-content .subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

/* CTA Section */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark) 100%);
    padding: 60px 50px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.contact-cta::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 1200 400"><defs><pattern id="cta-pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(212,175,55,0.2)"/><circle cx="15" cy="15" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="45" cy="45" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Footer Ultra Professional */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--accent-color), var(--gold-accent));
}

.footer::after {
    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 1200 400"><defs><pattern id="footer-pattern" x="0" y="0" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="1" fill="rgba(212,175,55,0.1)"/><circle cx="20" cy="20" r="0.5" fill="rgba(119,141,169,0.1)"/><circle cx="60" cy="60" r="0.5" fill="rgba(119,141,169,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.footer-content {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-info {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--gold-accent);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--white);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    padding: 8px 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.footer-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-weight: bold;
}

.footer-list li:hover {
    opacity: 1;
    color: var(--gold-accent);
}

.footer-left h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-left p {
    opacity: 0.8;
    max-width: 400px;
    line-height: 1.6;
}

/* Estilos de redes sociales comentados - ya no se usan
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--gold-accent), #b8860b);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    border-color: var(--gold-accent);
}
*/

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .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);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .footer-section:first-child {
        text-align: center;
        margin-bottom: 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .footer-info {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-content {
        padding: 0 15px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 20px;
        margin: 0 auto 40px;
    }

    .contact-card {
        padding: 30px 20px;
        min-height: 220px;
    }

    .feature {
        padding: 30px 20px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Legal Page Styles */
.legal-page {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--ultra-light) 0%, var(--white) 100%);
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-accent);
    display: inline-block;
}

.legal-section h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.legal-section p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-section li {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 8px;
}

.company-info {
    background: linear-gradient(135deg, var(--ultra-light) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--gold-accent);
    margin: 20px 0;
}

.info-item {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    color: var(--primary-color);
    min-width: 180px;
    font-weight: 600;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid var(--border-light);
    text-align: center;
}

.legal-footer p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 25px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.legal-links {
    margin-bottom: 15px;
}

.legal-links a {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Legal Page Responsive */
@media screen and (max-width: 768px) {
    .legal-page {
        padding: 100px 0 40px;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-content {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .company-info {
        padding: 20px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-item strong {
        min-width: auto;
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 480px) {
    .legal-content {
        padding: 25px 20px;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .company-info {
        padding: 15px;
    }
}

/* Tablet Responsive */
@media screen and (max-width: 768px) {
    .contact-content {
        padding: 0 20px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 25px;
        max-width: 500px;
        margin: 0 auto 60px;
    }
}

/* Additional Ultra Professional Responsive Styles */
@media screen and (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .logo h1 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .contact-cta {
        padding: 40px 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .feature {
        padding: 40px 30px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Efectos hover adicionales */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::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.5s;
}

.btn-primary:hover::before {
    left: 100%;
}