/* ==========================================================================
   Huevo Real de Montaña | Estilos CSS Corporativos — Diseño Moderno 2026
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&family=Playfair+Display:wght@700;900&display=swap');

/* === CSS VARIABLES (BRAND TOKENS) === */
:root {
    /* Brand Colors — Corporativos */
    --clr-green-light:  #83ba26;   /* Verde campo vivo */
    --clr-green-dark:   #337330;   /* Verde montaña profundo */
    --clr-green-mid:    #5a9a28;   /* Intermedio */
    --clr-orange:       #e95c29;   /* Naranja atardecer */
    --clr-orange-deep:  #c94a18;   /* Naranja intenso */
    --clr-yellow-warm:  #f5c842;   /* Yema dorada */

    /* Neutrals */
    --clr-white:        #ffffff;
    --clr-off-white:    #fafdf6;   /* Blanco con toque verde */
    --clr-black:        #131a0e;   /* Negro con tinte selva */
    --clr-gray-dark:    #3d4a35;
    --clr-gray-mid:     #6b7a60;
    --clr-gray-light:   #eef4e6;   /* Sage claro */
    --clr-gray-soft:    #f5f9ef;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body:    'Lato', sans-serif;

    /* Spacing */
    --section-pad: 7rem 0;

    /* Transition & Shadows */
    --transition:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.18s ease;
    --shadow-sm:  0 2px 8px rgba(51, 115, 48, 0.08);
    --shadow-md:  0 8px 24px rgba(51, 115, 48, 0.14);
    --shadow-lg:  0 20px 48px rgba(51, 115, 48, 0.18);
    --shadow-xl:  0 32px 64px rgba(0,0,0,0.20);
    --glow-green: 0 0 24px rgba(131, 186, 38, 0.35);
    --glow-orange:0 0 24px rgba(233, 92, 41, 0.35);

    /* Border radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--clr-gray-dark);
    background-color: var(--clr-off-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-black);
    line-height: 1.15;
    margin-bottom: 0.5em;
}

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

ul { list-style: none; }

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

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

/* ===================================================
   SCROLL ANIMATIONS — Fade-in on scroll
   =================================================== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===================================================
   BUTTONS
   =================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--clr-orange) 0%, var(--clr-orange-deep) 100%);
    color: var(--clr-white);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(233, 92, 41, 0.45);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity 0.25s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 92, 41, 0.55);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--clr-green-light) 0%, var(--clr-green-mid) 100%);
    color: var(--clr-white);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(131, 186, 38, 0.40);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(131, 186, 38, 0.55);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--clr-green-dark);
    padding: 10px 26px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--clr-green-dark);
    transition: var(--transition);
}
.btn-outline:hover {
    background: var(--clr-green-dark);
    color: var(--clr-white);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    color: var(--clr-white);
    border-color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
    background: var(--clr-white);
    color: var(--clr-green-dark);
    border-color: var(--clr-white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-glow {
    box-shadow: 0 0 15px rgba(245, 200, 66, 0.5);
    border-color: var(--clr-yellow-warm) !important;
    color: var(--clr-yellow-warm) !important;
    animation: breathing-glow 2s infinite alternate;
}

.btn-glow:hover {
    background-color: var(--clr-yellow-warm) !important;
    color: var(--clr-black) !important;
}

@keyframes breathing-glow {
    0% { box-shadow: 0 0 8px rgba(245, 200, 66, 0.3); }
    100% { box-shadow: 0 0 22px rgba(245, 200, 66, 0.8); }
}

.main-header.scrolled .btn-outline.btn-glow {
    border-color: var(--clr-orange) !important;
    color: var(--clr-orange) !important;
    animation: breathing-glow-scrolled 2s infinite alternate;
}

.main-header.scrolled .btn-outline.btn-glow:hover {
    background-color: var(--clr-orange) !important;
    color: var(--clr-white) !important;
}

@keyframes breathing-glow-scrolled {
    0% { box-shadow: 0 0 8px rgba(233, 92, 41, 0.3); }
    100% { box-shadow: 0 0 22px rgba(233, 92, 41, 0.7); }
}

/* ===================================================
   SECTION TITLES
   =================================================== */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--clr-green-dark);
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-orange), var(--clr-yellow-warm));
    bottom: -10px;
    left: 0;
    border-radius: 2px;
    transition: width 0.6s ease;
}

.center-text { text-align: center; }

.center-text .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title:hover::after { width: 80px; }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--clr-gray-mid);
    margin-bottom: 3.5rem;
    max-width: 680px;
    line-height: 1.8;
}
.center-text .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ===================================================
   HEADER NAVIGATION
   =================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 1.25rem 0;
}

