/* CONFIGURACIÓN DE COLORES Y FUENTES */
:root {
    --rosa-pastel: #fdf2f4;
    --rosa-fuerte: #E17A8F;
    --color-logo-print: #2288b4;
    --gris-texto: #4A4A4A;
    --fondo-sitio: #fcfcfc;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--fondo-sitio);
    color: var(--gris-texto);
    line-height: 1.6;
}

/* CABECERA */
header {
    text-align: center;
    padding: 40px 20px;
    background: white;
}

.logo {
    max-width: 120px;
    margin-bottom: 15px;
}

.titulo-principal {
    font-family: 'Great Vibes', cursive;
    color: var(--rosa-fuerte);
    font-size: 3.5rem;
    font-weight: 400;
}

.nav-sofisticada {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-sofisticada a {
    text-decoration: none;
    color: var(--gris-texto);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-sofisticada a:hover {
    color: var(--rosa-fuerte);
}

.btn-destacado {
    background-color: var(--rosa-fuerte);
    color: white !important;
    padding: 10px 22px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(225, 122, 143, 0.2);
}

/* BANNER PRINCIPAL */
.hero-banner {
    width: 100%;
    height: 350px;
    background-image: url('banner-principal.png');
    background-size: cover;
    background-position: 50% 8%;
    border-bottom: 5px solid var(--rosa-pastel);
}

/* CATÁLOGO Y TARJETAS */
.seccion-catalogo {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.subtitulo {
    text-align: center;
    color: var(--color-logo-print);
    font-size: 2rem;
    margin-bottom: 40px;
}

.grid-productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 320px));
    gap: 35px;
    justify-content: center;
}

/* Estilo unificado para TODAS las tarjetas */
.tarjeta-producto, .card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
    width: 100%;
    margin: 0 auto;
}

.tarjeta-producto:hover, .card:hover {
    transform: translateY(-8px);
}

.tarjeta-producto img, .card-img, .placeholder-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.placeholder-img {
    background: var(--rosa-pastel);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rosa-fuerte);
    font-weight: bold;
}

.info-producto, .card-content {
    padding: 20px;
    text-align: center;
}

.info-producto h3, .card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-producto p, .card-content p {
    font-size: 0.9rem;
    color: #777;
}

/* BOTONES SECUNDARIOS Y CONSULTAR */
.btn-secundario, .btn-consultar {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background-color: transparent;
    border: 2px solid var(--rosa-fuerte);
    color: var(--rosa-fuerte) !important;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.btn-secundario:hover, .btn-consultar:hover {
    background-color: var(--rosa-fuerte);
    color: white !important;
}

/* FORMULARIO */
.seccion-formulario {
    background-color: var(--rosa-pastel);
    padding: 80px 20px;
}

.contenedor-form {
    max-width: 550px;
    margin: 0 auto;
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.aviso-reserva {
    font-size: 0.85rem;
    color: var(--rosa-fuerte);
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
}

input, select, textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 14px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    background: #fdfdfd;
}

.botones-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-enviar {
    width: 100%;
    background-color: #25D366;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-limpiar {
    width: 100%;
    background-color: transparent;
    color: #999;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-limpiar:hover {
    background-color: #f9f9f9;
    color: #666;
}

footer {
    padding: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
}

/* PIE DE PÁGINA (FOOTER) */
.pie-pagina {
    background-color: var(--rosa-pastel);
    padding: 40px 20px;
    text-align: center;
    color: var(--gris-texto);
    border-top: 3px solid white;
}

.footer-contenido {
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contenido a {
    color: var(--rosa-fuerte);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.footer-contenido a:hover {
    color: #c9657a;
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* NUEVOS ESTILOS - SOLUCIÓN INTEGRAL */
.header-titulos {
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.1rem;
    color: var(--gris-texto);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Banner con texto superpuesto */
.hero-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Oscurecemos un poquito el fondo del banner para que el texto blanco resalte */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.1); 
}

.banner-contenido {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 800px;
}

.banner-contenido h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    /* ACÁ ES DONDE CONTROLÁS EL GROSOR (NEGRITA) */
    font-weight: bold; /* También podés usar el número 700 */
    font-weight: 400;
    margin-bottom: 10px;
    
    /* ACÁ AGREGAMOS EL BORDE NEGRO (Grosor y Color) */
    -webkit-text-stroke: 1px rgb(241, 241, 243);
    
    /* Te dejé una sombra suave atrás para darle más profundidad */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.banner-contenido p {
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* --- DISEÑO RESPONSIVO (CELULARES Y TABLETS) --- */
@media (max-width: 768px) {
    /* Cabecera y Navegación */
    header {
        padding: 25px 15px;
    }

    .titulo-principal {
        font-size: 2.5rem; /* Achicamos un poco el título principal */
    }

    .nav-sofisticada {
        flex-direction: column; /* Apilamos los enlaces verticalmente */
        gap: 15px;
        margin-top: 20px;
    }

    .btn-destacado {
        width: 100%; /* El botón ocupa todo el ancho del menú */
        text-align: center;
        padding: 12px;
    }

    /* Banner */
    .hero-banner {
        height: 200px; /* Reducimos la altura para que no ocupe toda la pantalla */
    }

    /* Grillas y Secciones */
    .seccion-catalogo {
        padding: 40px 15px;
    }

    .subtitulo {
        font-size: 1.6rem;
    }

    /* Formulario */
    .seccion-formulario {
        padding: 40px 15px;
    }

    .contenedor-form {
        padding: 25px 20px;
    }
    .tagline {
        font-size: 0.85rem;
    }

    .banner-contenido h2 {
        font-size: 2.5rem;
    }

    .banner-contenido p {
        font-size: 1rem;
    }
}