:root {
    /* --- TU PALETA DE COLORES --- */
    --primary: #ee369b;       /* Magenta (Botones, Precios, Acentos) */
    --primary-hover: #c21876; /* Magenta oscuro para hover */
    --secondary: #5d54a4;     /* Morado (Títulos, Footer, Fondos oscuros) */
    --black: #000000;         /* Textos generales */
    --white: #ffffff;         /* Fondos */
    --bg-light: #fdf2f8;      /* Fondo muy suave */
    
    /* Fuentes */
    --font-main: 'Inter', sans-serif;
    --font-title: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--black);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Tipografía */
h1, h2, h3 { font-family: var(--font-title); font-weight: 700; color: var(--secondary); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(93, 84, 164, 0.1);
    position: sticky; top: 0; z-index: 100;
}
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 900; color: var(--secondary); text-transform: uppercase; letter-spacing: -0.5px; }
.logo span { color: var(--primary); }

/* Hero Section */
.hero { 
    background: linear-gradient(rgba(93, 84, 164, 0.8), rgba(238, 54, 155, 0.6)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1350&q=80');
    background-size: cover; background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}
.hero h1 { color: var(--white); font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; color: rgba(255,255,255,0.95); margin-bottom: 30px; }

/* Botones */
.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(238, 54, 155, 0.3);
    cursor: pointer;
}
.btn:hover { background: var(--primary-hover); border-color: var(--primary-hover); transform: translateY(-2px); }

.btn-outline {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-outline:hover { background: var(--white); color: var(--primary); }

/* Alertas (Caja de Info) */
.alert-box {
    background: var(--white);
    border-left: 6px solid var(--primary); 
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Grid de Productos */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.food-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.food-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(93, 84, 164, 0.15); }
.food-img { height: 200px; background-color: #e5e7eb; background-size: cover; background-position: center; }
.food-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }

/* Detalles del Producto */
.rules {
    font-size: 0.75rem;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 20px;
    color: var(--secondary);
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
    border: 1px solid rgba(93, 84, 164, 0.1);
    align-self: flex-start;
}
h3 { margin-bottom: 10px; font-size: 1.3rem; }
p { font-size: 0.95rem; color: #555; margin-bottom: 15px; }

/* Botón Cotizar dentro de la card */
.card-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    margin-top: auto;
}
.card-btn:hover { background: var(--primary); color: var(--white); }

/* Sección Grupo WhatsApp (Fondo Morado) */
.daily-section {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    margin-top: 0; /* Ajustado para flujo continuo */
}
.daily-section h2 { color: var(--white); }
.daily-section p { color: #ffffff !important; opacity: 1; font-size: 1.1rem; }
.daily-section a.text-link { color: var(--white); text-decoration: underline; }

/* Footer */
footer {
    background: #1a1a1a;
    color: #888;
    padding: 50px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 4px solid var(--primary);
}

/* Botón Flotante */
.whatsapp-float {
    position: fixed; bottom: 20px; right: 20px;
    background: #25D366; color: white;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000; transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

@media(max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .btn, .btn-outline { width: 100%; margin-bottom: 10px; text-align: center; }
}