.main-header.scrolled {
    background: rgba(250, 253, 246, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(51, 115, 48, 0.12);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(131, 186, 38, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    object-fit: contain;
}

.main-header.scrolled .logo img {
    height: 64px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.main-nav ul li a {
    color: var(--clr-white);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    position: relative;
    padding-bottom: 4px;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-yellow-warm);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after { width: 100%; }
.main-nav ul li a:hover { color: var(--clr-yellow-warm); text-shadow: none; }

.main-header.scrolled .main-nav ul li a  {
    color: var(--clr-gray-dark);
    text-shadow: none;
}
.main-header.scrolled .main-nav ul li a:hover { color: var(--clr-green-dark); }
.main-header.scrolled .main-nav ul li a::after { background: var(--clr-green-light); }

.main-header.scrolled .btn-outline {
    color: var(--clr-green-dark);
    border-color: var(--clr-green-dark);
    text-shadow: none;
}
.main-header.scrolled .btn-outline:hover {
    background: var(--clr-green-dark);
    color: var(--clr-white);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}
.main-header.scrolled .hamburger {
    color: var(--clr-green-dark);
    text-shadow: none;
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    background-image: url('Imagenes/montaña 1  (3).jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Dark green overlay for text contrast */
.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(18, 40, 16, 0.80);
    z-index: 1;
}

/* Decorative mesh/texture overlay */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    width: 100%;
}

.hero-content.professional-hero {
    max-width: 780px;
    color: var(--clr-white);
    text-align: left;
    padding: 0 1rem;
}

.top-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(131, 186, 38, 0.2);
    color: var(--clr-yellow-warm);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 200, 66, 0.35);
    animation: fadeSlideDown 0.8s ease both;
}

.top-tag i { color: var(--clr-green-light); }

.hero-content h1 {
    font-family: var(--font-heading);
    color: var(--clr-white);
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.35);
    animation: fadeSlideUp 0.9s 0.15s ease both;
}

.hero-content h1 .highlight {
    display: block;
    background: linear-gradient(90deg, var(--clr-yellow-warm), var(--clr-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    margin-bottom: 2.8rem;
    font-weight: 300;
    opacity: 0.92;
    letter-spacing: 0.2px;
    max-width: 560px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    animation: fadeSlideUp 0.9s 0.3s ease both;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.9s 0.45s ease both;
}

/* Scroll indicator */
.hero::after {
    content: '';
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent);
    border-radius: 2px;
    z-index: 2;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%   { opacity: 0; transform: translateX(-50%) scaleY(0); transform-origin: top; }
    50%  { opacity: 1; }
    100% { opacity: 0; transform: translateX(-50%) scaleY(1) translateY(10px); }
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: none; }
}
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
}

/* Stats bar inside hero */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    animation: fadeSlideUp 0.9s 0.6s ease both;
}
.stat-item {
    text-align: center;
}
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--clr-yellow-warm);
    line-height: 1;
}
.stat-label {
    font-size: 0.82rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ===================================================
   MANIFESTO / ORIGEN SECTION
   =================================================== */
.manifesto {
    padding: var(--section-pad);
    background-color: var(--clr-off-white);
    position: relative;
    overflow: hidden;
}

/* Decorative background shape */
.manifesto::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(131, 186, 38, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.manifesto-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.manifesto-image {
    position: relative;
}

.manifesto-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}
.manifesto-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 32px 80px rgba(0,0,0,0.24);
}

.image-decor {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--clr-green-light);
    border-radius: var(--radius-lg);
    z-index: 1;
    transition: var(--transition);
}
.manifesto-image:hover .image-decor {
    top: -24px;
    left: -24px;
    border-color: var(--clr-orange);
}

/* Badge on image */
.manifesto-image::after {
    content: 'Del gallinero a tu mesa';
    position: absolute;
    bottom: 24px;
    right: -18px;
    background: linear-gradient(135deg, var(--clr-green-dark) 0%, var(--clr-green-mid) 100%);
    color: white;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 20px rgba(51,115,48,0.4);
    z-index: 3;
}

.manifesto-text .section-title { margin-bottom: 2rem; }

.manifesto-text p {
    font-size: 1.1rem;
    margin-bottom: 1.4rem;
    color: var(--clr-gray-dark);
    line-height: 1.8;
}

.manifesto-text p strong { color: var(--clr-orange); }
.manifesto-text p em {
    color: var(--clr-green-dark);
    font-weight: 700;
    font-style: normal;
}

/* Pill tags */
.manifesto-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
}
.manifesto-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--clr-gray-light);
    color: var(--clr-green-dark);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(131,186,38,0.25);
    transition: var(--transition-fast);
}
.manifesto-tags span:hover {
    background: var(--clr-green-dark);
    color: white;
    border-color: var(--clr-green-dark);
}
.manifesto-tags span i { color: var(--clr-green-light); }
.manifesto-tags span:hover i { color: var(--clr-yellow-warm); }

/* ===================================================
   FEATURES SECTIONS (Identidad + Diferenciadores)
   =================================================== */
.features {
    padding: var(--section-pad);
    background-color: var(--clr-white);
    position: relative;
}

.brand-identity {
    background: linear-gradient(160deg, #fdf8ee 0%, #fefae7 50%, #f5f9ef 100%);
    position: relative;
}

/* Decorative mountain watermark */
.brand-identity::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.feature-card {
    background: var(--clr-white);
    padding: 2.8rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(131, 186, 38, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-green-light), var(--clr-green-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 2px 2px 0 0;
}

/* Brand-identity section: warm golden accent on cards */
.brand-identity .feature-card::before {
    background: linear-gradient(90deg, var(--clr-yellow-warm), var(--clr-orange));
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(131, 186, 38, 0.3);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--clr-green-light) 0%, var(--clr-green-dark) 100%);
    color: var(--clr-white);
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 1.8rem auto;
    box-shadow: 0 6px 18px rgba(51, 115, 48, 0.35);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--clr-orange) 0%, var(--clr-orange-deep) 100%);
    box-shadow: 0 6px 18px rgba(233, 92, 41, 0.4);
    transform: rotate(8deg) scale(1.08);
}

/* Brand-identity icon: start with warm golden gradient */
.brand-identity .feature-icon {
    background: linear-gradient(135deg, var(--clr-yellow-warm) 0%, var(--clr-orange) 100%);
    box-shadow: 0 6px 18px rgba(245, 200, 66, 0.40);
    color: var(--clr-white);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--clr-green-dark);
    transition: var(--transition-fast);
}
.feature-card:hover h3 { color: var(--clr-orange); }

.feature-card p {
    font-size: 0.97rem;
    color: var(--clr-gray-mid);
    line-height: 1.7;
}

/* --- Image Cards Styles --- */
.image-card {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}

.image-card::before {
    z-index: 2; /* Ensure the top colored line stays above the image */
}

.card-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, var(--clr-white), transparent);
    z-index: 1;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.image-card:hover .card-img-wrap img {
    transform: scale(1.08); /* Premium hover zoom effect */
}

.card-content {
    padding: 1.5rem 2rem 2.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* === Diferenciadores section bg === */
#diferenciadores {
    background: var(--clr-gray-soft) !important;
}

/* ===================================================
   EMPAQUE SECTION
   =================================================== */
.empaque {
    padding: var(--section-pad);
    background-color: var(--clr-off-white);
    position: relative;
    overflow: hidden;
}

.empaque-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.empaque-content .top-tag {
    background: rgba(131, 186, 38, 0.15);
    color: var(--clr-green-dark);
    border-color: rgba(131, 186, 38, 0.3);
    margin-bottom: 1.2rem;
    animation: none;
    box-shadow: none;
}
.empaque-content .top-tag i { color: var(--clr-green-mid); }

.empaque-content p {
    font-size: 1.1rem;
    color: var(--clr-gray-mid);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.empaque-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.empaque-features li {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.empaque-features .icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--clr-green-light), var(--clr-green-dark));
    color: white;
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(51, 115, 48, 0.25);
    transition: var(--transition);
}

.empaque-features li:hover .icon {
    transform: translateY(-5px) rotate(5deg);
    background: linear-gradient(135deg, var(--clr-orange), var(--clr-yellow-warm));
    box-shadow: 0 6px 18px rgba(233, 92, 41, 0.35);
}

.empaque-features h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--clr-black);
    margin-bottom: 0.4rem;
}

.empaque-features p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.empaque-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-box-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: auto;
    perspective: 1000px;
}

.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(131, 186, 38, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(25px);
    z-index: 1;
    animation: pulseBg 4s infinite alternate ease-in-out;
}

.floating-box {
    position: relative;
    z-index: 2;
    width: 100%;
    filter: drop-shadow(0 35px 35px rgba(0, 0, 0, 0.25));
    animation: floatingEffect 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes floatingEffect {
    0%   { transform: translateY(0px) rotateX(2deg) rotateY(-2deg); }
    50%  { transform: translateY(-25px) rotateX(-2deg) rotateY(4deg) scale(1.03); }
    100% { transform: translateY(0px) rotateX(2deg) rotateY(-2deg); }
}

@keyframes pulseBg {
    0%   { transform: translate(-50%, -50%) scale(0.85); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

@media (max-width: 992px) {
    .empaque-container { grid-template-columns: 1fr; }
    .empaque-visual { order: -1; }
}

/* ===================================================
   PRODUCTS SECTION — Progressive egg sizes
   =================================================== */
.products {
    padding: var(--section-pad);
    background-color: var(--clr-gray-soft) !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.products-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
    filter: blur(3px) contrast(1.05) brightness(0.9);
}

.products-video-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(19, 26, 14, 0.70), rgba(19, 26, 14, 0.88));
    z-index: -1;
}

/* Enforce light text on dark background for products section */
.products .section-title {
    color: var(--clr-white);
}
.products .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}
.products .size-scale-bar {
    color: var(--clr-white);
}
.products .scale-line {
    background: rgba(255, 255, 255, 0.2);
}

.products::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233,92,41,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.products .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Gallery flex row — cards side by side */
.product-gallery {
    display: flex;
    flex-direction: row;     /* always horizontal */
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;   /* cards base-aligned, eggs grow upward */
    gap: 2rem;
    margin-top: 1.5rem;
    padding: 2rem 0 1rem;
}

/* Each card wrapper */
.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(131, 186, 38, 0.12);
    transition: var(--transition);
    position: relative;
    overflow: visible;
    cursor: default;
    width: 220px;
    flex-shrink: 0;
}

.product-item.special {
    border-color: rgba(233,92,41,0.25);
    background: linear-gradient(160deg, #fff8f5 0%, #fffaf7 100%);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-green-light);
}
.product-item.special:hover { border-color: var(--clr-orange); }

/* ---- Egg zone (above the card) ---- */
.product-egg-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 180px;
    position: relative;
    padding: 0 12px;
    margin-bottom: -4px;
}

.product-egg {
    display: block;
    height: calc(100px * var(--egg-scale, 1));
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.20));
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s ease;
    transform-origin: bottom center;
}

.product-item:hover .product-egg {
    transform: scale(1.1) translateY(-6px);
    filter: drop-shadow(0 16px 28px rgba(0,0,0,0.22));
}

/* ---- Card body ---- */
.product-card-body {
    padding: 1.2rem 1.2rem 1.6rem;
    width: 100%;
    background: var(--clr-white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    position: relative;
}

.product-item.special .product-card-body {
    background: linear-gradient(160deg, #fff8f5 0%, #fffaf7 100%);
}

/* Tag pill */
.product-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--clr-green-dark), var(--clr-green-mid));
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(51,115,48,0.3);
    white-space: nowrap;
    margin-bottom: 0.6rem;
}

.orange-bg {
    background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-deep)) !important;
    box-shadow: 0 3px 10px rgba(233,92,41,0.35) !important;
}

/* Gramaje — the big number */
.product-gramaje {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--clr-green-dark);
    line-height: 1;
    margin-bottom: 0.55rem;
    letter-spacing: -0.5px;
}

.jumbo-gramaje { color: var(--clr-orange-deep); }

.product-card-body p {
    font-size: 0.84rem;
    color: var(--clr-gray-mid);
    line-height: 1.55;
    margin: 0;
}

/* ---- Scale reference bar ---- */
.size-scale-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-gray-mid);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scale-line {
    flex: 1;
    max-width: 320px;
    height: 4px;
    background: var(--clr-gray-light);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scale-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--clr-green-light), var(--clr-orange));
    border-radius: 2px;
    animation: scalePulse 3s ease-in-out infinite;
}

@keyframes scalePulse {
    0%, 100% { opacity: 0.7; }
    50%       { opacity: 1; }
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    color: var(--clr-white);
    overflow: hidden;
    background: linear-gradient(135deg, var(--clr-black) 0%, var(--clr-green-dark) 50%, var(--clr-green-mid) 100%);
}

/* Animated gradient orbs */
.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(233,92,41,0.35) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 8s ease-in-out infinite;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(131,186,38,0.22) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 10s 2s ease-in-out infinite reverse;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(20px, -20px) scale(1.08); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-banner .cta-eyebrow {
    display: inline-block;
    background: rgba(131,186,38,0.25);
    color: var(--clr-yellow-warm);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(245,200,66,0.3);
    margin-bottom: 1.5rem;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    color: var(--clr-white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    text-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.cta-banner p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================================
   FOOTER
   =================================================== */
.main-footer {
    background: var(--clr-black);
    color: var(--clr-gray-light);
    padding: 5rem 0 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-green-dark), var(--clr-green-light), var(--clr-orange));
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3.5rem;
    padding-bottom: 3.5rem;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.2rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: var(--transition);
}
.footer-logo:hover { opacity: 1; filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(131,186,38,0.5)); }

.footer-brand p {
    max-width: 300px;
    opacity: 0.65;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 1.6rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(131,186,38,0.2);
}

.footer-links ul li { margin-bottom: 0.9rem; }

.footer-links ul li a {
    opacity: 0.65;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.footer-links ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition-fast);
    color: var(--clr-green-light);
}
.footer-links ul li a:hover {
    opacity: 1;
    color: var(--clr-green-light);
    padding-left: 4px;
}
.footer-links ul li a:hover::before { opacity: 1; transform: none; }

.footer-contact ul li {
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.7;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}
.footer-contact ul li:hover { opacity: 1; }

.footer-contact ul li i {
    color: var(--clr-orange);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-white);
    font-size: 1.05rem;
    transition: var(--transition);
}
.social-icons a:hover {
    background: var(--clr-orange);
    border-color: var(--clr-orange);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 18px rgba(233,92,41,0.4);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.88rem;
    opacity: 0.5;
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* ===================================================
   RESPONSIVE DESIGN
   =================================================== */
@media (max-width: 991px) {
    .hero-container { padding-top: 7rem; }
    .hero-content.professional-hero { text-align: center; align-items: center; }
    .hero-subtitle { max-width: 100%; }
    .hero-stats { justify-content: center; }
    .manifesto-container { grid-template-columns: 1fr; gap: 3rem; }
    .manifesto-image { order: 2; }
    .manifesto-text  { order: 1; }
    .manifesto-image::after { right: 0; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --section-pad: 5rem 0; }

    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(250,253,246,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 2rem 0 1.5rem;
        box-shadow: var(--shadow-lg);
        gap: 0;
        border-bottom: 3px solid var(--clr-green-light);
    }
    .main-nav ul li { width: 100%; text-align: center; }
    .main-nav ul li a {
        display: block;
        padding: 0.9rem 2rem;
        color: var(--clr-gray-dark) !important;
        text-shadow: none !important;
        font-size: 1rem;
    }
    .main-nav ul li a:hover { background: var(--clr-gray-light); }
    .main-nav ul.active { display: flex; }

    .hamburger { display: block; }

    .hero-content h1 { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-actions { justify-content: center; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }

    .manifesto-image::after { display: none; }

    /* Products: keep horizontal, scroll en móvil */
    .product-gallery {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        gap: 1.2rem;
    }
    .product-item { width: 185px; }
    .product-egg-wrap { height: 140px; }

    .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-brand p { max-width: 100%; }

    .cta-banner { padding: 4rem 0; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .section-title { font-size: 1.75rem; }
    .product-gallery {
        gap: 1rem;
        padding-left: 1rem;
    }
    .product-item {
        width: 160px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }
    .product-egg-wrap { height: 110px; }
    .size-scale-bar { font-size: 0.72rem; }
}

/* ===================================================
   FLOATING WHATSAPP BUTTON
   =================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--clr-white);
    border-radius: var(--radius-full);
    font-size: 2rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.50);
    transition: var(--transition);
    text-decoration: none;
    overflow: visible;
}

/* Pulse ring animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 3px solid rgba(37, 211, 102, 0.45);
    animation: waPulse 2.2s ease-out infinite;
}

@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    70%  { transform: scale(1.45); opacity: 0; }
    100% { transform: scale(1.45); opacity: 0; }
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.60);
    background: linear-gradient(135deg, #2de073 0%, #19b394 100%);
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    background: var(--clr-black);
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 0.83rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: var(--shadow-md);
}

/* Tooltip arrow */
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 0 5px 7px;
    border-style: solid;
    border-color: transparent transparent transparent var(--clr-black);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.4rem;
        right: 1.4rem;
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
    .whatsapp-tooltip { display: none; }
}

/* ===================================================
   ORDER MODAL
   =================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 26, 14, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--clr-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-xl);
    border-top: 5px solid var(--clr-green-light);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--clr-gray-mid);
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--clr-orange);
    transform: scale(1.1);
}

.modal-title {
    font-family: var(--font-heading);
    color: var(--clr-green-dark);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--clr-gray-mid);
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--clr-gray-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid var(--clr-gray-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--clr-black);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--clr-green-light);
    box-shadow: 0 0 0 3px rgba(131, 186, 38, 0.15);
}