/* --- Style Maestro: Edición Boutique Deli --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Montserrat:wght@400;500;600;700&family=Quicksand:wght@300;400;600&display=swap');

:root {
    --color-hueso: #FCF5EE;
    --color-vino: #800020;
    --color-rosa-fuerte: #E75480;
    --color-rosa-pastel: #FFC0CB;
    --font-serif: 'Playfair Display', serif; 
    --font-sans: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* --- Fondo y Cuerpo Principal --- */
body {
    background-color: var(--color-hueso);
    font-family: var(--font-sans);
    color: #2d2d2d;
    min-height: 100vh;
    display: flex;
    flex-direction: column; 
    position: relative; 
    z-index: 0; 
}

/* LA MAGIA: El fondo sutil con los iconos médicos */
body::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-image: url('fondo.png'); 
    background-repeat: repeat; 
    background-position: center;
    background-size: 500px auto; 
    opacity: 0.25; 
    z-index: -1; 
}

/* --- Header y Logo (EL CÍRCULO METÁLICO MAMÓN) --- */
.main-header { padding: 40px 0 20px; text-align: center; }

.logo-principal { 
    width: 250px; 
    max-width: 90%; 
    aspect-ratio: 1 / 1; 
    object-fit: contain; 
    padding: 35px; 
    border-radius: 50%; 
    background: radial-gradient(circle, rgba(220, 160, 150, 0.8) 0%, rgba(190, 130, 120, 0.9) 100%);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15), 
                inset 0 0 20px rgba(255,255,255,0.4);
    margin: 0 auto; 
}

/* --- Hero Section (Portada) --- */
.hero-section { text-align: center; padding: 20px 20px 40px; max-width: 800px; margin: 0 auto; flex: 1; }
.frase-sagrada { font-family: var(--font-serif); font-size: clamp(32px, 8vw, 55px); color: var(--color-vino); font-style: italic; margin-bottom: 25px; line-height: 1.1; }

/* TEXTO DE DESCRIPCIÓN - EFECTO CRISTAL (ADIÓS MANCHA BLANCA) */
.descripcion { 
    font-size: 18px; 
    margin-bottom: 40px; 
    color: #2d2d2d; 
    font-weight: 600; 
    line-height: 1.6; 
    background-color: rgba(210, 160, 150, 0.25);
    border: 1px solid rgba(128, 0, 32, 0.15); 
    backdrop-filter: blur(3px); 
    padding: 12px 28px; 
    border-radius: 30px; 
    display: inline-block; 
}

/* --- Botones / Hipervínculos --- */
.cta-buttons { display: flex; flex-direction: column; gap: 15px; align-items: center; }
.btn {
    display: flex; align-items: center; justify-content: center;
    width: 100%; max-width: 350px; padding: 16px;
    border-radius: 50px; text-decoration: none;
    font-weight: 700; font-size: 13px; letter-spacing: 1px;
    text-transform: uppercase; transition: all 0.3s ease; gap: 10px;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.btn-catalogo { background: linear-gradient(45deg, var(--color-vino), var(--color-rosa-fuerte)); color: white; }
.btn-whatsapp { background-color: #25D366; color: white; }
.btn-instagram { background-color: #E1306C; color: white; }
.btn-tiktok { background-color: #000; color: #fff; }

/* --- Catálogo: Los Boxes de Precios --- */
.grid-productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.box-producto {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--color-rosa-pastel);
    padding: 25px; 
    text-align: center;
}

.box-producto img { width: 100%; border-radius: 15px; margin-bottom: 15px; }
.box-producto h3 { font-family: var(--font-serif); color: var(--color-vino); margin-bottom: 10px; }
.precio { font-weight: 600; color: var(--color-rosa-fuerte); font-size: 20px; }

/* --- Footer --- */
footer { background-color: var(--color-vino); color: white; padding: 40px 0; text-align: center; margin-top: auto; }

@media (pointer: fine) {
    body { cursor: none; }
    a, button, input, .card, .icon-interactivo, i, .btn-filtro { cursor: none !important; }
}

.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999999;
    pointer-events: none;
}
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--vino);
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(133, 14, 53, 0.4);
    transition: width 0.25s ease-out, height 0.25s ease-out, background-color 0.25s ease-out, border-color 0.25s ease-out;
}