.montserrat-<uniquifier> {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}
body {
    position: relative;
    padding-top: 100px;
    height: 100%;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    line-height: 16px;
    background-attachment: fixed;
    color: #333;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    text-align: left;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
    header .logo {
        position: absolute;
        margin: 0;
        padding: 0;
        top: 0;
        left: 50%;
        margin-left: -180px;
        padding: 20px;
        border-radius: 0% 0% 50% 50%;
        font-weight: bold;
        background: #e8e8e8;
        box-shadow: #909090 0px 0px 10px;
        transition: all 0.3s ease;
        z-index: 200;
    }
    header .logo img{
        display: block;
        width: 320px;
        padding-left: 10px;
        height: auto;
        box-sizing: border-box;
        border-radius: 20%;
    }
    header nav{
        white-space: nowrap;
        display: block;
        background: #B41504;
        position: relative;
    }
    header nav .menu{
        display: none;
    }
    header i{
        vertical-align: middle;
        width: 380px;
    }
    .info{
        font-size: 16px;
        line-height: 50px;
        height: 50px;
        background-color: #791004;
        color: #FFFFFF;
    }
        .info>div{
            box-sizing: border-box;
            max-width: 1200px;
            margin: auto;
            padding: 0px 20px;
            box-sizing: border-box;
            text-align: center;
        }
        .info span, .info i{
            display: inline-block;
            height: 50px;
            padding: 0px 10px;
        }
    .info+div{
        margin: auto;
        height: 50px;
        background: #B41504;
    }
            nav ul{
                box-sizing: border-box;
                max-width: 1200px;
                margin: auto;
                text-align: center;
                padding: 0 20px;
            }
            nav li, nav i{
                display: inline-block;
                height: 50px;
                font-size: 18px;
                line-height: 50px;
            }
                nav li a{
                    box-sizing: border-box;
                    width: 130px;
                    display: block;
                    padding: 0px 20px;
                    color: #FFFFFF;
                    text-decoration: none;
                    transition: all 0.3s ease;
                }
                nav li a.bandera_seleccionado{
                    background: #FFFFFF;
                    color: #000000;
                    height: 50px;
                    box-sizing: border-box;
                    line-height: 50px;
                    border-bottom: 4px solid #000000;
                }
                nav li a:hover{
                    background: #FFFFFF;
                    color: #000000;
                }
footer{
    text-align: center;
    background: #B41504;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 20px;
    padding: 60px 0 0;
}
footer>div{
    display: block;
    margin: auto;
    text-align: center;
}
    footer .logo{
        display: inline-block;
        vertical-align: baseline;
        margin: 0;
        padding: 20px;
        border-radius: 50% 50% 50% 50%;
        background: #e8e8e8;
    }
    footer .logo img{
        display: block;
        width: 300px;
        height: auto;
        border-radius: 20%;
        max-width: 100%;
    }
    footer .contenido{
        display: inline-block;
        vertical-align: -40px;
        text-align: justify;
        width: 500px;
        margin: auto;
        margin-left: 40px;
    }
    footer .contenido p+p{
        margin-top: 10px;
    }
    footer>div>p{
        background-color: #791004;
        padding: 20px;
        margin-top: 40px;
    }
    
    aside a{
        position: fixed;
        bottom: 25%;
        right: 0;
        width: 40px;
        padding: 10px 15px 10px 15px;
        border-radius: 50% 0% 0% 50%;  
        background: #0d8801;
        transition: all 0.3s ease;
        box-shadow: -2px 2px 8px rgba(0,0,0,0.2);
        z-index: 1;
    }
    
    aside a:hover {
        width: 45px;
        background: #0aa100;
    }

    main{
        background: #f7f7f7;
        overflow: hidden;
        background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(208,208,208,1) 59%, rgba(196,196,196,1) 60%, rgba(187,187,187,1) 62%, rgba(255,255,255,1) 100%);
        background-attachment: fixed;
    }

    section.banner{
        position: relative;
        background-size: cover;
        padding-bottom: 35%;
        box-sizing: border-box;
        color: #FFFFFF;
        text-align: center;
        background: linear-gradient(rgba(185, 0, 0, 0.322), rgba(168, 1, 1, 0.842)), url(../img/banner.jpg) no-repeat center center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        overflow: hidden;
    }

    section.banner:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(rgba(185, 0, 0, 0.322), rgba(168, 1, 1, 0.842));
        z-index: 1;
    }

    section.banner .banner-bg {
        position: absolute;
        top: -40%;  /* Ajustado de -20% a -40% para subir más la imagen */
        left: 0;
        width: 100%;
        height: 160%; /* Aumentado de 140% a 160% para cubrir más área */
        background-size: cover;
        background-position: center 30%; /* Ajustado para mostrar la parte superior-central de la imagen */
        transform: translateY(0);
        transition: transform 0.1s ease-out;
        z-index: 0;
    }

    section.banner>div{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 100%;
    }

    section.banner h1{
        white-space: nowrap;
        font-size: 40px;
        line-height: 50px;
        font-weight: bold;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    section.banner p{
        font-size: 20px;
        line-height: 30px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    section.contenido{
        box-sizing: border-box;
        max-width: 1000px;
        margin: auto;
        padding: 0px 20px;
        text-align: center;
        font-size: 0;
        padding: 40px 0 120px;
    }
    section.contenido>*{
        font-size: 16px;
    }

    section.contenido h2, section.contenido h3{
        font-size: 30px;
        line-height: 40px;
        font-weight: bold;
        margin: 40px 0;
        color: #B41504;
    }
    
    section.contenido p{
        display: inline-block;
        vertical-align: top;
        padding: 20px;
        font-size: 16px;
        line-height: 30px;
        margin: 20px 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        background: #FFFFFF;
        transition: all 0.3s ease;
    }
    section.contenido p:hover {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        transform: translateY(-3px);
    }
    section.contenido p.bandera_mitad{
        box-sizing: border-box;
        width: calc(50% - 40px);
        margin: 20px 0px;
    }
    section.contenido p.bandera_mitad+ p.bandera_mitad{
        margin-left: 40px;
    }

    section.contenido  ul{
        display: inline-block;
        padding: 20px;
        font-size: 16px;
        line-height: 30px;
        margin: 20px 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        background: #FFFFFF;
        max-width: 50%;
        transition: all 0.3s ease;
    }
    section.contenido ul:hover {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        transform: translateY(-3px);
    }
    section.contenido b{
        font-weight: bold;
        color: #B41504;
    }
    section.contenido  ul li{
        text-align: center;
        padding: 20px;
    }
    section.contenido  ul li+li{
        border-top: 1px solid #ccc;
        
    }
    
/* Productos */
section.lista_productos {
    box-sizing: border-box;
    max-width: 1200px;
    margin: -120px auto 120px;
    padding: 20px;

}

section.lista_productos > .product-gallery+div {
    background: #fff;
    padding: 20px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-style: italic;
    color: #555;
}

.product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.product-card {
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image-main {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #FFFFFF;
    cursor: pointer;
}

.product-image-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.product-thumbnails {
    display: flex;
    justify-content: center;
    padding: 10px;
    background: #f0f0f0;
}

.thumbnail {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.thumbnail.active {
    border-color: #B41504;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-title {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
}

.product-description {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* Overlay effect */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #B41504;
    z-index: 1001;
}

.modal-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

/* Captación de interés */
.cta-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url(../img/banner.jpg) center/cover;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 900px;
}

.cta-section h3 {
    color: #B41504;
    font-size: 24px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #B41504;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #791004;
    transform: translateY(-2px);
}

/*------------------------------------*/
    
/* Contenedor principal */
  
  /* Cajita */
  main.contacto section{
    box-sizing: border-box;
    max-width: 1000px;
    margin: auto;
    padding: 0px 20px;
    padding: 40px 0 120px;
  }
  main.contacto section>div{
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
    clear: both;
  }
  
  .contacto h2{
    display: block;
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
    margin: 40px 0;
    clear: both;
    text-align: center;
    color: #B41504;
  }
  .contacto .contacto_info>div{
    float: left;
    margin: auto;
    width: 50%;
    box-sizing: border-box;
    padding: 20px 40px 20px 20px;
  }
  .contacto .contacto_info>div p{
    clear: both;
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .contacto .contacto_info>div p:first-child{
    display: block;
    font-size: 20px;
    line-height: 40px;
    font-weight: bold;
    margin: 0 0 40px;
    clear: both;
    text-align: center;
    color: #B41504;
  }
  .contacto .contacto_info>div span{
    float: right;
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
  }
  .contacto_info{
    clear: both;
    overflow: hidden;
  }

  .contacto iframe{
    width: calc(100% - 40px);
    height: 400px;
    border: none;
    margin: 20px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Formulario */
  form {
    float: right;
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
  }
  form p{
    display: block;
    font-size: 20px;
    line-height: 40px;
    font-weight: bold;
    margin: 0 0 20px;
    clear: both;
    text-align: center;
    color: #B41504;
  }
  
  form label {
    margin-top: 10px;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 20px;
    color: #555;
  }
  
  form input[type="text"],
  form input[type="email"],
  form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: border 0.3s ease;
  }
  
  form input[type="text"]:focus,
  form input[type="email"]:focus,
  form textarea:focus {
    border: 1px solid #B41504;
    outline: none;
  }
  
  form textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  form input[type="submit"] {
    margin-top: 15px;
    padding: 12px;
    background-color: #B41504;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  form input[type="submit"]:hover {
    background-color: #791004;
  }
  
  @media (max-width: 1000px) {
    header .logo img{
        width: 200px;
    }
    header i {
        vertical-align: middle;
        width: 240px;
    }
    header .logo {
        margin-left: -120px;
    }
    
    footer .logo{
        display: block;
        width: 240px;
        margin: 0px auto 40px;
    }
    footer .logo img{
        width: auto;
    }

    footer .contenido{
        display: block;
        width: auto;
        margin: auto;
        max-width: 500px;
        margin: 0px auto 20px;
        padding: 0px 20px;
        font-size: 16px;
        text-align: center;
    }
    
    .product-card {
        width: 45%;
    }
    
    .process-image {
        width: 45%;
    }
    
    .machine-gallery {
        width: 300px;
        height: 220px;
    }
  }

  @media (max-width: 850px) {
    body{
        padding-top: 50px;
    }
    .info{
        display: none;
    }
    header i {
        display: block;
        width: auto;
        height: auto;
        margin-top: 10px;
    }
    header .logo {
        left: 10px;
        margin-left: 0;
    }
    section.contenido p.bandera_mitad,
    section.contenido p.bandera_mitad+ p.bandera_mitad{
        width: auto;
        margin: 20px;
    }

    header nav{
        white-space: initial;
    }
    nav ul{
        position: absolute;
        display: block;
        right: 10px;
        top: 50px;
        height: 0px;
        background-color: #B41504;
        overflow: hidden;
        border-radius: 0 0px 10px 10px;
        transition: height 0.3s ease;
        padding: 0 10px;
        z-index: 100;
    }
    nav ul.bandera_abierto{
        height: 240px;
    }

    nav ul li{
        display: block;
        width: 100%;
        text-align: center;
        margin: 0;
    }
    nav ul li + li{
        margin-top: 10px;
    }
    nav ul li a{
        border-radius: 10px 10px;
        width: auto;
    }
    nav ul li .bandera_seleccionado{
        border: solid #e8e8e8;
        border-width: 0px 4px;
        background-color: #e8e8e8;
        color: #791004;
    }

    header nav .menu{
        position: absolute;
        right: 0;
        top: 0;
        display: block;
        height: 50px;
        line-height: 50px;
        text-align: right;
        cursor: pointer;
        color: #FFFFFF;
        font-size: 16px;
        padding-left: 10px;
    }
    header nav .menu .menu_icono{
        float: right;
        display: block;
        width: 34px;
        height: 34px;
        margin: 8px;
        text-align: center;
        background: url(../img/menu.png) no-repeat center center;
        background-size: 100% 100%;
    }

    section.banner>div{
        position: absolute;
        top: 50%;
        left: 0%;
        right: 0%;
        padding: 0px 20px;
        transform: translate(0, -50%);
    }
    section.banner h1{
        white-space: normal;
    }

    .contacto .contacto_info>div{
        width: auto;
        float: none;
    }
    .contacto .contacto_info>div p{
        text-align: center;
    }
    .contacto .contacto_info>div span{
        float: none;
        margin: 0;
    }
    
    form {
        float: none;
        width: 100%;
    }

    section.contenido ul{
        max-width: 75%;
    }
    
    aside a{
        width: 34px;
        padding: 5px 10px 5px 10px;
    }
    
    .product-card {
        width: 100%;
    }
    
    .process-image {
        width: 100%;
    }
    
    .machine-gallery {
        width: 100%;
        height: 250px;
    }
    
    main.servicios section.contenido ul li {
        padding-left: 15px;
    }
  }

  @media (max-width: 480px) {
    section.banner h1 {
        font-size: 28px;
        line-height: 32px;
    }
    
    section.banner p {
        font-size: 16px;
        line-height: 22px;
    }
    
    section.contenido h2, section.contenido h3 {
        font-size: 24px;
        line-height: 30px;
    }
    
    .machine-gallery {
        height: 200px;
    }
  }

/* Banners específicos para cada sección con soporte para parallax */
section.banner {
    position: relative;
    background-size: cover;
    background-position: center center;
    padding-bottom: 35%;
    box-sizing: border-box;
    color: #FFFFFF;
    text-align: center;
    background: linear-gradient(rgba(185, 0, 0, 0.322), rgba(168, 1, 1, 0.842)), no-repeat center center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    overflow: hidden;
}

section.banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(185, 0, 0, 0.322), rgba(168, 1, 1, 0.842));
    z-index: 1;
}

section.banner .banner-bg {
    position: absolute;
    top: -40%;  /* Ajustado de -20% a -40% para subir más la imagen */
    left: 0;
    width: 100%;
    height: 160%; /* Aumentado de 140% a 160% para cubrir más área */
    background-size: cover;
    background-position: center 30%; /* Ajustado para mostrar la parte superior-central de la imagen */
    transform: translateY(0);
    transition: transform 0.1s ease-out;
    z-index: 0;
}

section.banner>div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
}

main.nosotros section.banner .banner-bg {
    background-image: url(../img/Empresa/Banner-Nosotros.jpg);
}

main.productos section.banner .banner-bg {
    background-image: url(../img/Empresa/Banner-Productos.jpg);
}

main.servicios section.banner .banner-bg {
    background-image: url(../img/Empresa/Banner-Servicios.jpg);
}

main.contacto section.banner .banner-bg {
    background-image: url(../img/Empresa/Banner-Servicios.jpg);
}

/* Estilos para las imágenes de proceso en la sección Nosotros */
.process-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.process-image {
    width: 400px;
    max-width: calc(50% - 40px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.process-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.process-image:hover img {
    transform: scale(1.05);
}

/* Galería de imágenes de máquinas en Servicios */
.machine-gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.machine-gallery {
    width: 480px;
    height: 360px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.machine-gallery:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.machine-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: block;
}

.machine-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Mejora de los estilos para los servicios */
main.servicios section.contenido ul {
    max-width: 800px;
    margin: 30px auto;
}

main.servicios section.contenido ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    text-align: left;
    border-left: 4px solid #B41504;
    transition: all 0.3s ease;
}

main.servicios section.contenido ul li:hover {
    background-color: rgba(180, 21, 4, 0.05);
    transform: translateX(5px);
}

main.servicios section.contenido ul li b {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

main.servicios h3 {
    margin-top: 50px;
    padding-bottom: 10px;
    border-bottom: 2px solid #B41504;
    display: inline-block;
}

/* Estilos mejorados para la lista de servicios */
main.servicios section.contenido ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 900px;
    margin: 30px auto;
    list-style: none;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

main.servicios section.contenido ul:hover {
    transform: none;
    box-shadow: none;
}

main.servicios section.contenido ul li {
    position: relative;
    background-color: #fff;
    width: calc(33.33% - 20px);
    min-width: 200px;
    padding: 20px;
    margin: 0;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 4px solid #B41504;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main.servicios section.contenido ul li:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    background-color: #fafafa;
}

main.servicios section.contenido ul li span {
    display: block;
    line-height: 1.4;
    font-size: 16px;
    position: relative;
}

main.servicios section.contenido ul li span:before {
    content: none;
}

main.servicios section.contenido ul li + li {
    border-bottom: 4px solid #B41504;
}






.contacto .contacto_info> .contact-buttons{
    margin-top: 30px;
    padding: 20px  20px 20px ;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0;
  
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: transform 0.2s, opacity 0.2s;
  margin: 0 auto;
  width: 210px;
}

.contact-button img {
    height: 30px;
    margin-right: 10px;
}

.contact-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-whatsapp {
  background-color: #25D366;
}

.btn-email {
  background-color: #ffffff;
  color: #333;
  border: 1px solid #ddd;
}

.btn-waze {
  background-color: #33ccff;
}









@media (max-width: 800px) {
    main.servicios section.contenido ul li {
        width: calc(50% - 20px);
    }
}

@media (max-width: 850px) {
    section.banner {
        padding-bottom: 400px;
    }
}

@media (max-width: 600px) {
    main.servicios section.contenido ul li {
        width: calc(100% - 20px);
        margin: 0 10px;
    }
}

/* Imagen de catálogo */
.catalog-image {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.catalog-image img {
    max-width: 100%;
    width: auto;
    max-height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.catalog-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 400px) {
    nav ul.bandera_abierto{
        height: 290px;
    }
    nav ul li:first-child{
        margin-top: 50px;
    }
    header nav .menu{
        font-size: 0;
    }
    .contact-button {
        width: auto;
    }
}
