/* Fuentes personalizadas */
@font-face {
    font-family: 'Zalando Sans Expanded';
    src: url('../fonts/ZalandoSansExpanded-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Zalando Sans Expanded';
    src: url('../fonts/ZalandoSansExpanded-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Zalando Sans Expanded';
    src: url('../fonts/ZalandoSansExpanded-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Zalando Sans Expanded';
    src: url('../fonts/ZalandoSansExpanded-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Zalando Sans Expanded';
    src: url('../fonts/ZalandoSansExpanded-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Variables de colores */
:root {
    --primary-red: #E31E24;
    --primary-blue: #2563EB;
    --dark-blue: #1a3a5c;
    --text-gray: #6B7280;
    --bg-light: transparent;
    --yellow: #FDB913;
}

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 85px;
    font-family: 'Zalando Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Navbar */
.navbar {
    background-color: #ffffff !important;
    border-bottom: 2px solid var(--primary-red);
    padding: 0;
    height: 85px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    /* Altura fija para controlar el logo */
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-logo {
    height: 140px;
    width: auto;
    display: block;
    padding: 35px 50px;
    background-color: var(--primary-red);
    border-radius: 0 0 50px 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 50px;
    z-index: 1040;
    object-fit: contain;
}

.navbar-logo:hover {
    transform: scale(1.05);
}



.navbar-nav .nav-link {
    color: #00306c !important;
    /* Azul oscuro intenso como la foto */
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.5rem 2rem !important;
    /* Más separación como pidió el usuario */
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-red) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-red) !important;
}

/* Hero Carousel */
#heroCarousel {
    cursor: grab;
    user-select: none;
}

#heroCarousel:active {
    cursor: grabbing;
}

/*
#heroCarousel .carousel-inner {
    height: 100vh;
    min-height: 600px;
}*/

#heroCarousel .carousel-item {
    position: relative;
    overflow: hidden;
}

#heroCarousel .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

#heroCarousel .carousel-caption {
    position: absolute;
    top: 55%;
    left: auto;
    right: 5%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: right;
    width: 50%;
    max-width: 800px;
}

.slide-title {
    font-family: 'Zalando Sans', sans-serif;
    font-weight: 800;
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 0;
}

.slide-title.yellow {
    color: var(--yellow);
}

.slide-title.white {
    color: white;
}

.slide-subtitle {
    font-family: 'Zalando Sans', sans-serif;
    font-weight: 800;
    font-size: 4.5rem;
    line-height: 1.1;
}

.slide-subtitle.yellow {
    color: var(--yellow);
}

.slide-subtitle.white {
    color: white;
}

/* Slide styles - image-based, no background needed */



/* Controles del carrusel */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    z-index: 3;
    opacity: 0.8;
}

#heroCarousel .carousel-indicators {
    z-index: 3;
    bottom: 30px;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Secciones */
section {
    scroll-margin-top: 70px;
}

.section-title {
    color: var(--dark-blue);
    font-weight: 800;
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: 2.1rem;
    margin-bottom: 3rem;
}

/* Presentaciones Slider */
.presentaciones-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 30px 10px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.presentaciones-slider::-webkit-scrollbar {
    display: none;
}

.presentacion-item {
    flex: 0 0 339.44px;
    min-width: 339.44px;
    scroll-snap-align: center;
    transition: all 0.5s ease;
    padding-bottom: 60px;
    /* Espacio para el reflejo */
}

.presentacion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    position: relative;
}

.presentacion-img-container {
    margin-bottom: 20px;
    width: 330.44px;
    height: 330.44px;
    transition: transform 0.3s ease;
}

.presentacion-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 37.86px;
    /* Evitar que la imagen se "arrastre" como archivo (fantasma) */
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    /* Esto evita que el mouse interactúe con el archivo imagen */
}

/* Indicador de progreso estilo Instagram moderno */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: -20px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #dee2e6;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-red);
    width: 24px;
    border-radius: 4px;
}

.presentacion-card:hover .presentacion-img-container {
    transform: translateY(-10px);
}

