/* =========================================
RESET
========================================= */

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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#fafafa;
    color:#222;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================================
HEADER
========================================= */

.header{
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(8px);
    border-bottom:1px solid rgba(0,0,0,.06);
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 12px rgba(0,0,0,.04);
}

.header::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:#6B8E23;
}

.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:105px;
}

.logo img{
    height:85px;
    width:auto;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:32px;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.7px;
    position:relative;
    transition:.3s;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-7px;
    width:0;
    height:2px;
    background:#6B8E23;
    transition:.3s;
}

.nav-links a:hover{
    color:#6B8E23;
}

.nav-links a:hover::after{
    width:100%;
}

.btn-contacto{
    background:#6B8E23;
    color:#fff !important;
    padding:11px 18px;
    border-radius:10px;
}

.btn-contacto::after{
    display:none;
}

.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:#222;
    margin-bottom:5px;
    border-radius:5px;
}

/* =========================================
HERO
========================================= */

.hero{
    background:url('/assets/img/IMG_fondo1.jpg') center/cover no-repeat;
    position:relative;
    padding:80px 0 60px;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.90);
}

.hero-inner{
    position:relative;
    z-index:2;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:60px;
    align-items:center;
}

.hero-img img{
    border-radius:22px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.hero-text h1{
    font-size:52px;
    line-height:1.1;
    margin-bottom:20px;
}

.linea{
    width:80px;
    height:4px;
    background:#6B8E23;
    margin-bottom:25px;
}

.hero-text p{
    margin-bottom:18px;
    color:#444;
    font-size:17px;
}

/* =========================================
BUSCADOR
========================================= */

.buscador{
    margin-top:50px;
    display:flex;
    justify-content:center;
}

.buscador form{
    width:100%;
    max-width:700px;
    display:flex;
    background:#fff;
    border-radius:60px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.buscador input{
    flex:1;
    border:none;
    padding:18px 24px;
    outline:none;
    font-size:16px;
}

.buscador button{
    background:#6B8E23;
    color:#fff;
    border:none;
    padding:0 35px;
    cursor:pointer;
    font-weight:bold;
}

/* =========================================
ICONOS
========================================= */

.iconos{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    padding:70px 0;
}

.iconos a{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    text-decoration:none;
    color:#222;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.iconos a:hover{
    transform:translateY(-5px);
}

.iconos img{
    width:60px;
    margin:auto auto 18px;
}

.iconos div{
    font-weight:700;
}

/* =========================================
RECETAS HOME
========================================= */

.recetas{
    padding:70px 0;
}

.recetas h2{
    font-size:38px;
    margin-bottom:35px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
}

.card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.card h4{
    padding:22px 22px 10px;
    font-size:22px;
}

.card a{
    display:inline-block;
    margin:0 22px 22px;
    background:#6B8E23;
    color:#fff;
    padding:10px 18px;
    border-radius:10px;
    text-decoration:none;
}

/* =========================================
RECETAS PAGE
========================================= */

.container-recetas{
    max-width:1400px;
    margin:auto;
    padding:50px 20px;
    display:grid;
    grid-template-columns:280px 1fr;
    gap:40px;
}

.sidebar-recetas{
    background:#fff;
    padding:25px;
    border-radius:18px;
    height:fit-content;
    box-shadow:0 5px 18px rgba(0,0,0,.05);
}

.sidebar-recetas h3{
    margin-bottom:10px;
}

.sidebar-recetas input,
.sidebar-recetas select{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:15px;
}

.btn-filtrar{
    width:100%;
    padding:13px;
    background:#222;
    color:#fff;
    border:none;
    border-radius:10px;
    cursor:pointer;
}

.grid-recetas{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:28px;
}

.card-receta{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,.05);
}

.card-receta img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.card-body{
    padding:20px;
}

.card-body h2{
    font-size:24px;
    margin-bottom:12px;
}

.card-body p{
    color:#666;
    margin-bottom:18px;
}

.btn-receta{
    display:inline-block;
    background:#222;
    color:#fff;
    padding:10px 16px;
    border-radius:10px;
    text-decoration:none;
}

/* =========================================
DETALLE RECETA
========================================= */

.detalle-receta{
    padding:50px 0;
}

.hero-receta{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
    margin-bottom:60px;
}

.hero-img img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:24px;
}

.hero-info h1{
    font-size:46px;
    margin-bottom:20px;
}

.descripcion{
    font-size:18px;
    color:#444;
    margin-bottom:25px;
}

.meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:25px;
}

.meta span{
    background:#f2f2f2;
    padding:10px 14px;
    border-radius:10px;
}

.likes-box{
    margin-top:25px;
}

