﻿/* =============================
   PRELOADER ANIMADO
   ============================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3c851 0%, #e67e22 50%, #d35400 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    animation: preloaderFloat 2s ease-in-out infinite;
}

.preloader-logo {
    position: relative;
}

.preloader-logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    animation: logoRotate 2s linear infinite !important;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    display: block;
    margin: 0 auto;
    transform-origin: center center;
}

/* Animaciones del preloader */
@keyframes preloaderFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes logoRotate {
    0% { 
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(270deg);
    }
    100% { 
        transform: rotate(360deg);
    }
}

/* Estilo alternativo para asegurar la rotaciÃ³n */
#preloader .preloader-logo-img {
    animation: logoRotate 2s linear infinite !important;
    animation-fill-mode: forwards !important;
}

@keyframes logoPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Responsive para preloader */
@media (max-width: 768px) {
    .preloader-logo-img {
        width: 120px;
        height: 120px;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
    }
}

/* =============================
   SecciÃ³n Nosotros - Estilos
   ============================= */
.nosotros-section {
    padding: 20px 20px 20px 20px;
    background: linear-gradient(135deg, #faf7e8 0%, #f5f2e4 100%);
    min-height: 0vh;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}


@media (max-width: 600px) {
  /* Regla eliminada: estaba incompleta y no se usa */
}

.nosotros-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.nosotros-section h2 {
    font-size: 3.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: #d35400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(211, 84, 0, 0.08);
}

.nosotros-section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #d35400, #e67e22, #f3c851);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(211, 84, 0, 0.3);
}

.nosotros-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.nosotros-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d35400, #e67e22, #f3c851, #e67e22, #d35400);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.nosotros-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #34495e;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
    margin-bottom: 30px;
}

.nosotros-text:first-child {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2c3e50;
}

/* Destacados de la empresa */
.nosotros-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(211, 84, 0, 0.1);
}
.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(211, 84, 0, 0.3);
}
.highlight-icon {
    font-size: 3rem;
    color: #d35400;
    margin-bottom: 20px;
    display: block;
}
.highlight-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.highlight-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Responsive para la secciÃ³n Nosotros */
@media (max-width: 768px) {
    .nosotros-section {
        padding: 80px 15px;
    }
    .nosotros-section h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    .nosotros-content {
        padding: 40px 30px;
        margin-bottom: 30px;
    }
    .nosotros-text {
        font-size: 1.1rem;
        text-align: left;
    }
    .nosotros-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    .highlight-item {
        padding: 25px 20px;
    }
    .highlight-icon {
        font-size: 2.5rem;
    }
    .highlight-title {
        font-size: 1.2rem;
    }
}
@media (max-width: 480px) {
    .nosotros-section h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    .nosotros-content {
        padding: 30px 20px;
    }
    .nosotros-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    .highlight-item {
        padding: 20px 15px;
    }
}
/* =============================
   SecciÃ³n Producto - Estilos
   ============================= */
.producto-section {
    padding: 20px 20px;
    background: linear-gradient(135deg, #faf7e8 0%, #f5f2e4 100%);
    min-height: 0vh;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.producto-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.producto-section h2 {
    font-size: 3.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: #f3c851;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(243, 200, 81, 0.08);
}

.producto-section h2::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, #f3c851, #f3c851, #f3c851);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(185, 122, 0, 0.15);
}

.producto-subtitle {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #f3c851;
    margin-bottom: 40px;
    letter-spacing: 1px;
    opacity: 0.9;
}

.producto-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.producto-text {
    flex: 1 1 350px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(185, 122, 0, 0.08);
    text-align: left;
    min-width: 300px;
    max-width: 600px;
    margin: 0 auto;
}

.producto-text h3 {
    font-size: 2rem;
    color: #f3c851;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.producto-text p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;
}

.producto-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 10px;
}

.feature {
    background: #f8f5e8;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(185, 122, 0, 0.07);
    padding: 18px 16px;
    flex: 1 1 120px;
    min-width: 120px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFeature 0.6s ease forwards;
    transition: all 0.3s ease;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }

.feature:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(185, 122, 0, 0.15);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.2);
}

.feature h4 {
    font-size: 1.1rem;
    color: #f3c851;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.feature p {
    font-size: 0.98rem;
    color: #f3c851;
    margin: 0;
}

/* Especificaciones del producto - Details */
.producto-specs-details {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.producto-specs-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background: #f8f9fa;
    color: #2c3e50;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.producto-specs-summary:hover {
    background: #e9ecef;
}

.producto-specs-summary:focus {
    outline: none;
    background: #e9ecef;
}

.summary-icon {
    font-size: 1rem;
    margin-right: 8px;
}

.summary-text {
    text-align: center;
}