.presentacion-tag {
    background-color: var(--primary-red);
    color: white;
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25.24px;
    line-height: 1;
    letter-spacing: 0%;
    text-align: center;
    padding: 0;
    border-radius: 25px;
    margin-bottom: 15px;
    width: 198.11px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.presentacion-desc {
    color: #004286;
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 500;
    font-size: 18.93px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    padding: 0 10px;
    margin-top: 5px;
    width: 339.44px;
}

/* Cards */
.card {
    border: none;
}

.card:hover {
    transform: translateY(-5px);
}

/* Botones */
.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-primary:hover {
    background-color: #c41a1f;
    border-color: #c41a1f;
}

.btn-outline-primary {
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-outline-primary:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

/* Footer */
footer {
    margin-top: 4rem;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 0 !important;
    }

}

@media (max-width: 576px) {
    .slide-title {
        font-size: 2rem;
    }

    .slide-subtitle {
        font-size: 2rem;
    }

    .logo-box {
        min-width: 140px;
        padding: 1rem 1.5rem;
    }

    .logo-arroz {
        font-size: 0.6rem;
    }

    .logo-dona {
        font-size: 1.5rem;
    }
}

/* Sección Beneficios */
.bg-dark-blue-gradient {
    background:  url('../img/beneficios/Foto - Beneficios.png') no-repeat center bottom;
    background-size: cover;
    padding: 80px 0 450px 0 !important;
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}



#beneficios {
    position: relative;
}

#beneficios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#beneficios .container {
    position: relative;
    z-index: 2;
}

.beneficio-item {
    transition: transform 0.3s ease;
    padding: 15px;
}

.beneficio-item:hover {
    transform: translateY(-5px);
}

