/* ===================================================
   FOOD / SUPER ALIMENTO PAGE — css/food.css
   Página: Super Alimento
   =================================================== */

/* ---- Intro: Huevos Omega 3 ---- */
.food-intro {
    padding: 70px 0 35px;
    background-color: var(--bg-white);
}

.food-intro-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 40px;
}

.food-intro-header:last-child {
    margin-bottom: 0;
}

.food-isotipo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.food-intro-header h2 {
    font-size: 45px;
    font-weight: 900;
    font-style: italic;
    color: #000000;
    line-height: 1.1;
}

.food-intro-header h2 span {
    color: var(--primary-green);
}

.food-intro-subtitle {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.food-intro-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.food-intro-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.75;
}

/* ---- Benefit & Sustain Cards (shared) ---- */
.food-cards {
    padding: 35px 0;
    background-color: var(--bg-white);
}

.food-sustain {
    padding: 35px 0;
    background-color: var(--bg-white);
}

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

.food-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background-color: var(--bg-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    display: flex;
}

.food-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Fallback but not needed since height is auto */
    display: block;
}

/* ---- INTA Study Section ---- */
.food-study {
    padding: 35px 0;
    background-color: var(--bg-white);
}

.food-study-grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    align-items: center;
}

.food-study-image {
    width: 500px;
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
    flex-shrink: 0;
}

.food-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.food-study-title {
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.food-study-title span {
    color: var(--primary-green);
}

.food-study-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 16px;
}

/* ---- Omega 3 Info + Infographic ---- */
.food-omega {
    padding: 35px 0;
    background-color: var(--bg-white);
}

.food-omega-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
}

.food-omega-text p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 24px;
}

.food-quote {
    border-left: 4px solid var(--primary-green);
    padding-left: 20px;
    font-size: 15px;
    font-style: italic;
    font-weight: 700;
    color: #333;
    line-height: 1.75;
    margin-top: 8px;
}

.food-omega-infographic {
    width: 480px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.food-omega-infographic img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- Leche de Cabra Section ---- */
.food-milk {
    padding: 35px 0;
    background-color: var(--bg-white);
}

.food-milk-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 60px;
    align-items: center;
}

.food-milk-image {
    width: 480px;
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.food-milk-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.food-milk-title {
    font-size: 36px;
    font-weight: 900;
    font-style: italic;
    color: var(--text-dark);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
}

.food-milk-title span {
    color: var(--primary-green);
}

.food-milk-lead {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

.food-milk-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 14px;
}

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

@media (max-width: 1100px) {
    .food-study-grid {
        grid-template-columns: 400px 1fr;
        gap: 40px;
    }

    .food-study-image {
        width: 400px;
        height: 360px;
    }

    .food-omega-grid {
        grid-template-columns: 1fr 380px;
        gap: 40px;
    }

    .food-omega-infographic {
        width: 380px;
    }

    .food-milk-grid {
        grid-template-columns: 380px 1fr;
        gap: 40px;
    }

    .food-milk-image {
        width: 380px;
        height: 340px;
    }
}

@media (max-width: 900px) {
    .food-intro-text {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .food-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .food-card {
        min-height: auto;
    }

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

    .food-study-image {
        width: 100%;
        height: 300px;
    }

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

    .food-omega-infographic {
        width: 100%;
    }

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

    .food-milk-image {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {


    .food-intro-header h2 {
        font-size: 32px;
    }

    .food-intro-subtitle {
        font-size: 16px;
    }

    .food-study-title {
        font-size: 24px;
    }

    .food-milk-title {
        font-size: 26px;
    }

}

@media (max-width: 480px) {
    .food-intro-header h2 {
        font-size: 32px;
    }

    .food-study-title {
        font-size: 20px;
    }

    .food-milk-title {
        font-size: 22px;
    }
}