/* ===== EXCLUSIVAS COLLECTION - DISEÑO ELEGANTE NEGRO Y BLANCO ===== */

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HERO SECTION ===== */
.exclusive-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    overflow: hidden;
}

.exclusive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    position: relative;
}

.title-main {
    display: block;
    font-weight: 300;
    opacity: 0.9;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.title-exclusive {
    display: block;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    opacity: 0.8;
    margin-bottom: 3rem;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.decoration-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.decoration-diamond {
    font-size: 0.8rem;
    opacity: 0.7;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, #ffffff, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    opacity: 0.6;
}

/* ===== PRODUCTOS SECTION ===== */
.exclusive-products {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.7;
    letter-spacing: 0.1em;
}

/* ===== PRODUCTOS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.product-image-container {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #111111, #000000);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 2rem;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffffff;
    color: #000000;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
    z-index: 2;
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.product-description {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.product-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.price-currency {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== FOOTER SECTION ===== */
.section-footer {
    text-align: center;
}

.view-more-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transition: left 0.3s ease;
    z-index: 1;
}

.view-more-btn:hover::before {
    left: 0;
}

.view-more-btn:hover {
    color: #000000;
}

.btn-text,
.btn-arrow {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.view-more-btn:hover .btn-arrow {
    transform: translateX(5px);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .exclusive-products {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .action-btn {
        width: 45px;
        height: 45px;
    }
    
    .view-more-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* ===== SCROLL BEHAVIOR ===== */
html {
    scroll-behavior: smooth;
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}


/* ===== FOOTER STYLES ===== */
#footer-container {
    margin-top: 0;
    background: #000000;
}

#footer-container footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
    color: #ffffff;
}

#footer-container .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

#footer-container .footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

#footer-container .footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

#footer-container .footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

#footer-container .footer-section a:hover {
    color: #ffffff;
}

#footer-container .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

#footer-container .social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

#footer-container .social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

#footer-container .social-links a:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* ===== NAVBAR OVERRIDE - MANTENER CONSISTENCIA ===== */
/* Forzar fuente Montserrat para toda la navbar para mantener consistencia */
.navbar,
.navbar *,
.navbar-menu,
.navbar-menu *,
.navbar-logo,
.navbar-logo * {
    font-family: 'Montserrat', sans-serif !important;
}

.navbar {
    /* Asegurar que la navbar mantenga su tamaño original */
    height: auto !important;
    padding: 1rem 0 !important;
}

.navbar-menu a {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
}

.navbar-logo {
    font-family: 'Montserrat', sans-serif !important;
}

/* Reset específico para el contenedor de navbar */
#navbar-container,
#navbar-container * {
    font-family: 'Montserrat', sans-serif !important;
}