.summary-arrow {
    font-size: 0.8rem;
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.producto-specs-details[open] .summary-arrow {
    transform: rotate(180deg);
}

.producto-specs-content {
    padding: 16px;
    background: white;
}

.producto-specs {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item dt {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

.spec-item dd {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    margin: 0;
    text-align: right;
    min-width: 100px;
}

/* Responsive para especificaciones */
@media (max-width: 768px) {
    .producto-specs-details {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .producto-specs-summary {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .producto-specs-content {
        padding: 14px;
    }

    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 6px 0;
    }

    .spec-item dd {
        text-align: left;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .producto-specs-summary {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .summary-icon {
        font-size: 0.95rem;
    }

    .producto-specs-content {
        padding: 12px;
    }

    .spec-item dt {
        font-size: 0.85rem;
    }

    .spec-item dd {
        font-size: 0.9rem;
    }
}

/* Destacados del producto */
.producto-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.highlight-item {
    background: #f8f5e8;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(185, 122, 0, 0.09);
    padding: 28px 22px;
    min-width: 180px;
    max-width: 260px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpHighlight 0.7s ease forwards;
}

.highlight-item:nth-child(1) { animation-delay: 0.2s; }
.highlight-item:nth-child(2) { animation-delay: 0.4s; }
.highlight-item:nth-child(3) { animation-delay: 0.6s; }

.highlight-item:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 15px 40px rgba(185, 122, 0, 0.25);
}

.highlight-icon {
    font-size: 2.2rem;
    color: #f3c851;
    margin-bottom: 10px;
    display: block;
    transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.3) rotate(5deg);
}
.highlight-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #f3c851;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.highlight-item p {
    font-size: 0.98rem;
    color: #2c3e50;
    margin: 0;
}

/* Responsive para la secciÃ³n Producto */
@media (max-width: 900px) {
    .producto-content, .producto-highlights {
        flex-direction: column;
        align-items: center;
    }
    .producto-text, .highlight-item {
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .producto-section {
        padding: 50px 8px;
    }
    .producto-text {
        padding: 25px 10px;
    }
    .producto-section h2 {
        font-size: 2rem;
    }
    .producto-subtitle {
        font-size: 1.1rem;
    }
    .highlight-item {
        padding: 18px 8px;
    }
}
/* styles.css - Piel Roja Website */

/* =============================
   RESET Y ESTILOS BASE OPTIMIZADOS
   ============================= */

/* Reset universal mejorado */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* Estilos base para HTML y BODY optimizados para web */
html {
    font-size: 16px; /* Base font size fija */
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem; /* 16px base */
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #faf7e8 0%, #f5f2e4 100%);
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Contenedores principales */
.container,
.nosotros-container,
.producto-container,
.contacto-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive containers */
@media (max-width: 1240px) {
    .container,
    .nosotros-container,
    .producto-container,
    .contacto-container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .container,
    .nosotros-container,
    .producto-container,
    .contacto-container {
        padding: 0 12px;
    }
}

/* ImÃ¡genes responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
}

/* Videos responsive */
video {
    max-width: 100%;
    height: auto;
}

/* Tablas responsive */
table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

/* Formularios responsive */
input,
textarea,
select,
button {
    max-width: 100%;
    box-sizing: border-box;
}

/* Fix para iframes */
iframe {
    max-width: 100%;
    border: 0;
}

/* =============================
   TIPOGRAFÃA RESPONSIVE Y OPTIMIZADA
   ============================= */

/* TipografÃ­a base responsive */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    text-rendering: optimizeLegibility;
    -webkit-font-feature-settings: "kern" 1, "liga" 1;
    font-feature-settings: "kern" 1, "liga" 1;
}

/* Escala tipogrÃ¡fica responsive */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

/* PÃ¡rrafos y texto base */
p, li, td, th {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Texto pequeÃ±o */
small, .small-text {
    font-size: clamp(0.75rem, 1.25vw, 0.875rem);
}

/* Texto grande */
.large-text {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
}

/* Optimizaciones para pantallas pequeÃ±as */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.125rem; }
    h6 { font-size: 1rem; }
    
    p, li, td, th {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* =============================
   LAYOUT RESPONSIVE MEJORADO
   ============================= */

/* Secciones principales */
section {
    width: 100%;
    position: relative;
    padding: clamp(2rem, 5vw, 5rem) 0;
}

/* Grid responsive mejorado */
.grid {
    display: grid;
    gap: clamp(1rem, 3vw, 2rem);
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

/* Flexbox responsive */
.flex {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2rem);
}

.flex-center {
    justify-content: center;
    align-items: center;
}

/* Espaciado responsive */
.spacing-small { margin: clamp(0.5rem, 2vw, 1rem) 0; }
.spacing-medium { margin: clamp(1rem, 3vw, 2rem) 0; }
.spacing-large { margin: clamp(2rem, 5vw, 4rem) 0; }

/* Padding responsive */
.padding-small { padding: clamp(0.5rem, 2vw, 1rem); }
.padding-medium { padding: clamp(1rem, 3vw, 2rem); }
.padding-large { padding: clamp(2rem, 5vw, 4rem); }

/* =============================
   FIXES ESPECÃFICOS PARA WEB
   ============================= */

/* Prevenir overflow horizontal en todos los elementos */
* {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Contenedores principales con lï¿½mites seguros y fondo continuo */
.producto-section,
.nosotros-section,
.contacto-section {
    width: 100vw;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    position: relative;
    background: linear-gradient(135deg, #faf7e8 0%, #f5f2e4 100%) !important;
    border: none !important;
}

/* Hero section mantiene su imagen de fondo */
.hero-section {
    width: 100vw;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    position: relative;
    border: none !important;
}

/* NavegaciÃ³n con tamaÃ±os fijos optimizados */
.nav-horizontal {
    height: clamp(60px, 8vw, 70px);
    padding: 0 clamp(15px, 3vw, 40px);
    width: 100vw;
    max-width: none;
    left: 0;
    right: 0;
}

.nav-horizontal .nav-logo {
    height: clamp(150px, 18vw, 200px) !important;
    max-height: 200px !important;
    width: auto;
}

/* BotÃ³n "Pedir ahora" responsive */
.btn-pedir-ahora {
    padding: clamp(8px 16px, 2vw, 12px 25px);
    font-size: clamp(0.8rem, 2vw, 1rem);
    top: clamp(10px, 2vw, 15px);
    right: clamp(10px, 2vw, 20px);
    z-index: 10000;
}

/* Media queries especÃ­ficas para resoluciÃ³n de conflictos */
@media screen and (max-width: 480px) {
    .nav-horizontal {
        height: 55px;
        padding: 0 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-horizontal .nav-logo {
        height: 110px;
        width: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
    }
    
    .btn-pedir-ahora {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Ajustar secciones para mÃ³vil */
    section {
        padding: 2rem 0;
    }
    
    .hero-section {
        min-height: 60vh;
        padding-top: 120px;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .nav-horizontal {
        height: 60px;
        padding: 0 15px;
    }
    
    .nav-horizontal .nav-logo {
        height: 120px;
    }
    
    .btn-pedir-ahora {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media screen and (min-width: 769px) {
    .nav-horizontal {
        height: 120px;
        padding: 0 60px;
        gap: 30px;
    }
    
    .nav-horizontal .nav-logo {
        height: 130px;
    }
    
    .btn-pedir-ahora {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Hamburguesa con tamaÃ±os optimizados */
.hamburger {
    width: clamp(35px, 6vw, 45px);
    height: clamp(30px, 5vw, 40px);
    top: clamp(12px, 2.5vw, 18px);
    right: clamp(12px, 3vw, 20px);
}

/* TÃ­tulos y texto con lÃ­mites seguros */
h1, h2, h3, h4, h5, h6 {
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

/* Formularios responsive mejorados */
.contacto-form input,
.contacto-form textarea,
.contacto-form select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: max(16px, 1rem); /* Prevenir zoom en iOS */
}

/* WhatsApp flotante responsive */
.whatsapp-float {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    bottom: clamp(20px, 3vw, 30px);
    right: 20px;
}

/* Optimizaciones para pantallas muy pequeÃ±as */
@media screen and (max-width: 320px) {
    .container,
    .nosotros-container,
    .producto-container,
    .contacto-container {
        padding: 0 8px;
    }
    
    .nav-horizontal {
        padding: 0 8px;
    }
    
    .hamburger {
        right: 8px;
        top: 10px;
        width: 35px;
        height: 30px;
    }
    
    .btn-pedir-ahora {
        right: 8px;
        top: 65px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Fix para pantallas muy grandes */
@media screen and (min-width: 1400px) {
    .container,
    .nosotros-container,
    .producto-container,
    .contacto-container {
        max-width: 1200px;
        padding: 0 20px;
    }
}

/* Mejoras de accesibilidad y rendimiento UX */
a, button {
    outline: 2px solid transparent;
    transition: outline 0.2s ease-in-out;
}

a:focus-visible, button:focus-visible {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
    border-radius: 4px;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

/* OptimizaciÃ³n de animaciones */
* {
    will-change: auto;
}

.nav-horizontal li a,
.hamburger,
.btn {
    will-change: transform, background-color, color;
}

/* TipografÃ­a optimizada */
h1, h2, h3, h4, h5, h6 {
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
}

/* Micro-interacciones avanzadas */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    z-index: 1;
}

.btn:active::before {
    width: 300px;
    height: 300px;
    transition: all 0.15s ease-out;
}

/* Estados de carga profesionales */
.btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
    cursor: wait;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: buttonSpin 0.8s linear infinite;
}

@keyframes buttonSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animaciones de entrada suaves */
.fade-in {
    animation: smoothFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes smoothFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

/* NavegaciÃ³n mÃ³vil premium */
@media (max-width: 768px) {
    .nav-menu {
        backdrop-filter: blur(25px) saturate(200%);
        -webkit-backdrop-filter: blur(25px) saturate(200%);
        background: linear-gradient(135deg, rgba(255,107,53,0.96) 0%, rgba(255,107,53,0.98) 100%);
        border: 1px solid rgba(255,255,255,0.25);
        box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 4px 16px rgba(0,0,0,0.15);
    }
    
    .nav-menu li {
        transform: translateX(-120%);
        opacity: 0;
        animation: slideInMobile 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    
    .nav-menu li a {
        transition: color 0.3s ease;
        padding: 16px 24px;
        border-radius: 12px;
        margin: 4px 0;
    }
    
    .nav-menu li a:hover {
        color: #d35400;
    }
    
    @keyframes slideInMobile {
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
}

/* Efectos de paralaje sutil */
.parallax-element {
    transform: translateZ(0);
    will-change: transform;
}

/* OptimizaciÃ³n de scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

/* Mejoras de contraste y legibilidad */
::selection {
    background: rgba(255, 107, 53, 0.2);
    color: #333;
}

::-moz-selection {
    background: rgba(255, 107, 53, 0.2);
    color: #333;
}

/* Estilos generales para pÃ¡rrafos */
p {
    margin: 20px 15px; /* 20px arriba/abajo, 15px izquierda/derecha */
}

/* Palabra 'Inicio' fija en la barra de navegaciÃ³n */
.nav-inicio {
  font-weight: 800;
  font-size: 1.3rem;
  color: #f3c851;
  margin-right: 0px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
}

/* =============================
   NAVEGACIÃ“N - ESTILOS PRINCIPALES
   ============================= */

/* Barra de navegaciÃ³n horizontal (Desktop) */
.nav-horizontal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0 60px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    gap: 30px;
}

/* Logo en la navegaciÃ³n */
.nav-horizontal .nav-logo {
    height: clamp(150px, 18vw, 200px) !important;
    width: auto;
    border-radius: 0;
    background: transparent;
}

/* Mejoras adicionales para logo mÃ³vil */
@media (max-width: 768px) {
    .nav-horizontal .nav-logo {
        height: clamp(180px, 20vw, 220px);
        border-radius: 0;
        background: transparent;
    }
}

/* Contenedor central para los enlaces */
.nav-horizontal .nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lista de navegaciÃ³n */
.nav-horizontal ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-horizontal li {
    margin: 0;
}

/* Enlaces de navegaciÃ³n */
.nav-horizontal li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 20px;
    border-radius: 25px;
    position: relative;
    transition: none !important; /* Eliminar cualquier transiciÃ³n */
    background: none !important; /* Asegurar que no haya fondo */
}

/* Efecto hover para los enlaces */
.nav-horizontal li a:hover {
    color: #d35400;
    background: none !important; /* Sin fondo en hover */
    transform: none !important; /* Sin transformaciones */
    box-shadow: none !important; /* Sin sombras */
}

/* Enlace activo */
.nav-horizontal li a.active {
    color: #d35400;
    font-weight: 700;
    background: none !important; /* Sin fondo para activo */
    box-shadow: none !important; /* Sin sombras para activo */
}

/* =============================
   NAVEGACIÃ“N MÃ“VIL
   ============================= */

/* MenÃº hamburguesa */
.hamburger {
    display: none;
    position: fixed;
    top: 10px;
    right: 20px;
    width: 45px;
    height: 40px;
    cursor: pointer;
    z-index: 99999;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px;
    background: transparent;
    border: none;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #2c3e50;
}

/* AnimaciÃ³n del hamburger cuando estÃ¡ activo */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
}

/* MenÃº desplegable mÃ³vil */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    backdrop-filter: blur(25px);
    border-left: 2px solid rgba(211, 84, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    padding-top: 120px;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

/* AnimaciÃ³n de entrada para los elementos del menÃº */
.nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
.nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
.nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    display: block;
    padding: 25px 35px;
    transition: all 0.3s ease;
    border-radius: 0 25px 25px 0;
    margin: 8px 0;
    position: relative;
    overflow: hidden;
}

.nav-menu a:hover {
    color: #d35400;
    background: rgba(211, 84, 0, 0.08);
    transform: translateX(10px);
}

/* Estilo para enlace activo */
.nav-menu a.active {
    color: #d35400;
    background: rgba(211, 84, 0, 0.15);
    font-weight: 700;
    border-left: 4px solid #d35400;
    transform: translateX(8px);
    box-shadow: 0 2px 8px rgba(211, 84, 0, 0.2);
}

.nav-horizontal a.active {
    color: #d35400;
    font-weight: 700;
}

.nav-horizontal a.active::after {
    width: 100%;
}

/* Overlay para cerrar el menÃº */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9997;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}



/* =============================
   MEDIA QUERIES - NAVEGACIÃ“N RESPONSIVE
   ============================= */

/* Desktop - Mostrar navegaciÃ³n horizontal, ocultar hamburguesa */
@media (min-width: 769px) {
    .nav-horizontal {
        display: flex !important;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .nav-overlay {
        display: none !important;
    }
}

/* Tablet y MÃ³vil */
@media (max-width: 768px) {
    /* Ocultar navegaciÃ³n horizontal */
    .nav-horizontal {
        height: 80px;
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-horizontal .nav-center {
        display: none !important;
    }
    
    .nav-horizontal .nav-logo {
        height: 160px;
        width: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
    }
    
    /* Mostrar hamburguesa */
    .hamburger {
        display: flex !important;
    }
    
    /* Ajustar secciones para compensar la barra de navegaciÃ³n */
    .hero-section {
        margin-top: 120px;
        padding-top: 40px;
    }
    
    /* MenÃº mÃ³vil mÃ¡s pequeÃ±o */
    .nav-menu {
        width: 280px;
        padding-top: 120px;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 20px 30px;
    }
}

/* MÃ³vil pequeÃ±o */
@media (max-width: 480px) {
    .nav-horizontal {
        height: 65px;
        padding: 0 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-horizontal .nav-logo {
        height: 140px;
        width: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
    }
    
    .hamburger {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 35px;
        z-index: 1000;
    }
    
    .hamburger span {
        height: 2.5px;
    }
    
    .nav-menu {
        width: 100vw;
        padding-top: 120px;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 18px 25px;
    }
    
    .hero-section {
        margin-top: 120px;
        padding-top: 30px;
    }
}

/* Efectos adicionales de navegaciÃ³n */
@media (hover: hover) {
    .nav-horizontal li a:hover {
        transform: translateY(-3px);
    }
}

/* Reducir animaciones en dispositivos con preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .nav-horizontal li a,
    .hamburger span,
    .nav-menu,
    .nav-menu li,
    .nav-overlay {
        transition: none;
    }
}

/* Ajustar la secciÃ³n hero para que tenga posiciÃ³n relativa */
.hero-section {
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 140px !important;
    text-align: center !important;
}

/* Contenido principal del hero */
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 100;
}

/* TÃ­tulo principal del hero */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* SubtÃ­tulo del hero */
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #f3c851;
    line-height: 1.4;
    margin: 20px 0 0 0;
    font-family: 'Poppins', sans-serif;
}

/* Mostrar imagen en desktop */
.hero-mobile-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 400px;
    margin: 0 auto;
}

/* Asegurar que las secciones ocupen toda la pantalla */
section {
    scroll-margin-top: 0;
    min-height: 0;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#inicio {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
/* ...existing code... */
/* Estilos destacados para hero features y botones */
.hero-features {
    display: flex;
    gap: 12px;
    margin: 18px 0;
    flex-wrap: wrap;
}
.feature-badge {
    background: linear-gradient(90deg, #e67e22 0%, #f3c851 100%);
    color: #222;
    font-weight: bold;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid #fff;
    letter-spacing: 0.5px;
    transition: transform 0.2s;
}
.feature-badge:hover {
    transform: scale(1.08);
    background: linear-gradient(90deg, #f3c851 0%, #e67e22 100%);
    color: #d35400;
}
.btn-hero-primary {
    background: #e67e22;
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    padding: 12px 32px;
    font-size: 1.2em;
    box-shadow: 0 2px 12px rgba(230,126,34,0.15);
    border: none;
    margin-right: 12px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-shadow: 1px 1px 2px #b9770e;
}
.btn-hero-primary:hover {
    background: #f3c851;
    color: #e67e22;
    transform: scale(1.05);
}
.btn-hero-secondary {
    background: #fff;
    color: #e67e22;
    font-weight: bold;
    border-radius: 30px;
    padding: 12px 32px;
    font-size: 1.2em;
    box-shadow: 0 2px 12px rgba(230,126,34,0.10);
    border: 2px solid #e67e22;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-shadow: 1px 1px 2px #f3c851;
}
.btn-hero-secondary:hover {
    background: #e67e22;
    color: #fff;
    transform: scale(1.05);
}

/* SecciÃ³n Hero */
.hero-section {
    position: relative;
    min-height: calc(100vh - 70px);
    margin-top: 70px;
    overflow: hidden;
    background: url('papa21.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* .hero-section::before eliminado temporalmente para mostrar imagen */



/* Fallback para imÃ¡genes que no cargan */
.hero-background {
    background-color: #f0f0f0;
    min-height: 180px;
}
*/

/* Ocultar tÃ­tulo dinÃ¡mico - ya no se usa */
.titulo-dinamico {
    display: none !important;
}

.titulo-dinamico.shrink {
    display: none !important;
}
  
/* SecciÃ³n Imagen Secundaria */
.imagen-secundaria {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0vh; /* Altura completa */
    height: auto;
}

.imagen-extra {
  max-width: 600px; /* Limitar el ancho mÃ¡ximo */
  width: 90%; /* Responsive */
  height: auto;
  display: block;
  object-fit: contain; /* Mantener proporciones sin recortar */
  border-radius: 15px; /* Bordes redondeados */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Sombra elegante */
  background-color: #f0f0f0; /* Color de fondo si la imagen no carga */
  transition: transform 0.3s ease; /* Efecto hover suave */
}

.imagen-extra:hover {
  transform: scale(1.02); /* Efecto hover sutil */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive para imagen secundaria */
@media (max-width: 768px) {
  .imagen-secundaria {
    padding: 40px 15px;
    min-height: 0vh;
  }
}

@media (max-width: 480px) {
  .imagen-secundaria {
    padding: 30px 10px;
    min-height: 0vh;
  }
  
  .imagen-extra {
    border-radius: 8px;
  }
}

/* MenÃº hamburguesa - SOLO MÃ“VIL */
.hamburger {
    display: none !important;
}

@media (max-width: 768px) {
    .hamburger {
        position: fixed !important;
        top: 15px !important;
        right: 20px !important;
        width: 50px !important;
        height: 45px !important;
        cursor: pointer !important;
        z-index: 999999 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 8px !important;
        transition: none !important;
        transform: none !important;
        margin: 0 !important;
        border: 0 !important;
        background: transparent !important;
        left: auto !important;
        bottom: auto !important;
        box-sizing: border-box !important;
    }
}

/* Hover eliminado para evitar interferencias */

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background-color: #2c3e50;
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger:hover span {
    background-color: #d35400;
}

.hamburger:active {
    transform: none;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: #d35400;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    background-color: #d35400;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
    background-color: #d35400;
}

/* MenÃº desplegable mejorado */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    backdrop-filter: blur(25px);
    border-left: 1px solid rgba(211, 84, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    padding-top: 100px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    right: 0;
    animation: slideInRight 0.4s ease-out;
}

@keyframes slideInRight {
    from {
        right: -280px;
        opacity: 0;
    }
    to {
        right: 0;
        opacity: 1;
    }
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    display: block;
    padding: 20px 30px;
    transition: color 0.3s ease;
    border-radius: 0 25px 25px 0;
    margin: 5px 0;
}

.nav-menu a:hover {
    color: #d35400;
}

/* AnimaciÃ³n de entrada minimalista */
.nav-menu.active li {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

.nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu.active li:nth-child(2) { animation-delay: 0.15s; }
.nav-menu.active li:nth-child(3) { animation-delay: 0.2s; }
.nav-menu.active li:nth-child(4) { animation-delay: 0.25s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    /* Hamburger settings handled by main rule */
    
    .hamburger span {
        height: 4px !important; /* Mantener grosor */
        background-color: #000000 !important;
    }
}

/* Estilos base para mÃ³viles */
html, body {
    width: 100%;
    overflow-x: hidden;
}

/* Franja amarilla mÃ³vil */
.mobile-yellow-strip {
    position: fixed !important;
    top: 0px !important; /* PosiciÃ³n fija sin cambios */
    left: 0;
    width: 450px; 
    height: 65px;
    background: linear-gradient(90deg, #f3c851, #f3c851, #f3c851);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(243, 200, 81, 0.3);
    display: none;
    /* Removida la transiciÃ³n para que no se mueva */
}

/* Media queries para dispositivos mÃ³viles */
@media (max-width: 768px) {
    .mobile-yellow-strip {
        display: block; /* Mostrar solo en mÃ³viles */
    }
    
    /* Main hamburger rule handles all positioning - no overrides needed */
    
    .nav-menu {
        width: 100vw;
        padding-top: 80px;
    }
    
    .nav-menu a {
        font-size: 1.4rem;
        padding: 25px 30px;
    }
    
    .hero-section {
        height: 60vh; /* Reducido para mÃ³viles */
        width: 100vw;
        background: transparent; /* Sin fondo de respaldo para que no se vea gris */
        background-attachment: scroll; /* En mÃ³viles usar scroll en lugar de fixed */
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    /* Pseudo-elemento para la imagen rotada solo en mÃ³viles */
    .hero-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('papa21.jpg');
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        transform: rotate(90deg);
        transform-origin: center center;
        z-index: 0;
        width: 100vh;
        height: 100vw;
        left: 50%;
        top: 50%;
        right: auto;
        bottom: auto;
        margin-left: -50vh;
        margin-top: -50vw;
    }
    
    /* Ajustar la capa semitransparente para mÃ³viles */
    .hero-section::before {
        z-index: 1; /* Por encima de la imagen rotada */
    }
    
    /* Imagen de fondo removida - estilos mÃ³viles deshabilitados
    .hero-background {
        width: 100%;
        height: 60vh;
        object-fit: cover;
        object-position: center 40%;
    }
    */
    
    .imagen-secundaria {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Hamburger handled by main rule */
    
    .hamburger span {
        height: 4px !important;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 20px 25px;
    }
}

/* BotÃ³n "Pedir ahora" */
.btn-pedir-ahora {
    background: #f3c851;
    color: #2c3e50;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

/* Responsive para el botÃ³n en mÃ³viles */
@media (max-width: 768px) {
    .btn-pedir-ahora {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.btn-pedir-ahora:hover {
    transform: translateY(-2px);
    background: #f3c851;
    color: #1a252f;
}

.btn-pedir-ahora:active {
    transform: translateY(0px);
    transition: transform 0.1s ease;
}

.btn-pedir-ahora .btn-text {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-pedir-ahora .btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-pedir-ahora:hover .btn-icon {
    transform: scale(1.1);
}

/* Icono WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, #2EE56F, #25D366);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    color: white;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
}

/* AnimaciÃ³n de pulso para el icono */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive para mÃ³viles */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
    }
    
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}

/* SecciÃ³n de Contacto - DiseÃ±o Elegante */
.contacto-section {
    padding: 20px 20px;
    background: linear-gradient(135deg, #faf7e8 0%, #f5f2e4 100%);
    min-height: 0vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacto-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.contacto-section h2 {
    text-align: center;
    font-size: 3.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #d35400;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.contacto-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d35400, #e67e22);
    border-radius: 2px;
}

/* Grid de informaciÃ³n de contacto */
.contacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contacto-info-section {
    background: transparent;
    padding: 20px;
    text-align: center;
}

.contacto-info-section h3 {
    color: #d35400;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contacto-info-section p {
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.contacto-info-section a {
    color: #d35400;
    text-decoration: none;
    font-weight: bold;
}

.contacto-info-section a:hover {
    color: #e67e22;
    text-decoration: underline;
}

/* SecciÃ³n del formulario */
.contacto-form-section {
    background: transparent;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 25px;
}

.form-subtitle {
    text-align: center;
    color: #6c757d;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

.contacto-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.input-group {
    margin-bottom: 15px;
}

.contacto-form input,
.contacto-form textarea,
.contacto-form select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
    background: transparent;
    color: #333;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
    color: #999;
}

.contacto-form input:focus,
.contacto-form textarea:focus,
.contacto-form select:focus {
    outline: none;
    border: none;
    border-bottom: 2px solid #d35400;
    background: transparent;
}

.contacto-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 14px;
    padding-right: 35px;
}

/* Checkboxes y Radio Buttons */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.3;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    display: none;
}

.checkmark,
.radiomark {
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #ffffff;
    position: relative;
    flex-shrink: 0;
}

.radiomark {
    border-radius: 50%;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark,
.radio-label input[type="radio"]:checked + .radiomark {
    background: #d35400;
    border-color: #d35400;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: 'âœ“';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.radio-label input[type="radio"]:checked + .radiomark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.3;
}

/* Tipo de cliente */
.tipo-cliente {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tipo-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #666;
    margin: 0;
}

.checkbox-inline-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.checkbox-label.inline {
    margin-bottom: 0;
    font-size: 13px;
}

/* BotÃ³n de envÃ­o */
.btn-enviar {
    width: 120px;
    padding: 12px 20px;
    background: #d35400;
    border: none;
    border-radius: 4px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    display: block;
    margin: 20px auto 0;
}

.btn-enviar:hover {
    background: #e67e22;
}

/* SecciÃ³n WhatsApp */
.whatsapp-section {
    text-align: center;
}

.btn-whatsapp-contact {
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-whatsapp-contact:hover {
    background: #128C7E;
}

/* Responsive design */
@media (max-width: 768px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contacto-section h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .contacto-form-section {
        padding: 25px;
    }
    
    .contacto-info-section {
        padding: 20px;
    }
}

/* Franja MisiÃ³n y VisiÃ³n dentro de Nosotros */
.mision-vision-container {
    background: linear-gradient(90deg, #ffa72f 0%, #ff8b07 50%, #f96e00 50%, #d35400 100%);
    padding: 60px 20px;
    margin: 80px 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mision-item,
.vision-item {
    padding: 60px 40px;
    text-align: center;
    color: #2c3e50;
    transition: all 0.3s ease;
    max-width: 600px;
    margin: 0 auto;
}

.mision-item:hover,
.vision-item:hover {
    transform: translateY(-8px);
    filter: brightness(1.05);
}

.mision-item h3,
.vision-item h3 {
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-shadow: none;
}

.mision-item p,
.vision-item p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    text-align: left;
    margin: 0;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
}

/* Estilos especÃ­ficos para mision-item con imagen de fondo */
.mision-item {
    position: relative;
}

.mision-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('mision.png');
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
    opacity: 0.4;
    border-radius: inherit;
}

.mision-item h3,
.mision-item p {
    position: relative;
    z-index: 2;
    color: white;
}

/* Estilos especÃ­ficos para vision-item con imagen de fondo */
.vision-item {
    position: relative;
}

.vision-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('vision.png');
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.4;
    border-radius: inherit;
}

.vision-item h3,
.vision-item p {
    position: relative;
    z-index: 2;
    color: white;
}

/* Efectos de entrada */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mision-item {
    animation: slideInLeft 0.8s ease-out;
}

.vision-item {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

/* Responsive para la franja dentro de Nosotros */
@media (max-width: 768px) {
    .mision-vision-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 40px 20px;
        margin: 60px 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        width: 100%;
    }
    
    .mision-item,
    .vision-item {
        padding: 40px 25px;
        max-width: 100%;
    }
    
    .mision-item h3,
    .vision-item h3 {
        font-size: 1.8rem;
    }
    
    .mision-item p,
    .vision-item p {
        font-size: 1rem;
        text-align: left;
    }
    
    .mision-item,
    .vision-item {
        animation: slideInLeft 0.6s ease-out;
    }
}

@media (max-width: 480px) {
    .mision-vision-container {
        padding: 30px 15px;
        margin: 50px 0;
        border-radius: 0;
        width: 100%;
    }
    
    .mision-item,
    .vision-item {
        padding: 30px 20px;
    }
    
    .mision-item h3,
    .vision-item h3 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .mision-item p,
    .vision-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* SecciÃ³n Calidad */
.calidad-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    min-height: 0vh;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.calidad-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.calidad-section h2 {
    font-size: 4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: #d35400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.calidad-section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #d35400, #e67e22, #f3c851);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(211, 84, 0, 0.3);
}

/* Responsive para la secciÃ³n Calidad */
@media (max-width: 768px) {
    .calidad-section {
        padding: 80px 15px;
    }
    
    .calidad-section h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .calidad-section h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
}

/* Estilos adicionales para mÃ³vil desde HTML embebido */
@media (max-width: 768px) {
    /* Ocultar el banner superior en mÃ³vil */
    .top-header {
        display: none !important;
    }
    
    /* Asegurar que hamburguesa y logo estÃ©n perfectamente alineados */
    /* Hamburger handled by main rule */
    
    .hero-mobile-image {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 1 !important;
    }
    
    section.hero-section {
        position: relative !important;
        min-height: 60vh !important;
        height: 60vh !important;
        display: block !important;
        overflow: hidden !important;
    }
    
    /* Ajustar el tÃ­tulo principal en mÃ³vil */
    .hero-title {
        font-size: 1.8rem !important;
        padding: 20px !important;
        margin-top: 80px !important;
        color: #fff !important;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.8) !important;
        background: rgba(0,0,0,0.4) !important;
        border-radius: 10px !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    /* Ajustar el subtÃ­tulo en mÃ³vil */
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin: 15px 0 0 0 !important;
        padding: 15px !important;
        background: rgba(243, 200, 81, 0.9) !important;
        color: #2c3e50 !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        text-shadow: none !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .hero-content {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        z-index: 10 !important;
    }
}

/* FOOTER OPTIMIZADO PARA SEO */
.footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #f3c851;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #dee2e6 20%, #dee2e6 80%, transparent 100%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* InformaciÃ³n de la empresa con Schema */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: brightness(1.1);
}

.company-info h3 {
    color: #d35400;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0.5rem 0;
    font-family: 'Rubik', sans-serif;
}

.footer-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.business-info {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
}

.business-info address {
    font-style: normal;
    display: inline;
}

/* NavegaciÃ³n del footer */
.footer-nav h4 {
    color: #d35400;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Rubik', sans-serif;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 0.7rem;
}

.footer-nav ul li a {
    color: #495057;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav ul li a:hover {
    color: #f3c851;
    padding-left: 5px;
}

/* Servicios */
.footer-services h4 {
    color: #d35400;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Rubik', sans-serif;
}

.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services ul li {
    margin-bottom: 0.7rem;
}

.footer-services ul li a {
    color: #495057;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-services ul li a:hover {
    color: #f3c851;
    padding-left: 5px;
}

/* InformaciÃ³n de contacto optimizada */
.footer-contact h4 {
    color: #d35400;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Rubik', sans-serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #495057;
}

.contact-icon {
    width: 20px;
    font-size: 1rem;
    text-align: center;
    color: #f3c851;
}

.contact-item a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #d35400;
}

/* LÃ­nea divisoria */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #dee2e6 20%, #dee2e6 80%, transparent 100%);
    margin: 2rem 0 1.5rem;
}

/* SecciÃ³n inferior optimizada */
.footer-bottom {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.footer-legal-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.copyright p {
    margin: 0;
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
}

.footer-tagline {
    color: #d35400;
    font-weight: 600;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.legal-links a {
    color: #495057;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #d35400;
}

.separator {
    color: #adb5bd;
    font-size: 0.8rem;
}

/* Redes sociales optimizadas */
.footer-social {
    text-align: right;
}

.footer-social h4 {
    color: #d35400;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Rubik', sans-serif;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 2px solid #f3c851;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background: #f3c851;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(243, 200, 81, 0.3);
}

.social-links a:hover svg path {
    fill: #2c3e50;
}

.social-links svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-main {
        gap: 1.5rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .social-links svg {
        width: 20px;
        height: 20px;
    }
}

/* =============================
   SecciÃ³n Nosotros - Estilos
   ============================= */
.nosotros-section {
    padding: 20px 20px 20px 20px;
    background: linear-gradient(135deg, #faf7e8 0%, #f5f2e4 100%);
    min-height: 0vh;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.nosotros-section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #d35400, #e67e22, #f3c851);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(211, 84, 0, 0.3);
}

.nosotros-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.nosotros-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d35400, #e67e22, #f3c851, #e67e22, #d35400);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.nosotros-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #34495e;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
    margin-bottom: 30px;
}

.nosotros-text:first-child {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2c3e50;
}

/* Destacados de la empresa */
.nosotros-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(211, 84, 0, 0.1);
}
.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(211, 84, 0, 0.3);
}
.highlight-icon {
    font-size: 3rem;
    color: #d35400;
    margin-bottom: 20px;
    display: block;
}
.highlight-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.highlight-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Responsive para la secciÃ³n Nosotros */
@media (max-width: 768px) {
    .nosotros-section {
        padding: 80px 15px;
    }
    .nosotros-section h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    .nosotros-subtitle {
        font-size: 1.4rem;
        margin-bottom: 40px;
        letter-spacing: 1px;
    }
    .nosotros-content {
        padding: 40px 30px;
        margin-bottom: 30px;
    }
    .nosotros-text {
        font-size: 1.1rem;
        text-align: left;
    }
    .nosotros-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    .highlight-item {
        padding: 25px 20px;
    }
    .highlight-icon {
        font-size: 2.5rem;
    }
    .highlight-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nosotros-section h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    .nosotros-subtitle {
        font-size: 1.2rem;
    }
    .nosotros-content {
        padding: 30px 20px;
    }
    .nosotros-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    .highlight-item {
        padding: 20px 15px;
    }
}

/* Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.95), rgba(230, 126, 34, 0.95));
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    z-index: 10000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    font-family: 'Poppins', sans-serif;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
}

.cookie-link {
    color: #f3c851;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-link:hover {
    color: #fff;
}

.cookie-btn {
    background: #f3c851;
    color: #2c3e50;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: #f3c851;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 200, 81, 0.4);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 15px 18px;
        border-radius: 10px;
    }
    
    .cookie-banner p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        width: auto;
        padding: 10px 24px;
        min-width: 120px;
    }
}

/* REGLA FINAL - MÃXIMA PRIORIDAD PARA HAMBURGER */
/* Mostrar en mÃ³viles */
@media (max-width: 768px) {
    .hamburger {
        position: fixed !important;
        top: 15px !important;
        right: 20px !important;
        left: auto !important;
        bottom: auto !important;
        width: 50px !important;
        height: 45px !important;
        z-index: 999999 !important;
        transform: none !important;
        transition: none !important;
        margin: 0 !important;
        padding: 8px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        box-sizing: border-box !important;
        cursor: pointer !important;
        background: transparent !important;
    }
}

/* Ocultar en desktop */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
}

/* =============================
   SCROLLSPY STYLES
   ============================= */

/* NavegaciÃ³n con scroll activo */
.nav-horizontal.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

/* Smooth scroll para todas las secciones */
html {
    scroll-behavior: smooth;
}

/* Asegurar que las secciones tengan el offset correcto */
section {
    scroll-margin-top: 140px;
}

/* AnimaciÃ³n para transiciones de enlaces activos */
.nav-horizontal li a,
.nav-menu a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Indicador de progreso de scroll (opcional) */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #d35400, #e67e22);
    z-index: 10001;
    transition: width 0.2s ease;
}

/* Estados hover mejorados para enlaces con ScrollSpy */
.nav-horizontal li a:hover:not(.active) {
    color: #2c3e50;
    background: rgba(211, 84, 0, 0.05);
}

.nav-menu a:hover:not(.active) {
    background: rgba(211, 84, 0, 0.08);
    transform: translateX(5px);
}

/* =============================
   MODAL POLÃTICA DE PRIVACIDAD
   ============================= */

/* Overlay del modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    padding: 20px;
}

/* Contenido del modal */
.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Header del modal */
.modal-header {
    background: #000000;
    color: white;
    padding: 20px 25px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

/* BotÃ³n cerrar */
.modal-close {
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
    position: relative;
    z-index: 999999;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Cuerpo del modal */
.modal-body {
    padding: 25px;
    color: #000000;
    line-height: 1.6;
}

.fecha-actualizacion {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-align: center;
}

.intro-modal {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #000000;
}

.intro-modal p {
    margin: 0;
    font-size: 1rem;
}

.seccion-modal {
    margin-bottom: 25px;
}

.seccion-modal h3 {
    color: #000000;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.seccion-modal p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #333;
}

.seccion-modal ul {
    margin-left: 18px;
    margin-bottom: 12px;
}

.seccion-modal li {
    margin-bottom: 6px;
    color: #333;
    font-size: 0.95rem;
}

.contacto-modal {
    background: #000000;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 25px;
}

.contacto-modal h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.contacto-modal p {
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Responsive para modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
        z-index: 999999;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 15px 20px;
        position: relative;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
        padding-right: 60px;
    }
    
    .modal-close {
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        font-size: 1.8rem;
        min-width: 50px;
        min-height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .intro-modal {
        padding: 15px;
    }
    
    .contacto-modal {
        padding: 15px;
    }
}

/* ========================================
   ANIMACIONES PARA TARJETAS DE BENEFICIOS
   ======================================== */

/* Efecto zoom lento para imÃ¡genes en tarjetas */
.feature img,
.highlight-item img,
.producto-features img {
    transition: transform 0.8s ease-in-out;
    transform-origin: center;
}

.feature:hover img,
.highlight-item:hover img,
.producto-features:hover img {
    transform: scale(1.1);
}

/* AnimaciÃ³n slide up para features */
@keyframes slideUpFeature {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AnimaciÃ³n slide up para highlights */
@keyframes slideUpHighlight {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BRANDING SUAVE - ELEMENTOS DECORATIVOS
   ======================================== */

/* Responsive branding */
@media (max-width: 768px) {
}

@media (max-width: 480px) {
}

/* Estilos para mejorar la interacciÃ³n modal-hamburguesa */
body:has(.modal-overlay[style*="flex"]) .hamburger {
    z-index: 99998;
    opacity: 0.3;
    pointer-events: none;
}

/* Alternativa usando clase JavaScript */
body.modal-open .hamburger {
    z-index: 99998;
    opacity: 0.3;
    pointer-events: none;
}

/* Asegurar que el modal estÃ© siempre encima */
.modal-overlay {
    z-index: 999999 !important;
}

.modal-content {
    position: relative;
    z-index: 1000000;
}

.modal-close {
    z-index: 1000001 !important;
}

/* =============================
   ESPECIFICACIONES TÉCNICAS - Imagen en la cabecera
   Coloca la imagen 'papafrita.jpg' delante del título de la sección
   Selecciona por id (#especificaciones), por sección (.especificaciones-section)
   o aplicando la clase utilitaria '.h2-con-imagen' al <h2>.
   ============================= */

.especificaciones-section h2,
.especificaciones-section h3,
.producto-details h3,
#producto .producto-details h3,
#especificaciones h2,
#especificaciones h3,
.h2-con-imagen {
    position: relative;
    padding-left: 84px; /* espacio para la imagen */
}

.especificaciones-section h2::before,
.especificaciones-section h3::before,
.producto-details h3::before,
#producto .producto-details h3::before,
#especificaciones h2::before,
#especificaciones h3::before,
.h2-con-imagen::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    /* Intentar papafrita.jpg; si no existe, usar papa21.jpg como fallback visual */
    background-image: url('papafrita.jpg'), url('papa21.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .especificaciones-section h2,
    .especificaciones-section h3,
    .producto-details h3,
    #producto .producto-details h3,
    #especificaciones h2,
    #especificaciones h3,
    .h2-con-imagen {
        padding-left: 68px;
    }
    .especificaciones-section h2::before,
    .especificaciones-section h3::before,
    .producto-details h3::before,
    #producto .producto-details h3::before,
    #especificaciones h2::before,
    #especificaciones h3::before,
    .h2-con-imagen::before {
        width: 56px;
        height: 56px;
        border-radius: 6px;
    }
}

    .especificaciones-section h2::before,
    .especificaciones-section h3::before,
    .producto-details h3::before,
    #producto .producto-details h3::before,
    #especificaciones h2::before,
    #especificaciones h3::before,
    .h2-con-imagen::before {
        width: 44px;
        height: 44px;
        left: 6px;
    }



/* Centrar la imagen papafrita.jpg */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

.image-container img {
    display: block;
    margin: 0 auto;
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* =============================
   INFORMACIÓN NUTRICIONAL
   ============================= */

.nutricional-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    margin: 40px 0;
    border: 2px solid #f3c851;
    position: relative;
    overflow: hidden;
}

.nutricional-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d35400, #e67e22, #f3c851, #e67e22, #d35400);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.nutricional-section h3 {
    font-size: 2.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: #d35400;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.nutricional-section h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #d35400, #e67e22, #f3c851);
    border-radius: 2px;
}

.nutricional-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #7f8c8d;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.nutricional-table {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.nutricional-row-horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(243, 200, 81, 0.3);
}

.nutricional-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 16px;
    background: rgba(243, 200, 81, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(243, 200, 81, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
    flex: 1;
    max-width: 140px;
}

.nutricional-item:hover {
    background: rgba(243, 200, 81, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: rgba(243, 200, 81, 0.5);
}

.nutricional-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    margin-bottom: 4px;
    line-height: 1.2;
}

.nutricional-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #d35400;
    font-size: 1.1rem;
    line-height: 1.2;
}

/* Responsive para información nutricional */
@media (max-width: 768px) {
    .nutricional-section {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .nutricional-section h3 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .nutricional-subtitle {
        font-size: 0.9rem;
    }
    
    .nutricional-row-horizontal {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .nutricional-item {
        min-width: 100%;
        max-width: 100%;
        padding: 10px 12px;
    }
    
    .nutricional-item {
        width: 100%;
        gap: 10px;
    }
    
    .nutricional-label {
        font-size: 0.95rem;
    }
    
    .nutricional-value {
        font-size: 1rem;
        text-align: left;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .nutricional-section {
        padding: 25px 15px;
        margin: 25px 0;
    }
    
    .nutricional-section h3 {
        font-size: 1.6rem;
    }
    
    .nutricional-row-horizontal {
        padding: 14px;
        gap: 10px;
    }

    .nutricional-item {
        padding: 8px 10px;
        min-width: 100%;
        max-width: 100%;
    }
}