/* Colores exactos de la marca */
:root {
    --brand-blue: #1a2b56;
    --brand-red: #c42128;
    --brand-gold: #d4a85a;
    --brand-pink: #d63384;
}

/* Tipografía Proporcional */
h1, h2, h3 {
    letter-spacing: -0.02em;
}

/* Efecto de Elevación en Tarjetas de Colección */
.collection-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    border-color: var(--brand-gold);
}

/* Estilo del Acordeón FAQ (Limpio y Moderno) */
.faq-details summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-details summary::-webkit-details-marker {
    display: none;
}

.faq-details[open] summary {
    border-bottom: 2px solid var(--brand-blue);
    margin-bottom: 10px;
}

/* Botón de Exploración con Gradiente Suave */
.btn-explore {
    background: linear-gradient(135deg, #d4a85a 0%, #b88a44 100%);
    transition: all 0.3s ease;
}

.btn-explore:hover {
    filter: brightness(1.1);
    letter-spacing: 1px;
}
/* Definición del tono exacto */
:root {
    --doux-pink-gradient: linear-gradient(135deg, rgba(161, 43, 92, 0.9), rgba(26, 26, 46, 0.8));
}

.hero-header {
    height: 80vh; /* Ocupa el 80% de la altura de la pantalla */
    width: 100%;
    /* Fondo con la imagen de las galletas y el filtro rosado */
    background: var(--doux-pink-gradient), url('../img/background-cookies.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 10px;
}
/* style.css */

/* Fondo para Móviles (Vertical/Estrecho) */
.hero-main-bg {
    /* Puedes usar una versión vertical de tu imagen o una con un overlay oscuro */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('../img/back-ic-mobile.png'); 
}

/* Fondo para Pantallas Anchas (Desktop) */
@media (min-width: 1024px) {
    .hero-main-bg {
        /* Aquí cargamos tu imagen original de escritorio */
        background-image: url('../img/back-ic.png?123'); 
        margin-top: 50px;
        /* Si quieres quitar el overlay oscuro en desktop, asegúrate de no incluir el linear-gradient aquí */
    }
}
.disclaimer {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.btn-explore {
    display: inline-block;
    background: #FFC107; /* Color dorado para resaltar */
    color: #1A1A2E;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.btn-explore:hover {
    transform: scale(1.05);
}
/* CSS Aislado para la sección Bakery Whitener */
#bakery-whitener-section.bakery-whitener-wrapper {
    background: linear-gradient(180deg, #fdfdfd 0%, #eef2f7 100%);
    width: 100%;
    padding: 80px 5%;
    font-family: 'Open Sans', sans-serif; /* Tu fuente global */
    box-sizing: border-box;
}

#bakery-whitener-section .bakery-whitener-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

/* Lado del Texto */
#bakery-whitener-section .bakery-whitener-text {
    flex: 1.1;
    text-align: left;
}

#bakery-whitener-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e; /* Azul oscuro del whitener */
    line-height: 1.1;
    margin-bottom: 20px;
}

#bakery-whitener-section .bakery-whitener-subtitle {
    font-size: 1.1rem;
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 30px;
}

#bakery-whitener-section .bakery-whitener-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

#bakery-whitener-section .bakery-whitener-benefits li {
    font-size: 1.1 rem;
    color: #4a4a4a;
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    line-height: 1.4;
}

/* Icono de checkmark estilizado */
#bakery-whitener-section .bakery-whitener-benefits li::before {
    content: '✓';
    color: #0056b3; /* Azul de énfasis */
    position: absolute;
    left: 0;
    font-weight: bold;
}

#bakery-whitener-section .bakery-whitener-benefits li span {
    font-weight: bold;
    color: #1a1a2e;
}

/* Botón estilizado como image_28.png */
#bakery-whitener-section .bakery-whitener-button {
    display: inline-block;
    background-color: #002e6e; /* Un azul muy oscuro y profesional */
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s;
}

#bakery-whitener-section .bakery-whitener-button:hover {
    background-color: #001f4d;
}

/* Lado de la Imagen */
#bakery-whitener-section .bakery-whitener-image {
    flex: 1;
    text-align: center;
}

#bakery-whitener-section .bakery-whitener-jar {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    /* Sombras suaves sobre la imagen */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
#oil-based-section.oil-based-wrapper {
    /* Gradiente suave estilo Magic Spoon */
    background: linear-gradient(135deg, #e0d6f5 0%, #f7e1f0 100%);
    width: 100%;
    padding: 80px 5%;
    box-sizing: border-box;
}

#oil-based-section .oil-based-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

#oil-based-section h2 {
    font-size: 3.5rem;
    color: #2D0B40; /* Azul/Púrpura oscuro para contraste */
    margin-bottom: 20px;
}

#oil-based-section .oil-based-subtitle {
    font-size: 1.2rem;
    color: #4A148C;
    font-weight: 600;
    margin-bottom: 30px;
}

#oil-based-section .oil-based-benefits li {
    font-size: 1.1rem;
    color: #1A1A2E;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

#oil-based-section .oil-based-benefits li::before {
    content: '✦';
    color: #880E4F; /* Color que combina con el logo Doux */
    position: absolute;
    left: 0;
}

#oil-based-section .oil-based-button {
    display: inline-block;
    background-color: #4A148C; /* Color sólido para el botón */
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}
/* style.css */

/* Estado inicial del Nav: oculto arriba y transparente */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    background: transparent;
    transform: translateY(0); /* Visible al inicio sobre el hero */
    transition: all 0.4s ease-in-out;
}

/* Cuando el usuario hace scroll, aplicamos esta clase */
#main-nav.nav-scrolled {
    background: rgba(26, 43, 86, 0.95); /* Azul de tu marca con transparencia */
    padding: 1rem 1.5rem; /* Se hace un poco más pequeño */
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px); /* Efecto esmerilado moderno */
}

/* Animación de "aparición" (opcional si quieres que se esconda y vuelva a bajar) */
.nav-hidden {
    transform: translateY(-100%) !important;
}
/* style.css */

/* Estado inicial del Nav: oculto arriba y transparente */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    background: transparent;
    transform: translateY(0); /* Visible al inicio sobre el hero */
    transition: all 0.4s ease-in-out;
}

/* Cuando el usuario hace scroll, aplicamos esta clase */
#main-nav.nav-scrolled {
    background: rgba(26, 43, 86, 0.95); /* Azul de tu marca con transparencia */
    padding: 1rem 1.5rem; /* Se hace un poco más pequeño */
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px); /* Efecto esmerilado moderno */
}

/* Animación de "aparición" (opcional si quieres que se esconda y vuelva a bajar) */
.nav-hidden {
    transform: translateY(-100%) !important;
}