/* =============================
   Sección Nosotros - Estilos
   ============================= */
.nosotros-section {
    padding: 80px 20px 20px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 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, #f39c12);
    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, #f39c12, #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: 80px 20px;
    background: linear-gradient(135deg, #fffbe6 0%, #fff7d6 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: #b97a00;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(185, 122, 0, 0.08);
}

.producto-section h2::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, #b97a00, #f3c851, #b97a00);
    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: #7a5a1a;
    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: #b97a00;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.producto-text p {
    font-size: 1.1rem;
    color: #5a4a2a;
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;
}

.producto-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 10px;
}

.feature {
    background: #fff9e0;
    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;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

.feature h4 {
    font-size: 1.1rem;
    color: #b97a00;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.feature p {
    font-size: 0.98rem;
    color: #7a5a1a;
    margin: 0;
}

/* Destacados del producto */
.producto-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.highlight-item {
    background: #fff9e0;
    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: transform 0.2s, box-shadow 0.2s;
}
.highlight-item:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 10px 30px rgba(185, 122, 0, 0.18);
}
.highlight-icon {
    font-size: 2.2rem;
    color: #b97a00;
    margin-bottom: 10px;
    display: block;
}
.highlight-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #7a5a1a;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.highlight-item p {
    font-size: 0.98rem;
    color: #5a4a2a;
    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: #ffffff;
    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 */
.hero-section,
.producto-section,
.nosotros-section,
.contacto-section {
    width: 100vw;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    position: relative;
}

/* 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(35px, 6vw, 50px);
    max-height: 50px;
    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: 42px;
        width: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
    }
    
    .btn-pedir-ahora {
        padding: 8px 16px;
        font-size: 0.85rem;
        top: 70px;
        right: 12px;
    }
    
    /* Ajustar secciones para móvil */
    section {
        padding: 2rem 0;
    }
    
    .hero-section {
        min-height: 60vh;
        padding-top: 80px;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .nav-horizontal {
        height: 60px;
        padding: 0 15px;
    }
    
    .nav-horizontal .nav-logo {
        height: 40px;
    }
    
    .btn-pedir-ahora {
        padding: 10px 20px;
        font-size: 0.9rem;
        top: 75px;
        right: 15px;
    }
}

@media screen and (min-width: 769px) {
    .nav-horizontal {
        height: 70px;
        padding: 0 40px;
    }
    
    .nav-horizontal .nav-logo {
        height: 50px;
    }
    
    .btn-pedir-ahora {
        padding: 12px 25px;
        font-size: 1rem;
        top: 15px;
        right: 20px;
    }
}

/* 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);
    left: 50%;
    transform: translateX(-50%);
}

/* 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: 80px;
}

/* 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: #b97a00;
  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: 70px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    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 40px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

/* Logo en la navegación */
.nav-horizontal .nav-logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.nav-horizontal .nav-logo:hover {
    transform: scale(1.05);
}

/* Mejoras adicionales para logo móvil */
@media (max-width: 768px) {
    .nav-horizontal .nav-logo {
        transition: all 0.3s ease;
        border-radius: 8px;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }
    
    .nav-horizontal .nav-logo:hover {
        transform: translateX(-50%) scale(1.02);
    }
}

/* Contenedor central para los enlaces */
.nav-horizontal .nav-center {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

/* Lista de navegación */
.nav-horizontal ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
    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;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Efecto hover para los enlaces */
.nav-horizontal li a:hover {
    color: #d35400;
    background: rgba(211, 84, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.2);
}

/* Efecto de onda al hacer click */
.nav-horizontal li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(211, 84, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
}

.nav-horizontal li a:active::before {
    width: 200px;
    height: 200px;
}

/* Enlace activo */
.nav-horizontal li a.active {
    color: #d35400;
    background: rgba(211, 84, 0, 0.15);
    font-weight: 700;
}

/* =============================
   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;
    transition: transform 0.3s ease;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger:hover span {
    background: #d35400;
    box-shadow: 0 0 8px rgba(211, 84, 0, 0.4);
}

/* Animación del hamburger cuando está activo */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #d35400;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
    background: #d35400;
}

/* 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: 100px;
    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 {
    padding: 0;
    border-bottom: 1px solid rgba(211, 84, 0, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.nav-menu li:last-child {
    border-bottom: none;
}

/* 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::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: #d35400;
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #d35400;
    background: rgba(211, 84, 0, 0.08);
    transform: translateX(10px);
}

.nav-menu a:hover::before {
    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: 45px;
        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: 80px;
        padding-top: 40px;
    }
    
    /* Menú móvil más pequeño */
    .nav-menu {
        width: 280px;
        padding-top: 90px;
    }
    
    .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: 42px;
        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: 80px;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 18px 25px;
    }
    
    .hero-section {
        margin-top: 70px;
        padding-top: 30px;
    }
}

