/* ============================================
   RESET Y BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #fff;
    overflow-x: hidden;
    background: #0f1419;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background: #1a2332;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo {
    order: 1;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

.nav {
    display: flex;
    gap: 3rem;
    align-items: center;
    order: 2;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding-bottom: 5px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 400;
}

.nav-link:hover,
.nav-link.active {
    border-bottom: 3px solid #ff8c00;
    color: #fff;
}

/* Menú hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    order: 3;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    display: block;
}

/* Animación del menú hamburguesa cuando está activo */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 50, 0.6);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.hero-content h2 {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 300;
}

.text-orange {
    color: #ff8c00;
    font-weight: bold;
}

.text-blue {
    color: #2196F3;
}

.btn-blue {
    display: inline-block;
    padding: 1rem 3rem;
    background: #2196F3;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.btn-blue:hover {
    background: #1976D2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
}

/* ============================================
   SECCIONES DE CONTENIDO
   ============================================ */

.section-content {
    padding: 5rem 2rem;
    background: #1a2332;
}

.section-content.bg-dark {
    background: #0f1419;
}

.container-section {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.container-section.reverse {
    direction: rtl;
}

.container-section.reverse > * {
    direction: ltr;
}

.content-left h3,
.content-right h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 300;
}

.content-left p,
.content-right p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
}

.content-right img,
.content-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ============================================
   CARRUSEL
   ============================================ */

.carousel {
    background: #1a2332;
    padding: 3rem 0;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 1rem;
}

.carousel-track {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-slide {
    display: none;
    width: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 140, 0, 0.8);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 140, 0, 1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    text-align: center;
    margin-top: 1.5rem;
}

.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #ff8c00;
    transform: scale(1.2);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #ff8c00;
    padding: 3rem 0;
    color: #1a2332;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
    font-weight: 600;
}

.footer-column p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1a2332;
}

.footer-column a {
    color: #1a2332;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 0.7;
}

.footer-column a i {
    margin-right: 0.5rem;
    color: #1a2332;
}

/* ============================================
   REDES SOCIALES EN FOOTER
   ============================================ */

.social-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 0;
    justify-content: flex-start;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: transparent;
    color: #1a2332;
    border-radius: 50%;
    text-decoration: none;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-icons a i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Efecto hover para Facebook */
.social-icons a[href*="facebook"]:hover {
    color: #1877F2;
    transform: translateY(-5px) scale(1.15);
    filter: drop-shadow(0 5px 15px rgba(24, 119, 242, 0.5));
}

.social-icons a[href*="facebook"]:hover i {
    transform: rotate(360deg);
}

/* Efecto hover para Instagram */
.social-icons a[href*="instagram"]:hover {
    color: #E4405F;
    transform: translateY(-5px) scale(1.15);
    filter: drop-shadow(0 5px 15px rgba(228, 64, 95, 0.5));
}

.social-icons a[href*="instagram"]:hover i {
    transform: rotate(360deg);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: #fff;
}

.footer-links {
    display: none;
}

/* ============================================
   PÁGINA CONOCENOS
   ============================================ */

/* HERO CON IMAGEN Y TEXTO */
.hero-conocenos {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-conocenos-imagen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-conocenos-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-conocenos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 20, 25, 0.95) 0%, rgba(15, 20, 25, 0.7) 50%, transparent 100%);
    z-index: 2;
}

.hero-conocenos-contenido {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
    width: 100%;
}

.hero-texto-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-parrafos {
    flex: 1;
    max-width: 700px;
}