.img-icon {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.beneficio-title {
    color: var(--yellow);
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.beneficio-desc {
    color: white;
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4;
    max-width: 260px;
    margin: 0 auto;
}

.bowl-image {
    display: none;
    /* La imagen ahora es el fondo */
}

@media (max-width: 991px) {
    .beneficio-title {
        font-size: 1.1rem;
    }

    .beneficio-desc {
        font-size: 0.9rem;
    }

    .bowl-image {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .bg-dark-blue-gradient {
        background: url('../img/beneficios/beneficio.png') no-repeat center center;
       
    }
}

/* Sección Testimonios */
#testimonios {
    background-color: #002144;
    /* Azul más profundo como en la imagen */
    overflow: hidden;
}

.testimonials-title {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 700;
    font-size: 2.1rem;
}

.testimonials-slider-container {
    padding: 0 0 40px;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    gap: 40px;
    padding: 20px 50px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    cursor: grab;
}

.testimonials-slider:active {
    cursor: grabbing;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-item {
    flex: 0 0 calc((100vw - 100px - 80px) / 3);
    min-width: calc((100vw - 100px - 80px) / 3);
    scroll-snap-align: center;
    user-select: none;
}

.testimonial-card {
    background-color: var(--primary-red);
    border-radius: 40px;
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; /* Centrar todo el contenido */
}

.testimonial-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid white;
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.testimonial-name {
    color: white;
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.testimonial-role {
    color: var(--yellow);
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
}

.testimonial-text {
    color: white;
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.1;
    font-style: normal;
    margin-top: 15px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 25px;
}

.testimonials-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonials-dots .dot.active {
    background-color: var(--yellow);
    transform: scale(1.2);
    width: 12px;
    border-radius: 50%;
}

/* Ajustes Responsivos */
@media (max-width: 991px) {
    .testimonial-item {
        flex: 0 0 calc((100vw - 100px - 40px) / 2);
        min-width: calc((100vw - 100px - 40px) / 2);
    }
}

@media (max-width: 576px) {
    .testimonial-item {
        flex: 0 0 calc(100vw - 100px);
        min-width: calc(100vw - 100px);
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }

    .testimonials-title {
        font-size: 1.8rem;
    }

    .testimonial-text {
        font-size: 1.5rem;
    }
}

/* Sección Recetas */
#recetas {
    background-color: var(--primary-red);
    overflow: hidden;
}

.recetas-title {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
}

.text-yellow {
    color: var(--yellow) !important;
}

.recetas-slider-container {
    padding: 0px 0 40px;
    overflow: hidden;
}

.recetas-slider {
    display: flex;
    overflow-x: auto;
    gap: 40px;
    padding: 20px 50px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    cursor: grab;
    user-select: none;
}

.recetas-slider::-webkit-scrollbar {
    display: none;
}

.receta-item {
    flex: 0 0 calc((100vw - 100px - 80px) / 3);
    min-width: calc((100vw - 100px - 80px) / 3);
    scroll-snap-align: center;
}

.receta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    height: 100%;
}

.receta-img-container {
    width: 250px;
    height: 250px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.receta-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.receta-card:hover .receta-img-container {
    transform: scale(1.05);
}

.receta-name {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.receta-desc {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    max-width: 350px;
    margin-bottom: 25px;
    line-height: 1.4;
    flex-grow: 1;
}

.btn-ver-mas {
    background-color: #002144;
    color: white;
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 600;
    padding: 11px 39px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-ver-mas:hover {
    background-color: white;
    color: #002144;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .receta-item {
        flex: 0 0 calc((100vw - 100px - 40px) / 2);
        min-width: calc((100vw - 100px - 40px) / 2);
    }
}

@media (max-width: 576px) {
    .receta-item {
        flex: 0 0 calc(100vw - 100px);
        min-width: calc(100vw - 100px);
    }

    .receta-img-container {
        width: 250px;
        height: 250px;
    }

    .receta-name {
        font-size: 1.2rem;
    }
}

/* Premium Footer */
.premium-footer {
    background-color: #002144;
    /* Azul profundo consistente */
    color: white;
    padding: 80px 0 40px;
    border-top: 4px solid #2563EB;
    /* Línea decorativa azul */
    font-family: 'Zalando Sans Expanded', sans-serif;
}

.footer-logo {
    height: 70px;
    width: auto;
    filter: brightness(1.1);
}

.footer-title {
    font-weight: 700;
    font-size: 1.1rem;
    /* Ajustado para coincidir con la foto */
    margin-bottom: 25px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Más espacio entre letras como en la foto */
}

.footer-side-copy {
    font-size: 1.1rem;
    color: white;
    font-weight: 300;
    line-height: 1.4;
    opacity: 1;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.footer-socials {
    margin-left: 1rem;
    display: flex;
    gap: 20px;
}

.footer-socials i {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.footer-socials a:hover i {
    color: var(--yellow);
    transform: translateY(-3px);
}

.footer-brand-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff !important;
    font-weight: 400;
    text-align: left;
    margin: 0;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    flex: 1;
    padding-right: 20px;
}

.footer-brand-container {
    padding-top: 10px;
    display: flex;
}

.footer-brand-image {
    height: 200px;
    /* Reducido ligeramente de 250px para mejor balance con el texto */
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* Decoración Formulario Contacto */
#contact-sec {
    position: relative;
    overflow: hidden;
    background-color: white;
}

.contact-red-bar {
    height: 80px;
    width: 100%;
}

#contact-sec .container {
    display: flex;
    flex-direction: column;
    /*align-items: center;/*
    text-align: center;
    /* Asegura que el texto (título del form) se centre */
}

.hs-form-frame {
    width: 100%;
    max-width: 800px;
    /* Ancho máximo para que no se vea muy estirado */
    margin: 0 auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.contact-decoration-wrapper {
    position: absolute;
    /* Restaurado para que actúe como sticker */
    left: 4rem;
    top: 0.5rem;
    z-index: 20;
    pointer-events: none;
    transform: rotate(-15deg);
    /* Ligeramente inclinado estilo sticker */
    transition: transform 0.3s ease;
}

.contact-chonga-img {
    width: 780px;
    height: auto;
    display: block;
    /* Sombra para efecto sticker */
}

.contact-decoration-right {
    left: auto;
    right: -7rem;
    top: auto;
    bottom: 0.6rem;
    transform: rotate(2deg);
}

@media (max-width: 1200px) {
 /*   #contact-sec .container {
        padding-right: 150px;
    }*/

    .contact-chonga-img {
        width: 350px;
    }

    .contact-decoration-right .contact-chonga-img {
        width: 280px;
    }
}

@media (max-width: 991px) {
    #contact-sec .container {
        padding-left: 15px;
        padding-right: 15px;
        /* Volvemos al padding normal en tablet/móvil */
    }

    .contact-decoration-wrapper {
        left: auto;
       
        top: 0;
    }

    .contact-decoration-right {
        display: none;
    }
/*
    .contact-chonga-img {
        width: 250px;
    }
*/
    .contact-red-bar {
        height: 0px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-chonga-img {
        width: 420px;
        /* Más pequeño en teléfonos */
    }

    .contact-decoration-wrapper {
        left: 1rem;
        top: 0.5rem;
        transform: rotate(5deg);
        /* Menos rotación en móvil */
    }
}

@media (max-width: 576px) {
    .footer-brand-container {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .footer-brand-image {
        margin-top: 20px;
        margin-left: 0 !important;
        height: 180px;
    }

    .footer-brand-text {
        text-align: left;
        margin-top: 20px;
    }

    .navbar-logo {
        height: 100px !important;
        padding: 25px 35px !important;
        border-radius: 0 0 30px 30px !important;
        left: 20px !important;
    }

    body {
        padding-top: 70px !important;
    }

    .navbar {
        background-color: #ffffff !important;
        padding: 0;
        height: 70px !important;
        border-bottom: 2px solid var(--primary-red);
    }

    #heroCarousel .carousel-item {
        height: auto;
    }

    .container .position-relative {

        margin-top: 14%;

    }

    .contact-decoration-wrapper {
        left: auto;
        top: 5px;
        transform: rotate(5deg);
    }

    .contact-chonga-img {
        width: 360px;
    }
}

/* Estilos de Páginas de Recetas */
.recipe-detail-section {

    padding-bottom: 80px;
}

.recipe-hero-container {
    width: 100%;
    margin-bottom: 50px;
    background-color: #f8f9fa;
}

.recipe-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.recipe-title {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: #00306c;
    margin-bottom: 20px;
}

.recipe-intro {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: 1.15rem;
    color: #00306c;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 900px;
}

.recipe-content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 80px;
}

.recipe-subtitle {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #00306c;
    margin-bottom: 30px;
}

.ingredients-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.ingredients-list li {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: 1.1rem;
    color: #00306c;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.ingredients-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00306c;
}

.steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.steps-list li {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: 1.1rem;
    color: #00306c;
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
    line-height: 1.4;
}

.steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 800;
    color: #00306c;
}

.recipe-sidebar-title {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #00306c;
    margin-bottom: 10px;
}

.sidebar-divider {
    height: 1px;
    background-color: #00306c;
    margin-bottom: 20px;
}

.other-recipes-list {
    list-style: none;
    padding: 0;
}

.other-recipes-list li {
    margin-bottom: 15px;
}

.other-recipes-list a {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 600;
    color: #00306c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.other-recipes-list a:hover {
    color: var(--primary-red);
}

.btn-volver-recipe {
    background-color: var(--primary-red);
    color: white;
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 700;
    padding: 12px 60px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    margin-top: 40px;
    transition: all 0.3s ease;
}

.btn-volver-recipe:hover {
    background-color: #002144;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .recipe-content-grid {
        grid-template-columns: 1fr;
    }
    
    .recipe-sidebar {
        order: -1;
        margin-bottom: 40px;
    }
    
    .recipe-title {
        font-size: 2.2rem;
    }

    .recipe-hero-img {
        max-height: 400px;
    }
}

/* Animaciones de Revelado al Scroll */
[class*="reveal-"] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-down {
    transform: translateY(-40px);
}

.reveal-left {
    transform: translateX(40px);
}

.reveal-right {
    transform: translateX(-40px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal-visible {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* Delays para efectos en cascada */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }