/* ==========================================================================
   FRITURAS JESÚS - CSS ESTILOS LANDING PAGE PREMIUM (SERIGRAFÍA)
   ========================================================================== */

/* 1. Variables de Diseño y Configuración Global */
:root {
    /* Paleta de Colores Dominantes (friturasjesus.com.mx) */
    --color-bg-deep: #0b0a0a;        /* Negro absoluto de fondo */
    --color-bg-dark: #12100f;        /* Negro carbón/tierra profundo */
    --color-bg-card: #1c1917;        /* Tonalidad intermedia de tarjetas */
    --color-bg-card-hover: #262220;  /* Tarjeta activa o enfocada */
    
    --color-primary: #df5d10;        /* Naranja vibrante original */
    --color-primary-light: #f9b50f;  /* Amarillo maíz dorado */
    --color-primary-dark: #b84305;   /* Naranja quemado/óxido */
    
    --color-accent: #ce1316;         /* Rojo logotipo */
    --color-accent-hover: #a80f12;   /* Rojo hover */
    
    --color-green: #4a5d2f;          /* Verde oliva aguacate */
    --color-green-light: #7c945c;    /* Verde suave */
    
    --color-text-light: #fcfaf7;     /* Blanco hueso sedoso */
    --color-text-muted: #a89f95;     /* Gris tierra cálido */
    --color-text-dark: #12100f;      /* Texto oscuro */
    
    --color-border-gold: rgba(249, 181, 15, 0.2);
    --color-border-gold-focus: rgba(249, 181, 15, 0.5);
    
    /* Tipografías */
    --font-display: 'Cinzel', serif;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    --font-logo: 'Fredoka', sans-serif;
    
    /* Transiciones */
    --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.25s ease-in-out;
    
    /* Sombras y Luces */
    --gold-glow: 0 0 20px rgba(249, 181, 15, 0.15);
    --gold-glow-strong: 0 0 35px rgba(249, 181, 15, 0.35);
    --box-shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Reseteo y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-deep);
    color: var(--color-text-light);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-bg-deep);
}

body {
    overflow-x: hidden;
    background-color: var(--color-bg-deep);
}

/* Scrollbar Personalizada */
body::-webkit-scrollbar {
    width: 8px;
}
body::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}
body::-webkit-scrollbar-thumb {
    background: var(--color-primary-dark);
    border-radius: 4px;
}
body::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Tipografía y Textos */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-weight: 300;
}

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

address {
    font-style: normal;
}

/* Degradado de Texto Dorado */
.gold-gradient-text {
    background: linear-gradient(135deg, #f9b50f 0%, #df5d10 50%, #b84305 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Contenedores Comunes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 0;
}

.small-container {
    max-width: 800px;
}

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

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

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

.text-light {
    color: var(--color-text-light);
}

.text-muted {
    color: var(--color-text-muted);
}

/* Decoraciones y Encabezados de Sección */
.section-header {
    margin-bottom: 70px;
    position: relative;
    z-index: 5;
}

.accent-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--color-primary-light);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-text-light);
    font-weight: 700;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 15px auto 0;
    color: var(--color-text-muted);
}

.title-underline {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary-light), var(--color-primary), transparent);
    margin: 25px auto 0;
    position: relative;
}

.title-underline::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
}

/* ==========================================================================
   2. Preloader de Carga
   ========================================================================== */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-deep);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.8s;
}

.preloader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.corn-spinner-container {
    margin-bottom: 30px;
    animation: rotateSpinner 6s linear infinite;
}

@keyframes rotateSpinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner-hand {
    stroke-linecap: round;
    animation: dashSpinner 2.5s ease-in-out infinite;
}

@keyframes dashSpinner {
    0% { stroke-dashoffset: 250; }
    50% { stroke-dashoffset: 70; transform: rotate(120deg); }
    100% { stroke-dashoffset: 250; }
}

.preloader-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}

.preloader-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary-light);
    font-style: italic;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.progress-bar-wrapper {
    width: 280px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
    border-radius: 2px;
    transition: width 0.1s ease-out;
}

.preloader-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ==========================================================================
   3. Header / Navegación
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: transparent;
    padding: 25px 0;
}

.main-header.scrolled {
    background-color: rgba(11, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    padding: 12px 0;
    border-bottom: 1px solid rgba(249, 181, 15, 0.15);
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.brand-logo-svg {
    transition: var(--transition-smooth);
    transform-origin: left center;
}

.main-header.scrolled .brand-logo-svg {
    transform: scale(0.85);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    position: relative;
    padding: 8px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary));
    transition: var(--transition-fast);
}

.nav-item:hover {
    color: var(--color-primary-light);
}

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

/* Botón de Acción (CTA) */
.btn-cta {
    background-color: var(--color-accent);
    color: var(--color-text-light) !important;
    padding: 10px 24px !important;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(206, 19, 22, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.btn-cta:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 19, 22, 0.55);
}

/* Hamburguesa móvil */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 6px;
    z-index: 1100;
}

.hamburger-bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-text-light);
    transition: var(--transition-fast);
}

/* ==========================================================================
   4. Impactful Video Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Capas de overlays para dar el efecto de serigrafía rústica y el contraste del texto (Desactivados a petición del usuario para dejar el video 100% libre) */
.hero-overlay {
    display: none;
}

.hero-vignette {
    display: none;
}

.hero-texture-overlay {
    display: none;
}

/* Borde elegante que enmarca el Hero estilo lámina impresa */
.hero-frame-border {
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 25px;
    right: 25px;
    border: 1px solid rgba(249, 181, 15, 0.15);
    pointer-events: none;
    z-index: 4;
}

.hero-frame-border::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border: 1px solid rgba(249, 181, 15, 0.05);
}

/* Contenido del Hero en Tarjeta Glassmorphic */
.hero-content-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.hero-glass-card {
    background: rgba(18, 16, 15, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(249, 181, 15, 0.18);
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), var(--gold-glow);
    max-width: 800px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInCard 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
}

@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-pretitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-primary-light);
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text-light);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary-light), transparent);
}

.divider-dot {
    width: 5px;
    height: 5px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.hero-description {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-text-light);
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Botones Premium */
.btn-primary-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: var(--color-text-dark);
    padding: 16px 36px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(249, 181, 15, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(249, 181, 15, 0.5), var(--gold-glow-strong);
}

.btn-secondary-outline {
    display: inline-block;
    background: transparent;
    color: var(--color-text-light);
    padding: 15px 35px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary-outline:hover {
    border-color: var(--color-primary-light);
    color: var(--color-primary-light);
    background: rgba(249, 181, 15, 0.05);
    transform: translateY(-3px);
}

/* Indicador de Scroll */
.hero-scroll-indicator {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-scroll-indicator:hover {
    color: var(--color-primary-light);
    transform: translate(-50%, 5px);
}

.scroll-arrow {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    animation: scrollArrowAnim 1.5s infinite;
}

.scroll-arrow:nth-child(2) {
    animation-delay: 0.2s;
    margin-top: -4px;
}

@keyframes scrollArrowAnim {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    margin-top: 5px;
}

/* ==========================================================================
   5. Sección de Proceso Artesanal
   ========================================================================== */
.proceso-section {
    position: relative;
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid rgba(249, 181, 15, 0.05);
    overflow: hidden;
}

/* Elementos de Paralaje Flotantes */
.parallax-element {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.1s ease-out;
}

.floating-totopo-1 {
    top: 15%;
    left: 5%;
    opacity: 0.5;
}

.interactive-seal-container {
    position: absolute;
    top: -65px;
    right: 8%;
    z-index: 10;
}

.interactive-seal {
    animation: rotateSeal 25s linear infinite;
    transform-origin: center;
}

@keyframes rotateSeal {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Tarjetas de Proceso Artesanal */
.process-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border-gold);
    padding: 50px 35px 40px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: var(--box-shadow-card);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(249, 181, 15, 0.04), transparent 60%);
    pointer-events: none;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(249, 181, 15, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.process-card:hover .card-glow {
    opacity: 1;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), var(--gold-glow);
}

.card-number {
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(249, 181, 15, 0.05);
    line-height: 1;
    transition: var(--transition-smooth);
}

.process-card:hover .card-number {
    color: rgba(249, 181, 15, 0.12);
    transform: scale(1.1);
}

.card-icon-wrapper {
    width: 75px;
    height: 75px;
    background: rgba(223, 93, 16, 0.06);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary-light);
    margin-bottom: 30px;
    border: 1px solid rgba(249, 181, 15, 0.15);
    transition: var(--transition-smooth);
}

.process-card:hover .card-icon-wrapper {
    background: rgba(249, 181, 15, 0.1);
    color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: scale(1.08) rotate(6deg);
    box-shadow: var(--gold-glow);
}

.process-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--color-text-light);
    letter-spacing: 0.02em;
}

.process-card p {
    font-size: 0.98rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   6. Catálogo de Productos
   ========================================================================== */
.productos-section {
    background-color: var(--color-bg-deep);
    position: relative;
    border-bottom: 1px solid rgba(249, 181, 15, 0.05);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border-gold);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--box-shadow-card);
}

.product-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(400px circle at 50% 30%, rgba(223, 93, 16, 0.05), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card:hover .product-glow {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(223, 93, 16, 0.15);
}

.product-image-container {
    height: 200px;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border-gold);
    position: relative;
    background-color: var(--color-bg-dark);
}

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

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 8px;
    transition: var(--transition-fast);
}

.product-card:hover .product-card-body h3 {
    color: var(--color-primary-light);
}

.product-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    margin-bottom: 15px;
    display: inline-block;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   7. Sección de Historia (Estilo Grabado Rústico)
   ========================================================================== */
.historia-section {
    position: relative;
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid rgba(249, 181, 15, 0.05);
    overflow: hidden;
}

.silkscreen-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.silkscreen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.06;
    mix-blend-mode: overlay; /* Fusión perfecta en el fondo oscuro */
}

.historia-section .container {
    position: relative;
    z-index: 2;
}

/* Timeline */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto 100px;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary-light), var(--color-primary), transparent);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px;
    margin-bottom: 50px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-badge {
    position: absolute;
    top: 15px;
    width: 54px;
    height: 54px;
    background-color: var(--color-bg-deep);
    border: 2px solid var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-primary-light);
    z-index: 5;
    box-shadow: var(--gold-glow);
    transition: var(--transition-smooth);
}

.timeline-item.left .timeline-badge {
    right: -27px;
}

.timeline-item.right .timeline-badge {
    left: -27px;
}

.timeline-item:hover .timeline-badge {
    background-color: var(--color-primary-light);
    color: var(--color-bg-deep);
    transform: scale(1.1);
    box-shadow: var(--gold-glow-strong);
}

.timeline-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border-gold);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--box-shadow-card);
    transition: var(--transition-smooth);
    position: relative;
}

.timeline-card::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item.left .timeline-card::after {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--color-border-gold);
}

.timeline-item.right .timeline-card::after {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--color-border-gold) transparent transparent;
}

.timeline-card:hover {
    border-color: var(--color-primary-light);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), var(--gold-glow);
}

.timeline-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin-bottom: 12px;
}

.timeline-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Misión y Visión Cards */
.mision-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.purpose-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border-gold);
    border-left: 4px solid var(--color-primary-light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--box-shadow-card);
    transition: var(--transition-smooth);
}

.purpose-card:hover {
    border-color: var(--color-primary-light);
    border-left-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), var(--gold-glow);
}

.purpose-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 181, 15, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary-light);
    margin-bottom: 25px;
    border: 1px solid rgba(249, 181, 15, 0.15);
}

.purpose-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.purpose-card p {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* Valores */
.valores-container {
    text-align: center;
    margin-bottom: 90px;
}

.valores-container h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    margin-bottom: 35px;
}

.valores-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.valor-chip {
    background: rgba(28, 25, 23, 0.6);
    border: 1px solid var(--color-border-gold);
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}

.valor-chip:hover {
    border-color: var(--color-primary-light);
    background-color: rgba(249, 181, 15, 0.08);
    transform: scale(1.05);
    box-shadow: var(--gold-glow);
}

/* Split Layout de Ingredientes */
.ingredients-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-top: 100px;
}

.ingredients-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-text-light);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.ingredients-text p {
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--color-primary-light);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--color-primary-light);
}

.feature-content h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 6px;
    font-weight: 600;
}

.feature-content p {
    font-size: 0.98rem;
    color: var(--color-text-muted);
}

.ingredients-visual-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ingredients-border-frame {
    border: 1px solid var(--color-border-gold);
    padding: 12px;
    background-color: rgba(28, 25, 23, 0.4);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(223, 93, 16, 0.1);
    transition: var(--transition-smooth);
}

.ingredients-border-frame:hover {
    border-color: rgba(249, 181, 15, 0.4);
    box-shadow: var(--gold-glow-strong);
    transform: scale(1.03);
}

.ingredients-silkscreen-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    mix-blend-mode: lighten;
    opacity: 0.9;
}

/* ==========================================================================
   8. Sección de Clientes y Distribuidores
   ========================================================================== */
.clientes-section {
    background-color: var(--color-bg-deep);
    position: relative;
    border-bottom: 1px solid rgba(249, 181, 15, 0.05);
    overflow: hidden;
}

.floating-lime {
    bottom: 10%;
    right: 5%;
    opacity: 0.3;
}

/* Cadenas y Supermercados */
.supermarkets-container {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border-gold);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--box-shadow-card);
    margin-bottom: 60px;
}

.supermarkets-container h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

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

.supermarket-badge {
    background: rgba(11, 10, 10, 0.5);
    border: 1px solid var(--color-border-gold);
    border-radius: 16px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
}

.supermarket-badge:hover {
    border-color: var(--color-primary-light);
    background-color: rgba(249, 181, 15, 0.05);
    transform: translateY(-4px);
    box-shadow: var(--gold-glow);
}

.supermarket-icon {
    font-size: 1.6rem;
}

.supermarket-info h4 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-text-light);
    font-weight: 600;
}

.supermarket-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Sectores de Abasto */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.sector-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border-gold);
    border-bottom: 4px solid var(--color-primary);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow-card);
    transition: var(--transition-smooth);
}

.sector-card:hover {
    border-color: var(--color-primary-light);
    border-bottom-color: var(--color-primary-light);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), var(--gold-glow);
}

.sector-card .sector-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(223, 93, 16, 0.06);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary-light);
    margin: 0 auto 25px;
    border: 1px solid rgba(249, 181, 15, 0.15);
    transition: var(--transition-smooth);
}

.sector-card:hover .sector-icon-wrapper {
    background: rgba(249, 181, 15, 0.10);
    transform: scale(1.1);
    box-shadow: var(--gold-glow);
}

.sector-card h4 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--color-text-light);
    font-weight: 600;
    margin-bottom: 15px;
}

.sector-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   9. Tabla Nutricional Estilizada
   ========================================================================== */
.nutrition-section {
    background-color: var(--color-bg-dark);
    position: relative;
    border-bottom: 1px solid rgba(249, 181, 15, 0.05);
}

.nutrition-label-container {
    background-color: var(--color-bg-card);
    border: 2px solid var(--color-primary-light);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--box-shadow-card), var(--gold-glow);
}

.nutrition-label-inner {
    border: 1px solid var(--color-border-gold);
    border-radius: 12px;
    padding: 40px;
    background-color: rgba(11, 10, 10, 0.4);
}

.label-header {
    border-bottom: 3px solid var(--color-text-light);
    padding-bottom: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.label-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
}

.label-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 18px;
    border-radius: 20px;
    margin: 10px 0 15px;
}

.label-servings {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Tabla Nutricional Rústica */
.nutrition-label-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.nutrition-label-table th,
.nutrition-label-table td {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-body);
    font-size: 1rem;
    text-align: left;
}

.nutrition-label-table th {
    border-bottom: 2px solid var(--color-text-light);
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nutrition-label-table td strong {
    font-weight: 600;
    color: var(--color-text-light);
}

.nutrition-label-table .text-right {
    text-align: right;
}

.nutrition-label-table .highlight-row td {
    border-bottom: 2px solid var(--color-text-light);
    font-size: 1.1rem;
}

.nutrition-label-table .font-gold {
    color: var(--color-primary-light);
    font-weight: 700;
}

.nutrition-label-table .indent-row td:first-child {
    padding-left: 30px;
    color: rgba(252, 250, 247, 0.7);
}

.label-footnote {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    border-top: 1px solid var(--color-text-light);
    padding-top: 15px;
}

/* ==========================================================================
   10. Sección de Contacto (Cotizaciones Mayoristas)
   ========================================================================== */
.contact-section {
    background-color: var(--color-bg-deep);
    position: relative;
}

.contact-wrapper {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border-gold);
    border-radius: 28px;
    padding: 60px;
    box-shadow: var(--box-shadow-card);
    position: relative;
    overflow: hidden;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary-light), var(--color-primary), var(--color-accent));
}

.contact-info-panel {
    padding-right: 20px;
}

.contact-panel-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    margin: 15px 0 25px;
}

.contact-panel-desc {
    font-size: 1.05rem;
    margin-bottom: 45px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon-wrapper {
    width: 54px;
    height: 54px;
    background: rgba(249, 181, 15, 0.05);
    border: 1px solid var(--color-border-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary-light);
    transition: var(--transition-smooth);
}

.method-card:hover .method-icon-wrapper {
    border-color: var(--color-primary-light);
    background-color: rgba(249, 181, 15, 0.1);
    transform: scale(1.08) rotate(5deg);
    box-shadow: var(--gold-glow);
}

.method-details span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 4px;
}

.method-details a,
.method-details address {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.method-details a:hover {
    color: var(--color-primary-light);
}

/* Panel del Formulario */
.contact-form-panel {
    background-color: rgba(11, 10, 10, 0.4);
    border: 1px solid var(--color-border-gold);
    border-radius: 20px;
    padding: 40px;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.form-instructions {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: var(--color-bg-deep);
    border: 1px solid var(--color-border-gold);
    padding: 14px 18px;
    border-radius: 10px;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.98rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 15px rgba(249, 181, 15, 0.1);
    background-color: rgba(11, 10, 10, 0.7);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(168, 159, 149, 0.45);
}

/* Botón del Formulario */
.btn-submit-gold {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: var(--color-text-dark);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(249, 181, 15, 0.25);
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.btn-submit-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 181, 15, 0.45), var(--gold-glow);
}

.btn-submit-gold:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(18, 16, 15, 0.2);
    border-top: 2px solid var(--color-text-dark);
    border-radius: 50%;
    animation: spinLoader 0.8s linear infinite;
    margin-left: 10px;
}

@keyframes spinLoader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   11. Footer
   ========================================================================== */
.footer {
    background-color: #060505;
    border-top: 1px solid rgba(249, 181, 15, 0.1);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 0.95rem;
    margin-top: 20px;
    max-width: 320px;
}

.footer-links h4,
.footer-contact-info h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact-info h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 1.5px;
    background-color: var(--color-primary-light);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-primary-light);
    padding-left: 5px;
}

.footer-contact-info p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-contact-info a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(168, 159, 149, 0.6);
}

.footer-developer {
    margin-top: 8px;
}

/* ==========================================================================
   12. Animación de Revelado Scrolltelling y Media Queries
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Media Queries para Responsividad Completa */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
    .grid-two-cols {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .grid-three-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    .supermarkets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ingredients-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ingredients-visual-wrapper {
        order: -1;
    }
    .contact-wrapper {
        padding: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-bg-deep);
        border-left: 1px solid var(--color-border-gold);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1050;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .mobile-nav-toggle.open .hamburger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-nav-toggle.open .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.open .hamburger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-description {
        font-size: 1.15rem;
    }
    .hero-glass-card {
        padding: 40px 25px;
    }
    
    .grid-three-cols {
        grid-template-columns: 1fr;
    }
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mision-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline-line {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
    }
    .timeline-badge {
        left: -7px !important;
    }
    .timeline-item.left .timeline-card::after {
        left: -10px;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--color-border-gold) transparent transparent;
    }
    
    .form-group-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .nutrition-label-inner {
        padding: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: span 1;
    }

    /* Ajuste de contenedores y títulos en móvil para mayor responsividad */
    .container {
        padding: 70px 0;
    }
    .section-title {
        font-size: 2.2rem;
    }
    
    /* WhatsApp Sticky en móvil */
    .whatsapp-sticky {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-sticky svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================================================
   13. Estilos Globales del Botón Sticky de WhatsApp
   ========================================================================== */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-sticky:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background-color: #20ba5a;
}

.whatsapp-sticky svg {
    display: block;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
