/* VARIABLES DE COLOR Y FUENTES */
:root {
    --primary-pink: #f4c2c2; /* Rosa pálido elegante */
    --dark-pink: #d89b9b;
    --gold: #d4af37; /* Dorado clásico */
    --gold-light: #f3e5ab;
    --black: #1a1a1a;
    --white: #ffffff;
    --gray-light: #f9f9f9;
    --text-color: #333333;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --radius: 12px;
    --transition: all 0.3s ease;
}

/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--gray-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--black);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.text-center { text-align: center; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.section { padding: 100px 0; }
.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}
.section-subtitle {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* BOTONES */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}
.btn-outline-gold {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}
.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* NAVBAR GLASSMORPHISM */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}
.navbar.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
}
.logo img {
    height: 50px;
    object-fit: contain;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: url('img1.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(244,194,194,0.7)); /* Fade a Rosa */
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}
.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* ABOUT SECTION */
.about-section {
    background-color: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}
.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    border-radius: var(--radius);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.gold-accent-box {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: var(--radius);
    z-index: 1;
}

/* COLLECTION (CATALOGO) */
.collection-section {
    background-color: var(--primary-pink);
    background-image: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
}
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.product-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.product-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}
.product-card:hover .product-overlay {
    bottom: 0;
}
.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.05);
}
.product-info {
    padding: 20px;
    text-align: center;
}
.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
}
.product-info .price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* CONTACT SECTION */
.contact-section {
    background-color: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}
.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.info-item i {
    font-size: 2rem;
    color: var(--gold);
}
.info-item h4 {
    margin-bottom: 5px;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--gray-light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black);
    font-size: 1.2rem;
    border: 1px solid #ddd;
}
.social-links a:hover {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-3px);
}
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-height: 350px;
}

/* FOOTER */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}
.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Hace el logo blanco si tiene fondo transparente */
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* MEDIA QUERIES (RESPONSIVE) */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .hero-title { font-size: 3rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .gold-accent-box { display: none; }
}