.hero-parrafos p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.hero-titulo-box {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-titulo {
    font-size: 5rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.1;
    white-space: nowrap;
}

.texto-naranja {
    color: #ff8c00;
}

/* SECCIÓN QUIENES SOMOS */
.section-quienes {
    background: #1a2332;
    padding: 5rem 2rem;
}

.quienes-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quienes-titulo {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 600;
}

.quienes-parrafos p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.quienes-imagen img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* SECCIÓN NEWSLETTER */
.section-newsletter {
    background: #0f1419;
    padding: 5rem 2rem;
}

.newsletter-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-titulo {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.newsletter-subtitulo {
    font-size: 1.3rem;
    color: #ff8c00;
    margin-bottom: 2rem;
}

.form-newsletter label {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.form-newsletter input[type="email"] {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
}

.btn-enviar {
    padding: 1rem 3rem;
    background: #2196F3;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enviar:hover {
    background: #1976D2;
    transform: translateY(-3px);
}

.newsletter-derecha img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

/* ============================================
   PÁGINA PRODUCTOS
   ============================================ */

.section-titulo-productos {
    background: #1a2332;
    padding: 4rem 2rem;
    text-align: center;
}

.titulo-productos-grande {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.subtitulo-productos {
    font-size: 1.3rem;
    color: #ccc;
}

.section-catalogos {
    background: #0f1419;
    padding: 4rem 2rem;
}

.catalogos-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.catalogo-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #1a2332;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.catalogo-imagen {
    min-height: 500px;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.catalogo-imagen img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.catalogo-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catalogo-titulo {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.catalogo-subtitulo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.catalogo-subtitulo.importacion {
    color: #2196F3;
}

.catalogo-subtitulo.nacional {
    color: #ff8c00;
}

.catalogo-descripcion {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2rem;
}

.btn-descarga {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #fff;
    align-self: flex-start;
}

.btn-importacion {
    background: #2196F3;
}

.btn-importacion:hover {
    background: #1976D2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
}

.btn-fabricacion {
    background: #2196F3;
}

.btn-fabricacion:hover {
    background: #1976D2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
}

.icon-download {
    width: 24px;
    height: 24px;
}

.section-consulta-productos {
    min-height: 100vh;
    background: linear-gradient(rgba(15, 20, 25, 0.85), rgba(15, 20, 25, 0.85)), 
                url('../images/productos-hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
}

.consulta-content {
    max-width: 600px;
    text-align: left;
}

.consulta-titulo {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.2;
}

.texto-consulta {
    color: #ff8c00;
}

.consulta-subtitulo {
    font-size: 1.3rem;
    color: #ff8c00;
    margin-bottom: 3rem;
}

.form-consulta label {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.form-consulta input[type="email"] {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
}

.btn-enviar-productos {
    padding: 1rem 3rem;
    background: #2196F3;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enviar-productos:hover {
    background: #1976D2;
    transform: translateY(-3px);
}

/* ============================================
   PÁGINA DE CONTACTO
   ============================================ */

.alert {
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 8px;
    font-size: 1.1rem;
    text-align: center;
}

.alert-success {
    background: #4CAF50;
    color: #fff;
}

.alert-error {
    background: #f44336;
    color: #fff;
}

.contacto-form-section {
    background: #1a2332;
    padding: 5rem 2rem;
}

.contacto-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-titulo {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.form-subtitulo {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    text-align: center;
}

.form-contacto {
    background: #0f1419;
    padding: 3rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196F3;
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-enviar-contacto {
    width: 100%;
    padding: 1.2rem 3rem;
    background: #2196F3;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enviar-contacto:hover {
    background: #1976D2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.contacto-hero {
    background: #1a2332;
    padding: 4rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.contacto-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contacto-left {
    padding: 2rem;
}

.contacto-title {
    font-size: 4rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 3rem;
    font-weight: 400;
}

.social-buttons-large {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 400px;
}

.btn-social {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #fff;
}

.instagram-btn {
    background: #2196F3;
}

.instagram-btn:hover {
    background: #1976D2;
    transform: translateX(10px);
}

.facebook-btn {
    background: #2196F3;
}

.facebook-btn:hover {
    background: #1976D2;
    transform: translateX(10px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2332;
    font-size: 2rem;
}

.contacto-right img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
}

.whatsapp-section {
    background: #0f1419;
    padding: 4rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.whatsapp-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.whatsapp-left {
    padding: 2rem;
}

.whatsapp-title {
    font-size: 4rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 3rem;
    font-weight: 400;
}

.btn-whatsapp {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: #2196F3;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1976D2;
    transform: scale(1.05);
}

.whatsapp-right img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
}

/* ============================================
   MEDIA QUERIES - RESPONSIVE MEJORADO
   ============================================ */

/* Tablets grandes y laptops pequeñas (1024px - 1200px) */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 2rem;
    }
    
    .hero-content h2 {
        font-size: 4rem;
    }
    
    .hero-titulo {
        font-size: 4rem;
    }
    
    .quienes-titulo {
        font-size: 3rem;
    }
    
    .container-section,
    .quienes-container,
    .newsletter-container {
        gap: 3rem;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    /* Header responsive */
    .header-container {
        padding: 0 1.5rem;
    }
    
    .logo {
        order: 1;
    }
    
    .menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        max-width: 400px;
        height: calc(100vh - 80px);
        background: #1a2332;
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: left 0.4s ease;
        z-index: 999;
        order: 3;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.3rem;
        width: 100%;
        text-align: left;
        padding: 1rem 0;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover,
    .nav-link.active {
        border-bottom: 2px solid #ff8c00;
    }
    
    /* Hero */
    .hero {
        background-attachment: scroll;
        min-height: 80vh;
        padding: 60px 20px;
    }
    
    .hero-content h2 {
        font-size: 3.5rem;
    }
    
    /* Secciones de contenido */
    .section-content {
        padding: 4rem 1.5rem;
    }
    
    .container-section,
    .container-section.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
        direction: ltr;
    }
    
    .content-left h3,
    .content-right h3 {
        font-size: 2.5rem;
    }
    
    .content-left p,
    .content-right p {
        font-size: 1.1rem;
    }
    
    /* Carousel */
    .carousel {
        padding: 2.5rem 0;
    }
    
    .carousel-slide img {
        height: 450px;
    }
    
    .carousel-btn {
        font-size: 1.5rem;
        padding: 0.8rem 1.2rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .footer-column {
        align-items: center;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        gap: 25px;
    }
    
    .social-icons a {
        width: 60px;
        height: 60px;
        font-size: 2.8rem;
    }
    
    /* Conocenos */
    .hero-conocenos {
        min-height: 80vh;
    }
    
    .hero-conocenos-overlay {
        background: linear-gradient(to bottom, rgba(15, 20, 25, 0.95) 0%, rgba(15, 20, 25, 0.85) 100%);
    }
    
    .hero-conocenos-contenido {
        padding: 3rem 2rem;
    }
    
    .hero-texto-wrapper {
        flex-direction: column;
        gap: 2.5rem;
        align-items: flex-start;
    }
    
    .hero-titulo-box {
        order: -1;
        width: 100%;
        justify-content: flex-start;
    }
    
    .hero-titulo {
        font-size: 3.5rem;
        white-space: normal;
    }
    
    .hero-parrafos {
        max-width: 100%;
    }
    
    .hero-parrafos p {
        font-size: 1.1rem;
    }
    
    .section-quienes {
        padding: 4rem 1.5rem;
    }
    
    .quienes-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quienes-titulo {
        font-size: 2.8rem;
    }
    
    .quienes-parrafos p {
        font-size: 1.1rem;
    }
    
    .section-newsletter {
        padding: 4rem 1.5rem;
    }
    
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .newsletter-titulo {
        font-size: 2.8rem;
    }
    
    .newsletter-derecha {
        text-align: center;
    }
    
    /* Productos */
    .section-titulo-productos {
        padding: 3.5rem 1.5rem;
    }
    
    .titulo-productos-grande {
        font-size: 3.5rem;
    }
    
    .section-catalogos {
        padding: 3.5rem 1.5rem;
    }
    
    .catalogo-item {
        grid-template-columns: 1fr;
    }
    
    .catalogo-imagen {
        min-height: 400px;
    }
    
    .catalogo-info {
        padding: 2.5rem;
        align-items: center;
        text-align: center;
    }
    
    .catalogo-titulo {
        font-size: 2rem;
    }
    
    .catalogo-subtitulo {
        font-size: 1.8rem;
    }
    
    .btn-descarga {
        align-self: center;
    }
    
    .section-consulta-productos {
        padding: 4rem 1.5rem;
        min-height: 70vh;
    }
    
    .consulta-titulo {
        font-size: 3rem;
    }
    
    /* Contacto */
    .contacto-form-section {
        padding: 4rem 1.5rem;
    }
    
    .form-titulo {
        font-size: 3rem;
    }
    
    .form-contacto {
        padding: 2.5rem;
    }
    
    .contacto-hero,
    .whatsapp-section {
        padding: 3.5rem 1.5rem;
        min-height: 60vh;
    }
    
    .contacto-container,
    .whatsapp-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contacto-title,
    .whatsapp-title {
        font-size: 3rem;
    }
    
    .social-buttons-large {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .contacto-left,
    .whatsapp-left {
        padding: 1.5rem;
    }
    
    .contacto-right,
    .whatsapp-right {
        order: -1;
    }
    
    .contacto-right img,
    .whatsapp-right img {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Tablets pequeñas y móviles grandes (600px - 768px) */
@media (max-width: 768px) {
    /* Header */
    .header-container {
        padding: 0 1.2rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .nav {
        max-width: 350px;
        padding: 2.5rem 1.5rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    /* Hero */
    .hero {
        min-height: 70vh;
        padding: 50px 15px;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-blue {
        padding: 0.9rem 2.5rem;
        font-size: 1rem;
    }
    
    /* Secciones */
    .section-content {
        padding: 3.5rem 1.2rem;
    }
    
    .container-section {
        gap: 2.5rem;
    }
    
    .content-left h3,
    .content-right h3 {
        font-size: 2.2rem;
    }
    
    .content-left p,
    .content-right p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    /* Carousel */
    .carousel {
        padding: 2rem 0;
    }
    
    .carousel-container {
        padding: 0 0.8rem;
    }
    
    .carousel-slide img {
        height: 350px;
    }
    
    .carousel-btn {
        font-size: 1.3rem;
        padding: 0.7rem 1rem;
    }
    
    .carousel-btn.prev {
        left: 8px;
    }
    
    .carousel-btn.next {
        right: 8px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
        margin: 0 6px;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 0;
    }
    
    .footer-container {
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .footer-column h3 {
        font-size: 1.4rem;
    }
    
    .footer-column p {
        font-size: 1.05rem;
    }
    
    .social-icons a {
        width: 55px;
        height: 55px;
        font-size: 2.5rem;
    }
    
    /* Conocenos */
    .hero-conocenos {
        min-height: 70vh;
    }
    
    .hero-conocenos-contenido {
        padding: 2.5rem 1.5rem;
    }
    
    .hero-titulo {
        font-size: 3rem;
    }
    
    .hero-parrafos p {
        font-size: 1.05rem;
    }
    
    .section-quienes {
        padding: 3.5rem 1.2rem;
    }
    
    .quienes-titulo {
        font-size: 2.5rem;
    }
    
    .quienes-parrafos p {
        font-size: 1.05rem;
    }
    
    .section-newsletter {
        padding: 3.5rem 1.2rem;
    }
    
    .newsletter-titulo {
        font-size: 2.5rem;
    }
    
    .newsletter-subtitulo {
        font-size: 1.2rem;
    }
    
    /* Productos */
    .section-titulo-productos {
        padding: 3rem 1.2rem;
    }
    
    .titulo-productos-grande {
        font-size: 3rem;
    }
    
    .subtitulo-productos {
        font-size: 1.2rem;
    }
    
    .section-catalogos {
        padding: 3rem 1.2rem;
    }
    
    .catalogo-imagen {
        min-height: 350px;
        padding: 2.5rem;
    }
    
    .catalogo-info {
        padding: 2rem;
    }
    
    .catalogo-titulo {
        font-size: 1.8rem;
    }
    
    .catalogo-subtitulo {
        font-size: 1.6rem;
    }
    
    .catalogo-descripcion {
        font-size: 1.05rem;
    }
    
    .btn-descarga {
        font-size: 1.1rem;
        padding: 1.1rem 2.3rem;
    }
    
    .section-consulta-productos {
        padding: 3.5rem 1.2rem;
        min-height: 60vh;
    }
    
    .consulta-titulo {
        font-size: 2.5rem;
    }
    
    .consulta-subtitulo {
        font-size: 1.2rem;
    }
    
    /* Contacto */
    .contacto-form-section {
        padding: 3.5rem 1.2rem;
    }
    
    .form-titulo {
        font-size: 2.5rem;
    }
    
    .form-subtitulo {
        font-size: 1.1rem;
    }
    
    .form-contacto {
        padding: 2rem;
    }
    
    .contacto-hero,
    .whatsapp-section {
        padding: 3rem 1.2rem;
        min-height: 50vh;
    }
    
    .contacto-title,
    .whatsapp-title {
        font-size: 2.5rem;
    }
    
    .btn-social {
        font-size: 1.3rem;
        padding: 1.3rem 2.2rem;
        gap: 1.5rem;
    }
    
    .icon-circle {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .btn-whatsapp {
        padding: 1.3rem 3.5rem;
        font-size: 1.3rem;
    }
}

/* Móviles (max 600px) */
@media (max-width: 600px) {
    /* Header */
    .header-container {
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav {
        max-width: 300px;
        padding: 2rem 1.2rem;
        top: 75px;
        height: calc(100vh - 75px);
    }
    
    .menu-toggle span {
        width: 28px;
    }
    
    /* Hero */
    .hero {
        min-height: 60vh;
        padding: 40px 12px;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .btn-blue {
        padding: 0.8rem 2.2rem;
        font-size: 0.95rem;
    }
    
    /* Secciones */
    .section-content {
        padding: 3rem 1rem;
    }
    
    .container-section {
        gap: 2rem;
    }
    
    .content-left h3,
    .content-right h3 {
        font-size: 1.9rem;
        margin-bottom: 1.2rem;
    }
    
    .content-left p,
    .content-right p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Carousel */
    .carousel {
        padding: 1.5rem 0;
    }
    
    .carousel-container {
        padding: 0 0.5rem;
    }
    
    .carousel-slide img {
        height: 280px;
    }
    
    .carousel-btn {
        font-size: 1.1rem;
        padding: 0.6rem 0.8rem;
    }
    
    .carousel-btn.prev {
        left: 5px;
    }
    
    .carousel-btn.next {
        right: 5px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0;
    }
    
    .footer-container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-column h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-column p {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }
    
    .social-icons {
        gap: 18px;
    }
    
    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 2.2rem;
    }
    
    /* Conocenos */
    .hero-conocenos {
        min-height: 60vh;
    }
    
    .hero-conocenos-imagen img {
        object-position: center;
    }
    
    .hero-conocenos-contenido {
        padding: 2rem 1rem;
    }
    
    .hero-texto-wrapper {
        gap: 2rem;
    }
    
    .hero-titulo {
        font-size: 2.5rem;
    }
    
    .hero-parrafos p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .section-quienes {
        padding: 3rem 1rem;
    }
    
    .quienes-container {
        gap: 2rem;
    }
    
    .quienes-titulo {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .quienes-parrafos p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .section-newsletter {
        padding: 3rem 1rem;
    }
    
    .newsletter-container {
        gap: 2rem;
    }
    
    .newsletter-titulo {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .newsletter-subtitulo {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }
    
    .form-newsletter label {
        font-size: 1rem;
    }
    
    .form-newsletter input[type="email"] {
        padding: 1.1rem 1.3rem;
        font-size: 0.95rem;
    }
    
    .btn-enviar {
        padding: 0.9rem 2.5rem;
        font-size: 1.1rem;
    }
    
    /* Productos */
    .section-titulo-productos {
        padding: 2.5rem 1rem;
    }
    
    .titulo-productos-grande {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .subtitulo-productos {
        font-size: 1.1rem;
    }
    
    .section-catalogos {
        padding: 2.5rem 1rem;
    }
    
    .catalogos-wrapper {
        gap: 2.5rem;
    }
    
    .catalogo-imagen {
        min-height: 300px;
        padding: 2rem;
    }
    
    .catalogo-imagen img {
        max-width: 300px;
    }
    
    .catalogo-info {
        padding: 1.8rem;
    }
    
    .catalogo-titulo {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
    }
    
    .catalogo-subtitulo {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .catalogo-descripcion {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-descarga {
        font-size: 1rem;
        padding: 1rem 2rem;
        gap: 0.8rem;
    }
    
    .section-consulta-productos {
        padding: 3rem 1rem;
        min-height: 50vh;
    }
    
    .consulta-content {
        max-width: 100%;
    }
    
    .consulta-titulo {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .consulta-subtitulo {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .form-consulta label {
        font-size: 1rem;
    }
    
    .form-consulta input[type="email"] {
        padding: 1.1rem 1.3rem;
        font-size: 0.95rem;
    }
    
    .btn-enviar-productos {
        padding: 0.9rem 2.5rem;
        font-size: 1.1rem;
    }
    
    /* Contacto */
    .alert {
        padding: 1.2rem 1.5rem;
        margin: 1.5rem auto;
        font-size: 1rem;
    }
    
    .contacto-form-section {
        padding: 3rem 1rem;
    }
    
    .contacto-form-container {
        max-width: 100%;
    }
    
    .form-titulo {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .form-subtitulo {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .form-contacto {
        padding: 1.8rem;
    }
    
    .form-group {
        margin-bottom: 1.8rem;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1.1rem 1.3rem;
        font-size: 0.95rem;
    }
    
    .btn-enviar-contacto {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .contacto-hero,
    .whatsapp-section {
        padding: 2.5rem 1rem;
        min-height: auto;
    }
    
    .contacto-container,
    .whatsapp-container {
        gap: 2rem;
    }
    
    .contacto-left,
    .whatsapp-left {
        padding: 1rem;
    }
    
    .contacto-title,
    .whatsapp-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .social-buttons-large {
        gap: 1.5rem;
    }
    
    .btn-social {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
        gap: 1.3rem;
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .btn-whatsapp {
        padding: 1.2rem 3rem;
        font-size: 1.2rem;
    }
    
    .contacto-right img,
    .whatsapp-right img {
        border-radius: 15px;
    }
}

/* Móviles muy pequeños (max 400px) */
@media (max-width: 400px) {
    .logo-img {
        height: 36px;
    }
    
    .nav {
        max-width: 280px;
    }
    
    .hero-content h2 {
        font-size: 1.9rem;
    }
    
    .content-left h3,
    .content-right h3 {
        font-size: 1.7rem;
    }
    
    .carousel-slide img {
        height: 240px;
    }
    
    .hero-titulo {
        font-size: 2.2rem;
    }
    
    .quienes-titulo {
        font-size: 2rem;
    }
    
    .newsletter-titulo {
        font-size: 2rem;
    }
    
    .titulo-productos-grande {
        font-size: 2.2rem;
    }
    
    .consulta-titulo {
        font-size: 2rem;
    }
    
    .form-titulo {
        font-size: 2rem;
    }
    
    .contacto-title,
    .whatsapp-title {
        font-size: 2rem;
    }
    
    .catalogo-imagen {
        min-height: 260px;
        padding: 1.5rem;
    }
}

/* Landscape en móviles */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 50px 20px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-conocenos {
        min-height: auto;
    }
    
    .hero-conocenos-imagen img {
        height: 500px;
        object-fit: cover;
    }
    
    .carousel-slide img {
        height: 350px;
    }
    
    .contacto-hero,
    .whatsapp-section {
        min-height: auto;
        padding: 3rem 1.5rem;
    }
}

/* Optimizaciones adicionales */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Mejoras en imágenes para performance */
img {
    max-width: 100%;
    height: auto;
}