/* Efectos adicionales de navegación */
@media (hover: hover) {
    .nav-horizontal li a:hover {
        transform: translateY(-3px);
    }
    
    .hamburger:hover {
        transform: scale(1.1);
    }
}

/* 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: 100px !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;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    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;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    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... */

/* Sección Hero */
.hero-section {
    position: relative;
    min-height: calc(100vh - 70px);
    margin-top: 70px;
    overflow: hidden;
    background: #f8f9fa;
    background-image: url('papa21.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3); /* Capa semi-transparente para mejor legibilidad */
  z-index: 1;
}



/* 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);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.hamburger:hover span {
    background-color: #d35400;
    box-shadow: 0 2px 8px rgba(211, 84, 0, 0.3);
}

.hamburger:active {
    transform: scale(0.95);
}

.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 li {
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-menu li:last-child {
    border-bottom: none;
}

.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, #e6b800, #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 {
    position: fixed !important;
    top: 15px !important;
    right: 20px !important;
    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;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(243, 200, 81, 0.4);
    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 {
        top: 75px !important;
        right: 15px !important;
        padding: 10px 20px;
        font-size: 0.9rem;
        z-index: 999;
    }
}

.btn-pedir-ahora:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(243, 200, 81, 0.8);
    background: linear-gradient(135deg, #f3c851, #e6b800);
    color: #1a252f;
}

.btn-pedir-ahora:active {
    transform: translateY(-1px) scale(1.02);
    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.2);
}

/* Icono WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateX(-50%) translateY(-5px) scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #2EE56F, #25D366);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* 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: 0 20px;
    background: #ffffff;
    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 -20px;
    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: calc(100% + 40px);
}

.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 -20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        width: calc(100% + 40px);
    }
    
    .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 -20px;
        border-radius: 0;
        width: calc(100% + 40px);
    }
    
    .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 Nosotros - Diseño Elegante */
.nosotros-section {
    padding: 80px 20px 20px 20px; /* Padding normal, no tan extremo */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 0vh;
    height: auto; /* Cambio de 100vh a auto para permitir contenido dinámico */
    display: flex;
    align-items: flex-start; /* Cambio a flex-start para evitar centrado extremo */
    justify-content: center;
    position: relative;
    /* Removido padding-top excesivo */
}

.nosotros-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    /* Removido transform que movía todo hacia abajo */
}

/* Título principal de Nosotros */
.nosotros-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);
}

.nosotros-section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #d35400, #e67e22, #f39c12);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(211, 84, 0, 0.3);
}

/* Subtítulo "Calidad Premium" */
.nosotros-subtitle {
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-style: italic;
    opacity: 0.9;
}

/* Contenido principal de Nosotros */
.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, #f39c12, #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;
    }
}

/* 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, #f39c12);
    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;
    }
}

/* Pie de página moderno */
.footer {
    background: linear-gradient(90deg, #f3c851 0%, #e6b800 100%);
    color: #000000;
    padding: 40px 0 20px 0;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo img {
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    background: #fff;
    padding: 0px;
    width: 60px;
    height: 60px;
    object-fit: cover;
    display: block;
}

.footer-info {
    flex: 1 1 300px;
    text-align: center;
    font-size: 1rem;
}
.footer-info p {
    margin: 1px 0;
}
.footer-info a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-info a:hover {
    color: #d35400;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
}
.footer-social a img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
    transition: transform 0.2s, filter 0.2s;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
}
.footer-social a:hover img {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px rgba(211,84,0,0.18));
}

.footer-social a svg {
    border-radius: 50% !important;
    background: #fff !important;
    padding: 4px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.12) !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    width: 28px !important;
    height: 28px !important;
    display: block !important;
    fill: #d35400 !important;
}
.footer-social a:hover svg {
    transform: scale(1.15) !important;
    box-shadow: 0 4px 12px rgba(211,84,0,0.18) !important;
    fill: #e67e22 !important;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }
    .footer-info {
        font-size: 0.95rem;
    }
}

/* =============================
   Sección Nosotros - Estilos
   ============================= */
.nosotros-section {
    padding: 80px 20px 20px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 0vh;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}


@media (max-width: 600px) {
  header.menu-banner {
    height: px;
    padding: 0 12px;
  }
}

.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, #f39c12);
    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, #f39c12, #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;
    }
}

/* 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, #f39c12);
    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.2rem;
    }
}

/* 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: #e6b800;
    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;
    }
}

