/* =========================================
   VARIABLES Y CONFIGURACIÓN AESTHETIC
   ========================================= */
:root {
    --celeste-patagonia: #D0E7FF; /* Celeste principal que pediste */
    --blanco-nieve: #F8FBFF;
    --texto-oscuro: #1A1C1E;
    --texto-suave: #6B7280;
    --font-modern: 'Inter', -apple-system, sans-serif;
    --font-nostalgic: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-modern);
    background-color: var(--celeste-patagonia); /* Predomina el celeste */
    color: var(--texto-oscuro);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   ENCABEZADO UNIFICADO (IGUAL EN TODO EL SITIO)
   ========================================= */
.header-universal {
    position: fixed;
    top: 0; 
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 5%;
    background: rgba(208, 231, 255, 0.85); /* Celeste con transparencia */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-micro {
    height: 20px; /* Logo muy chico y elegante como pediste */
    width: auto;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--texto-oscuro);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    opacity: 0.6;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 1;
    color: #fff; /* Brillo al pasar el mouse */
}

/* =========================================
   ESTILO HERO (PÁGINA DE INICIO)
   ========================================= */
.hero-aesthetic {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-content-area {
    position: relative;
    z-index: 10;
    width: 50%;
}

.location-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(26, 28, 30, 0.4);
    display: block;
    margin-bottom: 1rem;
}

.main-title {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
}

.serif-italic {
    font-family: var(--font-nostalgic);
    font-style: italic;
    font-weight: 400;
}

.hero-description {
    font-family: var(--font-nostalgic);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--texto-suave);
    margin-bottom: 3rem;
}

/* LOGO EN ESPACIO VACÍO (MARCA DE AGUA) */
.hero-visual-area {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    display: flex;
    justify-content: center;
}

.hero-logo-large {
    width: 100%;
    max-width: 450px;
    opacity: 0.12; /* Sutil para no saturar */
    filter: grayscale(1);
    pointer-events: none;
}

/* =========================================
   PÁGINA DE PRODUCTOS (RELLENO VISUAL)
   ========================================= */
.products-main {
    padding: 120px 5% 60px;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: var(--blanco-nieve);
    border-radius: 4px;
    padding: 15px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.product-img-container {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.product-info {
    padding: 20px 10px;
    text-align: center;
}

.category {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--texto-suave);
    display: block;
    margin-bottom: 8px;
}

.price {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 12px 0;
}

/* =========================================
   BOTONES Y ELEMENTOS COMUNES
   ========================================= */
.btn-aesthetic {
    padding: 1.1rem 3rem;
    border: 1px solid var(--texto-oscuro);
    text-decoration: none;
    color: var(--texto-oscuro);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
}

.btn-aesthetic:hover, .btn-buy:hover {
    background: var(--texto-oscuro);
    color: var(--blanco-nieve);
}

.btn-buy {
    background: var(--celeste-patagonia);
    border: none;
    padding: 12px 25px;
    width: 100%;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

/* SECCIÓN NOSOTROS / TEXTO */
.about-main {
    padding: 150px 10%;
    min-height: 80vh;
}

.about-hero {
    max-width: 700px;
}

/* FOOTER */
.footer-simple {
    padding: 60px 0;
    text-align: center;
    opacity: 0.4;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-aesthetic {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .hero-content-area { width: 100%; }
    .hero-visual-area { 
        position: relative; 
        width: 80%; 
        margin-top: 50px;
        right: 0; top: 0; transform: none;
    }
    .main-title { font-size: 4rem; }
}