.btn-like{
    display:inline-block;
    background:#e74c3c;
    color:#fff;
    padding:12px 18px;
    border-radius:10px;
    text-decoration:none;
}

/* =========================================
FOOTER
========================================= */

.footer{
    background:#111;
    color:#fff;
    margin-top:80px;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:35px 0;
}

.social{
    display:flex;
    gap:16px;
}

.social a{
    width:42px;
    height:42px;
    background:#222;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.social a:hover{
    background:#6B8E23;
    transform:translateY(-3px);
}

.social img{
    width:20px;
    height:20px;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:900px){

    .menu-toggle{
        display:flex;
    }

    .nav{
        min-height:90px;
    }

    .logo img{
        height:70px;
    }

    .nav-links{
        position:absolute;
        top:90px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        padding:30px 0;
        gap:24px;
        border-top:1px solid #eee;
        display:none;
    }

    .nav-links.active{
        display:flex;
    }

    .hero-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .linea{
        margin:0 auto 25px;
    }

    .hero-text h1{
        font-size:38px;
    }

    .iconos{
        grid-template-columns:1fr;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .container-recetas{
        grid-template-columns:1fr;
    }

    .hero-receta{
        grid-template-columns:1fr;
    }

    .hero-img img{
        height:350px;
    }

    .footer-content{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }
}
/* =========================================
HOME NUEVO
========================================= */

.hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-text{
    max-width:620px;
}

.hero-tag{
    display:inline-block;
    background:#e8f1dc;
    color:#56751d;
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-text h1{
    font-size:58px;
    line-height:1.05;
    margin-bottom:18px;
}

.hero-line{
    width:80px;
    height:4px;
    background:#6B8E23;
    border-radius:10px;
    margin-bottom:25px;
}

.hero-lead{
    font-size:20px;
    color:#333;
    margin-bottom:20px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    margin-top:35px;
    margin-bottom:35px;
}

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:#6B8E23;
    color:#fff;
}

.btn-primary:hover{
    background:#58751d;
}

.btn-secondary{
    border:1px solid #ccc;
    color:#222;
    background:#fff;
}

.btn-secondary:hover{
    background:#f3f3f3;
}

.hero-search form{
    display:flex;
    background:#fff;
    border-radius:60px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    max-width:580px;
}

.hero-search input{
    flex:1;
    border:none;
    padding:18px 22px;
    outline:none;
    font-size:15px;
}

.hero-search button{
    border:none;
    background:#6B8E23;
    color:#fff;
    padding:0 30px;
    cursor:pointer;
    font-weight:bold;
}

.hero-image{
    position:relative;
}

.hero-image-bg{
    position:absolute;
    width:100%;
    height:100%;
    background:#dfe8d2;
    border-radius:30px;
    top:25px;
    left:25px;
}

.hero-image img{
    position:relative;
    z-index:2;
    width:100%;
    max-width:520px;
    margin:auto;
    border-radius:30px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* =========================================
QUICK LINKS
========================================= */

.quick-links{
    padding:80px 0;
}

.quick-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.quick-card{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    text-decoration:none;
    color:#222;
    box-shadow:0 8px 24px rgba(0,0,0,.05);
    transition:.3s;
}

.quick-card:hover{
    transform:translateY(-6px);
}

.quick-card img{
    width:70px;
    margin:auto auto 20px;
}

.quick-card h3{
    margin-bottom:14px;
    font-size:24px;
}

.quick-card p{
    color:#666;
}

/* =========================================
RECETAS HOME NUEVAS
========================================= */

.home-recipes{
    padding:80px 0;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:40px;
}

.section-mini{
    display:block;
    color:#6B8E23;
    font-weight:700;
    margin-bottom:8px;
}

.section-head h2{
    font-size:42px;
}

.section-link{
    color:#222;
    text-decoration:none;
    font-weight:700;
}

.recipes-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.recipe-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    transition:.3s;
}

.recipe-card:hover{
    transform:translateY(-5px);
}

.recipe-image img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.recipe-content{
    padding:24px;
}

.recipe-meta{
    display:flex;
    justify-content:space-between;
    margin-bottom:14px;
    color:#666;
    font-size:14px;
}

.recipe-content h3{
    font-size:24px;
    margin-bottom:20px;
}

.recipe-btn{
    display:inline-block;
    background:#6B8E23;
    color:#fff;
    text-decoration:none;
    padding:11px 18px;
    border-radius:10px;
    font-weight:700;
}

/* =========================================
FOOTER FIX
========================================= */

.footer-brand img{
    width:160px;
    height:auto;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-links a{
    color:#ddd;
    text-decoration:none;
}

.footer-copy{
    border-top:1px solid #222;
    padding:20px;
    text-align:center;
    color:#888;
    font-size:14px;
}

/* =========================================
RESPONSIVE HOME
========================================= */

@media(max-width:900px){

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-text{
        max-width:100%;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-search form{
        margin:auto;
    }

    .hero-text h1{
        font-size:42px;
    }

    .quick-grid{
        grid-template-columns:1fr;
    }

    .recipes-grid{
        grid-template-columns:1fr;
    }

    .section-head{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .footer-content{
        flex-direction:column;
        text-align:center;
        gap:25px;
    }
}
/* =========================================
SOBRE MI
========================================= */

.about-hero{
    padding:90px 0 70px;
    background:#f8f8f5;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-bg{
    position:absolute;
    width:100%;
    height:100%;
    background:#dfe8d2;
    border-radius:30px;
    top:25px;
    left:25px;
}

.about-image img{
    position:relative;
    z-index:2;
    width:100%;
    max-width:520px;
    border-radius:30px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.about-tag{
    display:inline-block;
    background:#e8f1dc;
    color:#5d7b20;
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.about-text h1{
    font-size:54px;
    line-height:1.08;
    margin-bottom:20px;
}

.about-line{
    width:80px;
    height:4px;
    background:#6B8E23;
    border-radius:10px;
    margin-bottom:25px;
}

.about-lead{
    font-size:20px;
    color:#333;
    margin-bottom:22px;
}

.about-text p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:18px;
    color:#444;
}

/* =========================================
CARDS
========================================= */

.about-blocks{
    padding:80px 0;
}

.blocks-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.about-card{
    background:#fff;
    padding:40px 30px;
    border-radius:24px;
    box-shadow:0 8px 24px rgba(0,0,0,.05);
    transition:.3s;
}

.about-card:hover{
    transform:translateY(-6px);
}

.about-card h3{
    font-size:26px;
    margin-bottom:18px;
}

.about-card p{
    color:#555;
    line-height:1.8;
}

/* =========================================
FILOSOFIA
========================================= */

.about-philosophy{
    padding:90px 0;
    background:#f5f7f1;
}

.philosophy-box{
    max-width:850px;
    text-align:center;
}

.philosophy-box h2{
    font-size:48px;
    margin-bottom:30px;
}

.philosophy-box p{
    font-size:19px;
    line-height:1.9;
    margin-bottom:20px;
    color:#444;
}

/* =========================================
FINAL
========================================= */

.about-final{
    padding:100px 0;
}

.about-final blockquote{
    max-width:900px;
    margin:auto;
    text-align:center;
    font-size:38px;
    line-height:1.5;
    font-weight:700;
    color:#222;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:900px){

    .about-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .about-text h1{
        font-size:40px;
    }

    .about-line{
        margin:0 auto 25px;
    }

    .blocks-grid{
        grid-template-columns:1fr;
    }

    .philosophy-box h2{
        font-size:36px;
    }

    .about-final blockquote{
        font-size:28px;
    }

}
/* =====================================================
DETALLE RECETA PREMIUM
===================================================== */

.detalle-receta{
    padding:60px 0 80px;
}

/* HERO */

.hero-receta{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:60px;
    align-items:start;
    margin-bottom:70px;
}

.hero-img{
    position:relative;
}

.hero-img img{
    width:100%;
    height:620px;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

/* INFO */

.hero-info{
    padding-top:10px;
}

.hero-info h1{
    font-size:54px;
    line-height:1.05;
    margin-bottom:24px;
    color:#111;
}

.descripcion{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:35px;
}

/* META */

.meta{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:30px;
}

.meta span{
    background:#fff;
    border:1px solid #ececec;
    padding:12px 16px;
    border-radius:14px;
    font-size:14px;
    font-weight:600;
    color:#333;
    box-shadow:0 4px 12px rgba(0,0,0,.04);
}

/* TAGS */

.tags,
.momentos{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:22px;
}

.tag,
.momento{
    background:#edf6e4;
    color:#48681a;
    padding:10px 16px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
}

/* LIKES */

.likes-box{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:35px;
}

.btn-like{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#e74c3c;
    color:#fff;
    text-decoration:none;
    padding:14px 22px;
    border-radius:14px;
    font-weight:700;
    transition:.25s;
    box-shadow:0 10px 25px rgba(231,76,60,.22);
}

.btn-like:hover{
    transform:translateY(-2px);
    opacity:.95;
}

/* TITULOS */

.video-section h2,
.ingredientes-section h2,
.pasos-section h2,
.relacionadas h2{
    font-size:34px;
    margin-bottom:28px;
    color:#111;
}

/* VIDEO */

.video-section{
    margin-bottom:70px;
}

.video-box{
    background:#fff;
    padding:18px;
    border-radius:28px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.video-box iframe{
    width:100%;
    border:none;
    border-radius:18px;
}

/* INGREDIENTES */

.ingredientes-section{
    margin-bottom:75px;
}

.ingredientes-list{
    list-style:none;
    background:#fff;
    border-radius:28px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.ingredientes-list li{
    padding:18px 0;
    border-bottom:1px solid #eee;
    font-size:17px;
    color:#444;
}

.ingredientes-list li:last-child{
    border-bottom:none;
}

.ingredientes-list strong{
    color:#111;
    margin-right:8px;
}

/* PASOS */

.pasos-section{
    margin-bottom:80px;
}

.pasos-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

.paso-card{
    background:#fff;
    border-radius:26px;
    padding:32px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.25s;
}

.paso-card:hover{
    transform:translateY(-4px);
}

.numero{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#6B8E23;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:22px;
}

.paso-card p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}

/* RELACIONADAS */

.relacionadas{
    margin-top:20px;
}

.grid-recetas{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.card-receta{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.25s;
}

.card-receta:hover{
    transform:translateY(-5px);
}

.card-receta img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.card-receta h3{
    font-size:24px;
    padding:22px 22px 12px;
    color:#111;
}

.card-receta a{
    display:inline-block;
    margin:0 22px 24px;
    background:#6B8E23;
    color:#fff;
    text-decoration:none;
    padding:12px 18px;
    border-radius:12px;
    font-weight:700;
    transition:.25s;
}

.card-receta a:hover{
    opacity:.92;
}

/* RESPONSIVE */

@media(max-width:1000px){

    .hero-receta{
        grid-template-columns:1fr;
    }

    .hero-img img{
        height:450px;
    }

    .hero-info h1{
        font-size:42px;
    }

}

@media(max-width:768px){

    .detalle-receta{
        padding:40px 0 60px;
    }

    .hero-img img{
        height:320px;
        border-radius:20px;
    }

    .hero-info h1{
        font-size:34px;
    }

    .descripcion{
        font-size:16px;
    }

    .video-section h2,
    .ingredientes-section h2,
    .pasos-section h2,
    .relacionadas h2{
        font-size:28px;
    }

    .ingredientes-list{
        padding:22px;
    }

    .paso-card{
        padding:26px;
    }

}

/* =====================================================
RECETAS PAGE PREMIUM
===================================================== */

.page-hero-recetas{
    background:
    linear-gradient(rgba(255,255,255,.90), rgba(255,255,255,.92)),
    url('/assets/img/IMG_fondo1.jpg') center/cover;
    padding:70px 0;
    margin-bottom:40px;
}

.page-hero-recetas span{
    display:inline-block;
    color:#6B8E23;
    font-weight:700;
    margin-bottom:16px;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:13px;
}

.page-hero-recetas h1{
    font-size:34px;
    line-height:1.15;
    max-width:720px;
    margin:14px 0 12px;
}

.page-hero-recetas p{
    font-size:18px;
    color:#555;
    line-height:1.7;
    max-width:620px;
}

/* LAYOUT */

.container-recetas{
    max-width:1400px;
    margin:auto;
    padding:0 20px 70px;
    display:grid;
    grid-template-columns:300px 1fr;
    gap:40px;
}

/* SIDEBAR */

.sidebar-recetas{
    background:#fff;
    border-radius:28px;
    padding:30px;
    height:fit-content;
    position:sticky;
    top:130px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.sidebar-recetas h3{
    font-size:15px;
    margin-bottom:10px;
    color:#111;
}

.sidebar-recetas input,
.sidebar-recetas select{
    width:100%;
    padding:14px 16px;
    border:1px solid #e5e5e5;
    border-radius:14px;
    margin-bottom:22px;
    background:#fafafa;
    font-size:15px;
}

.sidebar-recetas input:focus,
.sidebar-recetas select:focus{
    outline:none;
    border-color:#6B8E23;
    background:#fff;
}

.btn-filtrar{
    width:100%;
    border:none;
    background:#6B8E23;
    color:#fff;
    padding:15px;
    border-radius:14px;
    cursor:pointer;
    font-weight:700;
    font-size:15px;
    transition:.25s;
}

.btn-filtrar:hover{
    transform:translateY(-2px);
}

/* TITULOS */

.contenido-recetas h1{
    font-size:48px;
    margin-bottom:10px;
    color:#111;
}

.results-count{
    color:#666;
    margin-bottom:35px;
}

/* GRID */

.grid-recetas{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:32px;
}

/* CARD */

.card-receta{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.card-receta:hover{
    transform:translateY(-6px);
}

.card-receta img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.card-body{
    padding:24px;
}

.tipo-receta{
    display:inline-block;
    background:#edf6e4;
    color:#48681a;
    padding:8px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    margin-bottom:18px;
}

.card-body h2{
    font-size:28px;
    line-height:1.2;
    margin-bottom:14px;
    color:#111;
}

.card-body p{
    color:#666;
    line-height:1.7;
    margin-bottom:24px;
}

.meta-receta{
    display:flex;
    justify-content:space-between;
    margin-bottom:24px;
    color:#666;
    font-size:14px;
}

.btn-receta{
    display:inline-block;
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:13px 18px;
    border-radius:14px;
    font-weight:700;
    transition:.25s;
}

.btn-receta:hover{
    background:#6B8E23;
}

/* EMPTY */

.empty-results{
    background:#fff;
    padding:60px;
    border-radius:28px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.empty-results h3{
    font-size:30px;
    margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:1000px){

    .container-recetas{
        grid-template-columns:1fr;
    }

    .sidebar-recetas{
        position:relative;
        top:0;
    }

}

@media(max-width:768px){

    .page-hero-recetas{
        padding:50px 0;
    }

    .page-hero-recetas h1{
        font-size:38px;
    }

    .contenido-recetas h1{
        font-size:38px;
    }

}
/* =========================================
BLOG HERO
========================================= */

.blog-hero{
    padding:90px 0 70px;
    background:#f5f7f2;
}

.blog-mini{
    color:#6B8E23;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:13px;
}

.blog-hero h1{
    font-size:52px;
    line-height:1.1;
    max-width:850px;
    margin:18px 0;
}

.blog-hero p{
    max-width:720px;
    font-size:19px;
    color:#555;
}

.blog-search{
    margin-top:35px;
    display:flex;
    max-width:700px;
    background:#fff;
    border-radius:60px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.blog-search input{
    flex:1;
    border:none;
    padding:18px 24px;
    outline:none;
}

.blog-search button{
    border:none;
    background:#6B8E23;
    color:#fff;
    padding:0 30px;
    font-weight:bold;
    cursor:pointer;
}

/* =========================================
DESTACADO
========================================= */

.blog-featured{
    padding:70px 0;
}

.featured-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:50px;
    align-items:center;
}

.featured-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:24px;
}

.featured-tag{
    color:#6B8E23;
    font-weight:700;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:1px;
}

.featured-content h2{
    font-size:44px;
    margin:18px 0;
}

.featured-content p{
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
}

.btn-blog{
    display:inline-block;
    background:#6B8E23;
    color:#fff;
    text-decoration:none;
    padding:14px 22px;
    border-radius:12px;
}

/* =========================================
SECCIONES
========================================= */

.blog-section{
    padding:20px 0 70px;
}

.section-head-blog{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:35px;
    gap:20px;
}

.section-head-blog h2{
    font-size:38px;
    margin-bottom:8px;
}

.section-head-blog p{
    color:#666;
}

.ver-mas{
    text-decoration:none;
    color:#6B8E23;
    font-weight:bold;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-5px);
}

.blog-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-card-content{
    padding:24px;
}

.blog-category{
    color:#6B8E23;
    font-size:13px;
    font-weight:bold;
    text-transform:uppercase;
}

.blog-card h3{
    font-size:26px;
    margin:14px 0;
}

.blog-card p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

.leer-mas{
    text-decoration:none;
    color:#222;
    font-weight:bold;
}

/* =========================================
NEWSLETTER
========================================= */

.newsletter{
    margin:90px 0;
}

.newsletter-box{
    background:#f5f3ee;
    border-radius:28px;
    padding:70px 50px;
    text-align:center;
    max-width:1100px;
    margin:auto;
    border:1px solid #e7e1d7;
}

.newsletter-box h2{
    font-size:38px;
    line-height:1.2;
    margin-bottom:18px;
    color:#1f1f1f;
    max-width:760px;
    margin-left:auto;
    margin-right:auto;
}

.newsletter-box p{
    font-size:18px;
    color:#555;
    max-width:760px;
    margin:0 auto 40px;
    line-height:1.7;
}

.newsletter-form{
    display:flex;
    gap:18px;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.newsletter-form input{
    width:280px;
    height:58px;
    border-radius:14px;
    border:1px solid #d8d2c8;
    background:#fff;
    padding:0 18px;
    font-size:16px;
    color:#222;
    outline:none;
    transition:0.3s;
}

.newsletter-form input:focus{
    border-color:#7a9b2e;
    box-shadow:0 0 0 4px rgba(122,155,46,0.10);
}

.newsletter-form input::placeholder{
    color:#888;
}

.newsletter-form button{
    height:58px;
    padding:0 34px;
    border:none;
    border-radius:14px;
    background:#7a9b2e;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

.newsletter-form button:hover{
    background:#648220;
    transform:translateY(-2px);
}

.newsletter-box small{
    display:block;
    margin-top:10px;
    color:#777;
    font-size:14px;
}

.newsletter-msg{
    max-width:700px;
    margin:0 auto 25px;
    text-align:center;
}

.msg-ok{
    background:#e6f4d7;
    color:#4f6f16;
    padding:16px 20px;
    border-radius:14px;
    font-weight:600;
}

.msg-error{
    background:#ffe1e1;
    color:#a53b3b;
    padding:16px 20px;
    border-radius:14px;
    font-weight:600;
}


.newsletter-msg{
    margin-top:18px;
}

.msg-ok{
    background:#e8f7df;
    color:#467128;
    padding:14px 18px;
    border-radius:12px;
    font-weight:600;
}

.msg-error{
    background:#fde8e8;
    color:#a12626;
    padding:14px 18px;
    border-radius:12px;
    font-weight:600;
}
/* =========================================
RESPONSIVE
========================================= */

@media(max-width:768px){

    .newsletter-box{
        padding:45px 25px;
    }

    .newsletter-box h2{
        font-size:30px;
    }

    .newsletter-box p{
        font-size:16px;
    }

    .newsletter-form{
        flex-direction:column;
    }

    .newsletter-form input,
    .newsletter-form button{
        width:100%;
    }

}

/* =========================================
BLOG
========================================= */

.blog-page{
    padding:60px 0 80px;
}

/* ===== SECCIONES ===== */

.blog-secciones{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    margin-bottom:55px;
}

.seccion-card{
    background:#fff;
    padding:28px 24px;
    border-radius:20px;
    box-shadow:0 5px 18px rgba(0,0,0,.05);
    border-top:4px solid #6B8E23;
}

.seccion-card h2{
    font-size:24px;
    margin-bottom:12px;
}

.seccion-card p{
    color:#555;
    font-size:15px;
    line-height:1.7;
}

/* ===== GRID BLOG ===== */

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* ===== CARD ===== */

.blog-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 6px 22px rgba(0,0,0,.06);
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-6px);
}

.blog-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-card-body{
    padding:24px;
}

.blog-categoria{
    display:inline-block;
    background:#eef4e3;
    color:#6B8E23;
    padding:7px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    margin-bottom:16px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.blog-card h2{
    font-size:26px;
    line-height:1.3;
    margin-bottom:14px;
}

.blog-card p{
    color:#555;
    line-height:1.7;
    margin-bottom:22px;
}

/* ===== NEWSLETTER ===== */

.newsletter{
    margin-top:80px;
}

.newsletter-box{
    background:#fff;
    border-radius:28px;
    padding:50px;
    text-align:center;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.newsletter-box h2{
    font-size:38px;
    margin-bottom:18px;
}

.newsletter-box p{
    max-width:760px;
    margin:0 auto 30px;
    color:#555;
    line-height:1.8;
}

.newsletter-form{
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
    margin-bottom:18px;
}

.newsletter-form input{
    width:280px;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:14px;
    font-size:15px;
}

.newsletter-form button{
    background:#6B8E23;
    color:#fff;
    border:none;
    padding:16px 28px;
    border-radius:14px;
    cursor:pointer;
    font-weight:700;
    transition:.3s;
}

.newsletter-form button:hover{
    opacity:.9;
}

.newsletter small{
    color:#777;
}

/* ===== RESPONSIVE ===== */

@media(max-width:1100px){

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .blog-secciones{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .blog-grid{
        grid-template-columns:1fr;
    }

    .blog-secciones{
        grid-template-columns:1fr;
    }

    .newsletter-box{
        padding:35px 24px;
    }

    .newsletter-box h2{
        font-size:30px;
    }

    .newsletter-form input{
        width:100%;
    }

    .newsletter-form button{
        width:100%;
    }

}
/* =========================================
BLOG DETALLE
========================================= */

.blog-detalle{
    padding:60px 0 90px;
}

.blog-hero{
    margin-bottom:50px;
}

.blog-hero-img{
    width:100%;
    height:520px;
    border-radius:28px;
    overflow:hidden;
    margin-bottom:35px;
    box-shadow:0 12px 35px rgba(0,0,0,.10);
}

.blog-hero-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.blog-header{
    max-width:900px;
}

.blog-categoria{
    display:inline-block;
    background:#eef4df;
    color:#6B8E23;
    padding:10px 18px;
    border-radius:40px;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.8px;
    margin-bottom:22px;
}

.blog-header h1{
    font-size:54px;
    line-height:1.1;
    margin-bottom:22px;
    color:#111;
}

.blog-resumen{
    font-size:22px;
    line-height:1.7;
    color:#555;
    margin-bottom:25px;
}

.blog-fecha{
    color:#888;
    font-size:15px;
}

.blog-contenido{
    max-width:850px;
    margin:0 auto;
}

.blog-contenido p{
    font-size:21px;
    line-height:2;
    color:#333;
    margin-bottom:34px;
}

.blog-contenido h2,
.blog-contenido h3{
    margin:50px 0 20px;
    font-size:34px;
    color:#111;
}

.blog-relacionadas{
    margin-top:90px;
}

.blog-relacionadas h2{
    font-size:38px;
    margin-bottom:35px;
}

.newsletter-blog{
    margin-top:100px;
    background:#f4f7ef;
    border-radius:30px;
    padding:60px;
    text-align:center;
}

.newsletter-blog h2{
    font-size:40px;
    margin-bottom:18px;
}

.newsletter-blog p{
    max-width:760px;
    margin:0 auto 35px;
    color:#555;
    font-size:18px;
    line-height:1.8;
}

.newsletter-form{
    max-width:650px;
    margin:auto;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    justify-content:center;
}

.newsletter-form input{
    flex:1;
    min-width:240px;
    padding:18px;
    border:none;
    border-radius:14px;
    font-size:16px;
}

.newsletter-form button{
    background:#6B8E23;
    color:#fff;
    border:none;
    padding:18px 34px;
    border-radius:14px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.newsletter-form button:hover{
    transform:translateY(-2px);
}

.newsletter-small{
    margin-top:18px;
    color:#777;
    font-size:14px;
}

/* =========================================
RESPONSIVE BLOG DETALLE
========================================= */

@media(max-width:900px){

    .blog-hero-img{
        height:320px;
    }

    .blog-header h1{
        font-size:38px;
    }

    .blog-resumen{
        font-size:18px;
    }

    .blog-contenido p{
        font-size:18px;
        line-height:1.9;
    }

    .newsletter-blog{
        padding:35px 25px;
    }

    .newsletter-blog h2{
        font-size:30px;
    }

}
/* =========================================
BLOG DETALLE FIX
========================================= */

.blog-hero{
    padding:50px 0 30px;
}

.blog-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.blog-hero-img{
    width:100%;
    height:480px;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.blog-hero-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.blog-hero-text h1{
    font-size:52px;
    line-height:1.1;
    margin:20px 0;
}

.blog-resumen{
    font-size:21px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.blog-meta{
    color:#777;
    font-size:15px;
}

.blog-contenido{
    padding:40px 0 20px;
}

.blog-contenido-inner{
    max-width:850px;
    margin:auto;
}

.blog-contenido-inner p{
    font-size:21px;
    line-height:2;
    color:#333;
    margin-bottom:34px;
}

.blog-recetas,
.blog-relacionados{
    padding:70px 0;
}

.newsletter-box{
    padding:40px 0 80px;
}

.newsletter-content{
    background:#f4f7ef;
    border-radius:30px;
    padding:60px;
    text-align:center;
}

.newsletter-content h2{
    font-size:40px;
    margin:18px 0;
}

.newsletter-content p{
    max-width:700px;
    margin:0 auto 30px;
    color:#555;
    line-height:1.8;
}

.newsletter-form{
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.newsletter-form input{
    padding:16px;
    border:none;
    border-radius:12px;
    min-width:240px;
}

.newsletter-form button{
    background:#6B8E23;
    color:#fff;
    border:none;
    padding:16px 28px;
    border-radius:12px;
    cursor:pointer;
    font-weight:700;
}

@media(max-width:900px){

    .blog-hero-grid{
        grid-template-columns:1fr;
    }

    .blog-hero-img{
        height:320px;
    }

    .blog-hero-text h1{
        font-size:38px;
    }

    .blog-contenido-inner p{
        font-size:18px;
        line-height:1.9;
    }

    .newsletter-content{
        padding:35px 25px;
    }

}
/* =========================================
BLOG RECETAS RELACIONADAS
========================================= */

.blog-recetas-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(320px, 420px));
    gap:28px;
}

.blog-receta-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    transition:.3s;
}

.blog-receta-card:hover{
    transform:translateY(-5px);
}

.blog-receta-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
}

.blog-receta-body{
    padding:24px;
}

.blog-receta-body h3{
    font-size:26px;
    line-height:1.3;
    margin-bottom:18px;
    color:#111;
}

.blog-btn-receta{
    display:inline-block;
    background:#6B8E23;
    color:#fff;
    text-decoration:none;
    padding:12px 20px;
    border-radius:12px;
    font-weight:700;
}

/* =========================================
BLOG TOPBAR
========================================= */

.blog-topbar{
    padding:70px 20px 40px;
    background:#f7f6f2;
}

.blog-topbar-content{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:30px;
    flex-wrap:wrap;
}

.blog-mini{
    display:inline-block;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#6B8E23;
    font-weight:700;
    margin-bottom:12px;
}

.blog-topbar h1{
    font-size:52px;
    line-height:1.1;
    color:#111;
}

.blog-filtros{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.blog-filtros input,
.blog-filtros select{
    height:52px;
    border:none;
    border-radius:14px;
    padding:0 18px;
    font-size:15px;
    background:#fff;
    min-width:240px;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.blog-filtros button{
    height:52px;
    border:none;
    background:#6B8E23;
    color:#fff;
    padding:0 26px;
    border-radius:14px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.blog-filtros button:hover{
    background:#5d7d1f;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:768px){

    .blog-topbar{
        padding:50px 20px 30px;
    }

    .blog-topbar h1{
        font-size:38px;
    }

    .blog-filtros{
        width:100%;
        flex-direction:column;
    }

    .blog-filtros input,
    .blog-filtros select,
    .blog-filtros button{
        width:100%;
        min-width:100%;
    }

}

/* =========================================
CONTACTO
========================================= */

.contact-section{
    padding:80px 0;
    background:#f5f3ee;
}

.contact-grid{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:60px;
    align-items:start;
}

/* =========================================
INFO
========================================= */

.contact-info{
    padding-top:10px;
}

.contact-tag{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 14px;
    border-radius:999px;
    background:#e7ecd9;
    color:#6f8d2c;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

.contact-info h1{
    font-size:54px;
    line-height:1;
    margin-bottom:24px;
    color:#1d1d1d;
}

.contact-text{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:40px;
    max-width:520px;
}

/* =========================================
HIGHLIGHT CARD
========================================= */

.contact-highlight{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    padding:26px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    border:1px solid rgba(0,0,0,0.04);
    max-width:420px;
}

.contact-highlight-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background:#eef3e3;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.contact-highlight strong{
    display:block;
    margin-bottom:6px;
    font-size:16px;
    color:#1d1d1d;
}

.contact-highlight p{
    margin:0;
    color:#666;
    line-height:1.7;
    font-size:15px;
}

/* =========================================
FORM BOX
========================================= */

.contact-form-box{
    background:#fff;
    padding:48px;
    border-radius:32px;
    box-shadow:0 18px 45px rgba(0,0,0,0.08);
    border:1px solid rgba(0,0,0,0.03);
}

.contact-form-top span{
    display:inline-block;
    margin-bottom:12px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    color:#6f8d2c;
}

.contact-form-top h2{
    font-size:34px;
    margin-bottom:14px;
    color:#1d1d1d;
}

.contact-form-top p{
    color:#666;
    line-height:1.8;
    margin-bottom:34px;
}

/* =========================================
FORM
========================================= */

.contact-form{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.contact-field{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.contact-field label{
    font-size:14px;
    font-weight:600;
    color:#444;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    box-sizing:border-box;
    padding:18px 20px;
    border:1px solid #ddd;
    border-radius:16px;
    font-size:16px;
    font-family:inherit;
    background:#fafafa;
    transition:0.3s;
}

.contact-form textarea{
    min-height:180px;
    resize:vertical;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#6f8d2c;
    background:#fff;
    box-shadow:0 0 0 4px rgba(111,141,44,0.10);
}

.contact-form button{
    border:none;
    background:#6f8d2c;
    color:#fff;
    padding:18px;
    border-radius:16px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#5d7824;
    transform:translateY(-2px);
}

/* =========================================
MENSAJES
========================================= */

.contact-msg{
    margin-bottom:25px;
}

.contact-msg p{
    padding:16px 20px;
    border-radius:14px;
    font-weight:600;
    text-align:center;
    line-height:1.6;
    font-size:15px;
}

.msg-ok{
    background:#e8f7e8;
    color:#2f6e2f;
}

.msg-error{
    background:#fdeaea;
    color:#a33;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:992px){

    .contact-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

}

@media(max-width:768px){

    .contact-section{
        padding:55px 0;
    }

    .contact-info h1{
        font-size:40px;
    }

    .contact-text{
        font-size:16px;
        line-height:1.8;
    }

    .contact-form-box{
        padding:30px 24px;
        border-radius:24px;
    }

    .contact-form-top h2{
        font-size:28px;
    }

}