/* ============================================================
   EL JACARANDA - Styles
   Huevos de Gallinas Libres de Jaula
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --brown: #63432b;
    --brown-light: #7d5a3f;
    --green-dark: #1d7b34;
    --green-light: #b6d3bb;
    --orange: #e57707;
    --yellow-bg: #fceba6;
    --violet: #7b4fa8;
    --lilac: #bfa2e0;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #faf8f5;
    --cream: #f5f0e8;
    --gray-100: #f7f7f7;
    --gray-200: #e8e8e8;
    --gray-400: #999999;
    --gray-600: #666666;
    --gray-800: #333333;
    --black: #1a1a1a;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--off-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ---------- UTILITIES ---------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 16px;
}

.section-label--light {
    color: var(--lilac);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-title--light {
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn--primary:hover {
    background-color: #cc6906;
    border-color: #cc6906;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 119, 7, 0.35);
}

.btn--outline {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn--outline:hover {
    background-color: var(--white);
    color: var(--brown);
    border-color: var(--white);
}

.btn--full {
    width: 100%;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background-color: var(--yellow-bg);
    transition: var(--transition);
}

.header--scrolled {
    background-color: var(--yellow-bg);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo img {
    height: 65px;
    /* Aumentado de 50px */
    width: auto;
    transition: var(--transition);
}

.header--scrolled .header__logo img {
    height: 52px;
    /* Aumentado de 42px */
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header__link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brown);
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.header__link:hover,
.header__link--active {
    color: var(--orange);
}

.header__link--cta {
    background-color: var(--orange);
    color: var(--white) !important;
    padding: 8px 24px;
}

.header__link--cta:hover {
    background-color: #cc6906;
    color: var(--white) !important;
}

/* Hamburger */
.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.header__toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background-color: var(--brown);
    border-radius: 3px;
    transition: var(--transition);
}

.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================================
   HERO / BANNER
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.06);
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom,
            rgba(26, 26, 26, 0.52) 0%,
            rgba(26, 26, 26, 0.42) 40%,
            rgba(26, 26, 26, 0.68) 100%);
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 780px;
    padding: 0 24px;
}

.hero__tagline {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow-bg);
    margin-bottom: 20px;
    opacity: 0;
    animation: heroFadeUp 0.8s 0.3s forwards;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5.5vw, 58px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    opacity: 0;
    animation: heroFadeUp 0.8s 0.5s forwards;
}

.hero__subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 36px;
    opacity: 0;
    animation: heroFadeUp 0.8s 0.7s forwards;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeUp 0.8s 0.9s forwards;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.hero__scroll span {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.hero__scroll span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.3;
    }
}

/* ============================================================
   ABOUT / NOSOTROS
   ============================================================ */
.about {
    padding: var(--section-padding);
    background-color: var(--off-white);
}

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

.about__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about__image::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--violet);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.about__image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about__content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 16px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about__value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about__value-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green-light);
    border-radius: var(--radius-md);
    color: var(--green-dark);
}

.about__value strong {
    display: block;
    font-size: 15px;
    color: var(--brown);
    margin-bottom: 2px;
}

.about__value span {
    font-size: 14px;
    color: var(--gray-600);
}

/* ============================================================
   COMMITMENT / COMPROMISO
   ============================================================ */
.commitment {
    padding: var(--section-padding);
    background-color: var(--green-light);
    position: relative;
    overflow: hidden;
}

.commitment::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: var(--green-dark);
    opacity: 0.06;
    border-radius: 50%;
}

.commitment__header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.commitment__intro {
    color: var(--gray-600);
    font-size: 17px;
}

.commitment__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.commitment__card {
    background: #2d5a3a;
    /* Verde bosque para resaltar íconos blancos */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    color: var(--white);
}

.commitment__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: #24492f;
}

.commitment__card-icon {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* Asegura que el ícono sea blanco puro */
}

.commitment__card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--yellow-bg);
    /* Título en amarillo suave para jerarquía */
    margin-bottom: 12px;
}

.commitment__card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ============================================================
   PRODUCT / PRODUCTO
   ============================================================ */
.product {
    padding: var(--section-padding);
    background-color: var(--off-white);
}

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

.product__content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 16px;
}

.product__features {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
}

.product__features li svg {
    flex-shrink: 0;
    color: var(--green-dark);
}

.product__images {
    position: relative;
    min-height: 500px;
}

.product__img--main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.product__img--main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.product__img--secondary {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--off-white);
    box-shadow: var(--shadow-lg);
}

.product__img--secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* ============================================================
   SUSTAINABILITY / SUSTENTABILIDAD
   ============================================================ */
.sustainability {
    padding: var(--section-padding);
    background-color: var(--green-light);
    position: relative;
}

.sustainability__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

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

.sustainability__item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.sustainability__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sustainability__number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--green-dark);
    opacity: 0.2;
    margin-bottom: 16px;
    line-height: 1;
}

