                    .section-title-dark.long-bar {
                        /* ...existing code... */
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        gap: 12px;
                    }

                    .section-title-dark.long-bar .main-title {
                        font-family: var(--font-secondary);
                        font-size: 54px;
                        font-weight: 800;
                        color: var(--color-white);
                        letter-spacing: 2px;
                        text-align: center;
                        margin: 0;
                        line-height: 1.1;
                    }

                    .section-title-dark.long-bar .subtitle-intro {
                        font-family: var(--font-primary);
                        font-size: 22px;
                        font-weight: 400;
                        color: #f5e6d3;
                        text-align: center;
                        margin: 0;
                        line-height: 1.4;
                        letter-spacing: 0.5px;
                    }
        :root {
            --color-primary: #F39654;
            --color-secondary: #8B4513;
            --color-dark: #2C1810;
            --color-light: #F5E6D3;
            --color-white: #FFFFFF;
            --color-text: #333333;
            --color-text-light: #666666;
            --color-blue-detalles: #568290;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Playfair Display', serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ========== HEADER Y NAVEGACIÓN ========== */
        .header-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            background: transparent;
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        .header-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            background: transparent;
            box-shadow: none;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .header-wrapper.scrolled {
            background: rgba(44, 24, 16, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }
        .header-wrapper::before {
            content: '';
            position: absolute;
            top: -100%;
            left: 0;
            right: 0;
            height: 100%;
            background: rgba(44, 24, 16, 0.95);
            backdrop-filter: blur(10px);
            transition: top 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: -1;
        }
        .header-wrapper.scrolled::before {
            top: 0;
        }
        .logo-container {
            flex-shrink: 0;
        }

        .logo-container a {
            display: block;
            color: var(--color-white);
            font-family: var(--font-secondary);
            font-size: 32px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 2px;
        }

        .main-navigation {
            flex-grow: 1;
            display: flex;
            justify-content: center;
        }

        .main-navigation ul {
            list-style: none;
            display: flex;
            gap: 40px;
            align-items: center;
        }
        .logo-container {
        flex-shrink: 0;
        }

        .logo-container a {
        display: block;
        }
        .image-artesa-logo {
            position: relative;
            width: 150px;
            height: 60px;
        }
        .image-artesa-logo img {
            position: absolute;
            height: 110px;
            transition: opacity 0.3s ease;
            margin-top: -25px;
            margin-right: 60px;
        }
        .header-wrapper.scrolled .logo-default {
        opacity: 0;
        }
        .header-wrapper.scrolled .logo-scrolled {
        opacity: 1;
        }
        .logo-default {
        opacity: 1;
        }
        .logo-scrolled {
        opacity: 0;
        }
        .main-navigation a {
            color: var(--color-dark);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: capitalize;
            position: relative;
            transition: color 0.3s ease;
        }
        .header-wrapper.scrolled .main-navigation a {
            color: var(--color-white);
        }

        .main-navigation a::after {
            color: var(--color-white);
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-secondary);
            transition: width 0.3s ease;
        }

        .main-navigation a:hover {
            color: var(--color-secondary);
        }

        .main-navigation a:hover::after {
            width: 100%;
        }

        .canal-institucional-btn {
            background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
            color: var(--color-white);
            padding: 12px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
        }

        .canal-institucional-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(210, 105, 30, 0.4);
        }

        /* ========== HERO SECTION ========== */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #2C1810 0%, #4A2C1B 50%, #2C1810 100%);
            position: relative;
            overflow: hidden;
            /* padding-top: 80px; */
        }
            .hero-banner-slider {
    position: relative;
    width: 100%;
    height: 400px; /* Ajusta según tu diseño */
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    object-fit: cover;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}
            .section-title-dark {
                font-family: var(--font-secondary);
                font-size: 48px;
                font-weight: 700;
                color: var(--color-dark);
                text-transform: uppercase;
                letter-spacing: 2px;
                margin-bottom: 60px;
                position: relative;
                padding-bottom: 20px;
                display: inline-block;
            }

            .section-title-dark.long-bar {
                display: block;
                width: 100vw;
                max-width: none;
                margin-left: 50%;
                transform: translateX(-50%);
                background: var(--color-dark);
                color: var(--color-white);
                padding: 48px 0 48px 0;
                font-size: 54px;
                font-family: var(--font-secondary);
                font-weight: 800;
                letter-spacing: 2px;
                margin-bottom: 40px;
                text-transform: none;
                border: none;
                position: relative;
                box-shadow: 0 4px 24px rgba(44, 24, 16, 0.10);
                text-align: center;
                border-radius: 0 0 24px 24px;
            }
        .hero-content {
            width: 100%; /* Agregado */
    height: 100vh; /* Agregado */
    display: flex; /* Agregado */
    align-items: center; /* Agregado */
    justify-content: center; /* Agregado */
    padding: 0; /* Cambiado de padding: 0 40px */
    z-index: 2;
        }
        .hero-content img {
            width: 100%; /* Agregado */
    height: 100%; /* Agregado */
    object-fit: cover; /* Agregado - hace que la imagen cubra todo el espacio */
    object-position: center; /* Agregado - centra la imagen */
    display: block; /* Agregado */
        }

        .hero-content h1 {
            font-family: var(--font-secondary);
            font-size: 72px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            animation: fadeInUp 1s ease;
        }

        .hero-content h2 {
            font-size: 48px;
            font-weight: 300;
            color: #568290;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-image-placeholder {
    margin-top: 60px;
    animation: fadeInUp 1s ease 0.4s both;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
.como-lo-hacemos-v1 {
            padding: 120px 40px;
            background: var(--color-white);
            min-height: 100vh;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 300px;
            gap: 20px;
            margin-top: 60px;
        }

        .process-card {
            border-radius: 15px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        /* Quitar padding cuando el card solo tiene una imagen directa */
        .process-card img:only-child {
            padding: 0 !important;
            margin: 0 !important;
            width: 100%;
            height: 100%;
            border-radius: 0;
            display: block;
        }
        .process-card.cream-bg {
            padding: 0;
        }

        .process-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .orange-bg {
            background: linear-gradient(135deg, #F39654 0%, #FF8C42 100%);
        }

        .cream-bg {
            background: var(--color-cream);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-text);
            font-size: 18px;
        }

        .blue-bg {
            background: linear-gradient(135deg, #8FA3AD 0%, #7B96A3 100%);
        }

        .brown-bg {
            background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
        }

        .orange-light-bg {
            background: linear-gradient(135deg, #FFE5D0 0%, #FFD4B8 100%);
        }

        .process-content {
            color: var(--color-white);
        }

        .orange-light-bg .process-content,
        .cream-bg .process-content {
            color: var(--color-dark);
        }

        .process-number {
            font-family: var(--font-secondary);
            font-size: 72px;
            font-weight: 700;
            opacity: 0.3;
            line-height: 1;
            margin-bottom: 10px;
        }

        .process-content h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .process-content p {
            font-size: 15px;
            line-height: 1.6;
            opacity: 0.95;
        }

        .process-icon {
            font-size: 64px;
            text-align: right;
            opacity: 0.4;
        }

        .process-card.image-tall {
            grid-row: span 2;
        }

        /* ========== SECCIONES GENERALES ========== */
        .section {
            padding: 100px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-family: var(--font-secondary);
            font-size: 48px;
            font-weight: 700;
            color: var(--color-dark);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 60px;
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, var(--color-secondary), transparent);
        }

        

        /* ========== QUIÉNES SOMOS ========== */
        .quienes-somos-v1 {
            min-height: 100vh;
            background: var(--color-white);
            overflow: hidden;
        }

        .diagonal-split-container {
            display: grid;
            grid-template-columns: 45% 55%;
            min-height: 100vh;
            position: relative;
        }

        .diagonal-text-side {
            background: linear-gradient(135deg, var(--color-blue-detalles) 0%, #6B8291 100%);
            padding: 120px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
        }

        .bread-icon {
            font-size: 64px;
            margin-bottom: 30px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .texto-destacado p {
            font-size: 20px;
            line-height: 1.8;
            color: var(--color-white);
            margin-bottom: 30px;
            font-weight: 400;
        }

        .texto-secundario p {
            font-size: 17px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 50px;
        }

        .stats-row {
            display: flex;
            gap: 50px;
            margin-top: 60px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: var(--font-secondary);
            font-size: 48px;
            font-weight: 700;
            color: var(--color-primary);
            line-height: 1;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
        }

        .diagonal-image-side {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #D2691E, #8B4513);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 600;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(243, 150, 84, 0.3), transparent);
            z-index: 1;
        }

        .floating-badge {
            position: absolute;
            bottom: 60px;
            right: 60px;
            background: var(--color-white);
            padding: 25px 40px;
            border-radius: 50px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            z-index: 2;
        }

        .floating-badge span {
            font-family: var(--font-secondary);
            font-size: 28px;
            font-weight: 700;
            color: var(--color-secondary);
        }
        .diagonal-image-side {
            position: relative;
            overflow: hidden;
        }
        .diagonal-image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            z-index: 2;
        }
        .process-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            border-radius: 0;
            background: transparent;
        }
        /* ========== LISTA CON BULLETS ========== */
        .pilares-list {
            margin-top: 20px;
        }

        .pilares-list p {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
        }

        .pilares-list p::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--color-secondary);
            font-size: 24px;
            font-weight: bold;
        }
         /* ========================================
           OPCIÓN 2: MASA MADRE - SPLIT COLOR
        ======================================== */
        .masa-madre-v2 {
            background: var(--color-white);
        }

        .split-color-container {
            display: grid;
            grid-template-columns: 45% 55%;
            min-height: 800px;
        }

        .left-color-block {
            background: linear-gradient(135deg, #C4A77D 0%, #B89968 100%);
            padding: 100px 80px;
            display: flex;
            align-items: center;
        }

        .block-content {
            max-width: 500px;
        }

        .icon-large {
            font-size: 80px;
            margin-bottom: 30px;
        }

        .left-color-block p {
            font-size: 20px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 50px;
        }

        .timeline-vertical {
            margin-top: 60px;
        }

        .timeline-item {
            display: flex;
            gap: 25px;
            margin-bottom: 40px;
            position: relative;
        }

        .timeline-item:not(:last-child)::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 32px;
            width: 2px;
            height: calc(100% + 20px);
            background: rgba(255, 255, 255, 0.3);
        }

        .timeline-dot {
            width: 32px;
            height: 32px;
            background: var(--color-white);
            border-radius: 50%;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .timeline-content h4 {
            font-size: 20px;
            color: var(--color-white);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .timeline-content p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin: 0;
        }

        .right-image-block {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #8B4513, #D2691E);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 600;
        }

        .floating-info-card {
            position: absolute;
            bottom: 50px;
            left: 50px;
            background: var(--color-white);
            padding: 30px 40px;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .floating-info-card h4 {
            font-family: var(--font-secondary);
            font-size: 24px;
            color: var(--color-dark);
            margin-bottom: 8px;
        }

        .floating-info-card p {
            font-size: 16px;
            color: var(--color-text-light);
        }
        /* ========== SOCIOS FUNDADORES ========== */
        .socios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 50px;
            margin-top: 60px;
        }

        .socio-card {
            background: var(--color-white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }

        .socio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        .socio-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #8B4513, #D2691E);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            font-weight: 600;
            overflow: hidden;
        }

        .socio-content {
            padding: 35px;
        }

        .socio-content h3 {
            font-family: var(--font-secondary);
            font-size: 28px;
            color: var(--color-dark);
            margin-bottom: 20px;
        }
        .socio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;      /* Hace que la imagen cubra todo el contenedor sin deformarse */
            object-position: center; /* Centra la imagen dentro del contenedor */
            display: block;
        }
        .socio-content p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--color-text-light);
        }

        /* ========== PUNTOS DE VENTA ========== */
        .puntos-venta-box {
            background: linear-gradient(135deg, var(--color-light), #FFF5E6);
            padding: 50px;
            border-radius: 15px;
            margin: 60px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .puntos-venta-box h3 {
            font-family: var(--font-secondary);
            font-size: 32px;
            color: var(--color-dark);
            margin-bottom: 30px;
        }

        .puntos-lista {
            list-style: none;
        }

        .puntos-lista li {
            font-size: 18px;
            color: var(--color-text);
            padding: 18px 0;
            border-bottom: 1px solid rgba(139, 69, 19, 0.2);
            position: relative;
            padding-left: 35px;
            transition: all 0.3s ease;
        }

        .puntos-lista li:last-child {
            border-bottom: none;
        }

        .puntos-lista li::before {
            content: '📍';
            position: absolute;
            left: 0;
            font-size: 20px;
        }

        .puntos-lista li:hover {
            padding-left: 45px;
            color: var(--color-primary);
        }

        /* ========== FORMULARIO DE CONTACTO ========== */
        .contact-section {
            background: var(--color-white);
            padding: 60px;
            border-radius: 15px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            margin-top: 60px;
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid #E5E5E5;
            border-radius: 8px;
            font-family: var(--font-primary);
            font-size: 16px;
            transition: all 0.3s ease;
            background: #FAFAFA;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--color-secondary);
            background: var(--color-white);
            box-shadow: 0 0 0 4px rgba(210, 105, 30, 0.1);
        }

        .contact-form textarea {
            grid-column: 1 / -1;
            min-height: 180px;
            resize: vertical;
        }

        .submit-btn {
            grid-column: 1 / -1;
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            color: var(--color-white);
            padding: 18px 40px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(139, 69, 19, 0.4);
        }

        /* ========== FOOTER ========== */
/* ========================================
   NUEVO FOOTER - DISEÑO SEGÚN IMAGEN
======================================== */

.footer-nuevo {
    background: #9B8B7E; /* Color gris-marrón de la imagen */
    color: var(--color-white);
    padding: 60px 40px 30px;
}

.footer-nuevo-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ========== LOGO Y REDES SOCIALES ========== */
.footer-logo-section {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    height: 80px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1); /* Asegura que el logo sea blanco */
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9B8B7E;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* ========== COLUMNAS DE CONTENIDO ========== */
.footer-content-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    padding: 0 80px;
}

.footer-column h3 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* ========== INFORMACIÓN CON ICONOS ========== */
.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.6;
}

.footer-info-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.9;
}

/* ========== MENÚ DE NAVEGACIÓN ========== */
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--color-white);
    padding-left: 8px;
}

/* ========== COPYRIGHT ========== */
.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .header-container {
                padding: 0 30px;
            }

            .main-navigation ul {
                gap: 25px;
            }

            .hero-content h1 {
                font-size: 56px;
            }

            .hero-content h2 {
                font-size: 38px;
            }

            .content-row {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .socios-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                height: auto;
                padding: 20px;
            }

            .main-navigation ul {
                flex-direction: column;
                gap: 15px;
                margin: 20px 0;
            }

            .hero-content h1 {
                font-size: 40px;
            }

            .hero-content h2 {
                font-size: 28px;
            }

            .section {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 36px;
            }

            .productos-grid {
                grid-template-columns: 1fr;
            }

            .contact-form {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 1024px) {
    .footer-content-columns {
        padding: 0 40px;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer-nuevo {
        padding: 50px 30px 25px;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-content-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-info-item {
        justify-content: center;
        text-align: left;
    }

    .footer-menu {
        align-items: center;
    }

    .footer-menu a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        height: 50px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .footer-column h3 {
        font-size: 20px;
    }

    .footer-info-item,
    .footer-menu a {
        font-size: 14px;
    }

    .footer-copyright p {
        font-size: 12px;
    }
}