.sustainability__item h3 {
    font-family: var(--font-heading);
    font-size: 21px;
    color: var(--brown);
    margin-bottom: 12px;
}

.sustainability__item p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================================
   GALLERY / GALERIA
   ============================================================ */
.gallery {
    overflow: hidden;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.gallery__item {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.08);
}

/* ============================================================
   CONTACT / CONTACTO
   ============================================================ */
.contact {
    padding: var(--section-padding);
    background-color: var(--violet);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: var(--lilac);
    opacity: 0.12;
    border-radius: 50%;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 32px;
}

.contact__channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__channel {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    color: var(--brown);
    transition: var(--transition);
}

.contact__channel:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact__channel svg {
    flex-shrink: 0;
    color: var(--violet);
    width: 32px;
    height: 32px;
}

.contact__channel strong {
    display: block;
    font-size: 15px;
    color: var(--brown);
    margin-bottom: 2px;
}

.contact__channel span {
    font-size: 14px;
    color: var(--gray-600);
}

/* Contact Form */
.contact__form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact__form h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--brown);
    margin-bottom: 28px;
}

.contact__field {
    margin-bottom: 20px;
}

.contact__field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.contact__field input,
.contact__field textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-800);
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.contact__field input:focus,
.contact__field textarea:focus {
    border-color: var(--violet);
    background: var(--white);
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
    color: var(--gray-400);
}

.contact__field textarea {
    resize: vertical;
    min-height: 100px;
}

.contact__form .btn {
    margin-top: 8px;
}

.contact__form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 12px;
}

.contact__recaptcha {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.contact__form-status {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    animation: fadeIn 0.3s ease;
}

.contact__form-status--success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.contact__form-status--error {
    background-color: #fce4ec;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon images in commitment and about sections */
.commitment__card-icon img,
.about__value-icon img {
    object-fit: contain;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background-color: var(--yellow-bg);
    padding: 60px 0 0;
    color: var(--brown);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(99, 67, 43, 0.15);
}

.footer__info p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--brown-light);
}

.footer__brand img {
    height: 60px;
    /* Aumentado de 48px */
    width: auto;
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 340px;
    color: var(--brown-light);
}

.footer__location h4,
.footer__social h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--brown);
    margin-bottom: 20px;
}

.footer__location p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--brown-light);
}

.footer__location svg {
    flex-shrink: 0;
    color: var(--orange);
    margin-top: 2px;
}

.footer__social-links {
    display: flex;
    gap: 12px;
}

.footer__social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(99, 67, 43, 0.25);
    border-radius: 50%;
    color: var(--brown);
    transition: var(--transition);
}

.footer__social-links a:hover {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 13px;
    color: var(--brown-light);
}

.footer__designer {
    transition: var(--transition);
    font-weight: 600;
}

.footer__designer:hover {
    color: var(--orange);
}

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.whatsapp.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

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

/* Tablet Landscape */
@media (max-width: 1024px) {
    .commitment__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__grid,
    .product__grid,
    .contact__grid {
        gap: 40px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
    }

    /* Mobile nav */
    .header__toggle {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--yellow-bg);
        padding: 80px 32px 32px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .header__nav.open {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        gap: 0;
    }

    .header__link {
        display: block;
        padding: 14px 16px;
        font-size: 16px;
        color: var(--brown) !important;
        border-radius: var(--radius-sm);
    }

    .header__link:hover {
        background-color: rgba(99, 67, 43, 0.1);
    }

    .header__link--cta {
        margin-top: 12px;
        text-align: center;
    }

    /* Overlay */
    .header__nav::before {
        content: '';
        position: fixed;
        top: 0;
        right: 280px;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        transition: opacity 0.35s ease;
        pointer-events: none;
    }

    .header__nav.open::before {
        opacity: 1;
        pointer-events: all;
    }

    /* Sections */
    .about__grid,
    .product__grid,
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .about__image {
        order: -1;
    }

    .about__image::after {
        display: none;
    }

    .about__image img {
        height: 300px;
    }

    .product__images {
        min-height: auto;
    }

    .product__img--main img {
        height: 350px;
    }

    .product__img--secondary {
        position: relative;
        bottom: auto;
        left: auto;
        width: 60%;
        margin-top: -40px;
        margin-left: auto;
    }

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

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

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero__title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .hero__bg {
        background-image: url('../img/imagen con jacaranda.png') !important;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --section-padding: 56px 0;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 100svh;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 280px;
    }



    .commitment__card {
        padding: 28px 22px;
    }

    .contact__form-wrapper {
        padding: 28px 20px;
    }

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

    .gallery__item {
        aspect-ratio: 1;
    }

    .product__img--secondary {
        width: 50%;
    }

    .whatsapp {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Print styles */
@media print {

    .header,
    .whatsapp,
    .hero__scroll {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
        max-height: none;
        padding: 40px 0;
    }

    .hero__overlay {
        background: none;
    }

    body {
        color: #000;
        background: #fff;
    }
}