*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
}

/* BODY */
body{
    background:#111;
    padding-top:70px; /* evita que el navbar tape */
}

/* NAVBAR */
.navbar{
    width:100%;
    height:70px;
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 40px;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
}

/* IZQUIERDA */
.nav-left{
    display:flex;
    align-items:center;
    gap:30px;
}

.logo-text{
    font-weight:bold;
    letter-spacing:4px;
    color:#000;
}

.nav-left nav a{
    text-decoration:none;
    color:#333;
    margin-right:20px;
    font-size:14px;
    transition:0.3s;
}

.nav-left nav a:hover{
    color:#ca2c2c;
}

/* BOTÓN WHATSAPP */
.whatsapp-btn{
    background:#ca2c2c;
    color:white;
    padding:10px 18px;
    border-radius:20px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.whatsapp-btn:hover{
    background:#a81f1f;
}

/* DERECHA (LOGO) */
.nav-right .logo-img{
    height:65px;
}

/* HERO */
.hero{
    height:100vh;
    background:url("empresa.png") center/cover no-repeat;
    position:relative;
}

/* CAPA OSCURA */
.overlay{
    background:linear-gradient(
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.6)
    );
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

/* TITULO */
.overlay h1{
    font-size:45px;
    max-width:800px;
    line-height:1.2;
}

/* SUBTITULO */
.overlay p{
    margin-top:15px;
    font-size:20px;
    color:#ddd;
}
.overlay{
    display:flex;
    flex-direction:column;
    justify-content:flex-start; /* antes era center */
    align-items:center;
    padding-top:180px; /* controla qué tan arriba */
}
/* RESPONSIVE */
.mission-box{
    position:absolute;
    bottom:10px;
    right:30px;
    background:white;
    color:#222;
    padding:25px;
    border-radius:15px;
    width:450px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    z-index:5;
}

/* TEXTO */
.mission-box p{
    font-size:14px;
    line-height:1.5;
    margin-bottom:20px;
}

/* BOTÓN */
.btn-mission{
    display:inline-block;
    margin-top:25px;
    background:#ca2c2c;
    color:white;
    padding:18px 18px;
    border-radius:10px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.btn-mission:hover{
    background:#a81f1f;
}
.trabajos{
    padding:60px 40px;
    text-align:center;
    background:#ffffff;
}

.trabajos h2{
    font-size:30px;
    margin-bottom:15px;
    font-family: 'gagalin', sans-serif;
    color:#ac323a;
}

.trabajos p{
    max-width:700px;
    margin:auto;
    color:#555;
    margin-bottom:40px;
    font-family: 'Poppins', sans-serif;
}

.galeria{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.galeria img{
    width:75%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
    transition:0.3s;
}

.galeria img:hover{
    transform:scale(1.05);
}
.texto-exp{
    display:flex;
    align-items:flex-start; /* alinea texto con icono */
    gap:10px; /* espacio entre imagen y texto */
    max-width:700px;
    margin:auto;
    color:#555;
    line-height:1.5;
}

.carro-exp{
    height:30px;
    margin-top:5px; /* ajuste fino para alineación */
}
.chicos{
    width:100%;
    padding:20px 40px;
    background:#ffffff;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:200px;
}

/* TEXTO */

.chicos h2{
    font-size:30px;

    font-family:'Gagalin', sans-serif;

    color:#0c0c0c;

    max-width:650px;

    line-height:1.3;

    margin:0;
}

/* BOTON */

.contactanos-btn{
    text-decoration:none;

    background:#b62a2a;
    color:#ffffff;

    padding:14px 28px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

    white-space:nowrap;
}

.contactanos-btn:hover{
    transform:translateY(-3px);
}
.beneficios{
    width:100%;
    padding:30px 40px;
    background:#F2ECE6;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:30px;
    flex-wrap:wrap;
}

.beneficio{
    width:320px;
    min-height:200px;
    text-align:center;
}

/* ICONOS */

.beneficio i{
    font-size:45px;

    color:#963030;

    margin-bottom:20px;
}

/* TITULO */

.beneficio h2{
    font-size:28px;

    margin-bottom:18px;

    color:#2B2B2B;

    font-weight:600;
}

/* TEXTO */

.beneficio p{
    color:#6B6B6B;

    line-height:1.8;

    font-size:15px;
}

/* RESPONSIVE */

/* SECCIÓN NOSOTROS */

.nosotros{
    width:100%;
    padding:60px 5%;
    background:#f8f8f8;
}

.nosotros-contenido{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.texto{
    flex:1;
    min-width:350px;
    font-size:15px;

}

.subtitulo{
    color:#b22222;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.texto h2{
    font-size:40px;
    line-height:1.1;
    margin:20px 0;
    color:#111;
}

.texto h2 span{
    color:#b22222;
}

.texto p{
    color:#555;
    font-size:16px;
    line-height:1.8;
    margin-bottom:20px;
}

.btn{
    display:inline-block;
    margin-top:20px;
    background:#b22222;
    color:white;
    text-decoration:none;
    padding:16px 35px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
  }

.btn:hover{
    background:#8f1c1c;
}

.imagen{
    flex:1;
    min-width:500px;
    position:relative;
}

/* Solo la imagen principal */
.imagen > img{
    width:100%;
    border-radius:15px;
    display:block;
}

.tarjeta{
    position:absolute;
    top:0;
    right:15px;

    width:250px;
    background:#b22222;
    color:white;
    padding:20px;
    border-radius:15px;

    display:flex;
    align-items:center;
    gap:15px;
}

.tarjeta img{
    width:30px;
    height:30px;
    flex-shrink:0;
    margin:0;
}

.tarjeta p{
    margin:3px;
    line-height:1.4;
    font-size:12px;
}

/* ESTADÍSTICAS */

.estadisticas{
    background:#f2efed;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:0px 4%;
}

.item{
    text-align:center;
    padding:20px;
    border-right:1px solid #ddd;
}

.item:last-child{
    border-right:none;
}

.item h3{
    font-size:20px;
    color:#111;
    margin-bottom:10px;
}

.item span{
    color:#b22222;
    font-weight:bold;
    letter-spacing:2px;
    display:block;
    margin-bottom:15px;
}

.item p{
    color:#666;
    line-height:1.6;
}

/* RESPONSIVE */

.servicios{
    padding:50px 5%;
    background:#f7f7f7;
}

.titulo-servicios{
    text-align:center;
    margin-bottom:40px;
}

.titulo-servicios span{
    color:#b22222;
    font-weight:600;
    letter-spacing:3px;
}

.titulo-servicios h2{
    font-size:40px;
    margin:20px 0;
    line-height:1.1;
}

.titulo-servicios h2 span{
    color:#b22222;
}

.titulo-servicios p{
    max-width:700px;
    margin:auto;
    color:#555;
    font-size:16px;
}

.contenedor-servicios{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.card{
    width:180px;
    height: 650px;
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    text-align:center;
    position:relative;
    padding-bottom:25px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.img-servicio{
    width:100%;
    height:240px;
    object-fit:cover;
}

.icono{
    width:80px;
    height:80px;
    background:white;
    border-radius:50%;
    position:absolute;
    top:200px;
    left:50%;
    transform:translateX(-50%);
    box-shadow:0 3px 10px rgba(0,0,0,.15);

    display:flex;
    justify-content:center;
    align-items:center;
}

.icono img{
    width:40px;
}

.card h3{
    margin-top:55px;
    font-size:20px;
}

.card p{
    padding:15px 25px;
    color:#666;
    line-height:1.7;
    font-size:15px;
}

.linea{
    width:50px;
    height:3px;
    background:#b22222;
    margin:20px auto 0;
}
.contenedor-servicios{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:nowrap;
    overflow-x:auto;
}

.procesos{
    padding:20px 5%;
    background:#f7f7f7;
}

.procesos-2{
    text-align:center;
    margin-bottom:30px;
}

.procesos-2 h3{
    color:#b22222;
}

.procesos-2 h2{
    font-size:50px;
}
.procesos-2 p{
   margin-bottom:80px;
}

.contenedor-procesos{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;

}

.card-proceso{
    width:280px;
    text-align:center;
    position:relative;
    
}

.img-proceso{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:15px;
}

.numero{
    position:absolute;
    top:-50px;
    left:50%;
    transform:translateX(-50%);

    width:45px;
    height:45px;

    background:#b22222;
    color:white;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:bold;
}

.pequeño{
    position:absolute;
    top:-18px;
    left:50%;
    transform:translateX(-50%);

    width:90px;
    height:90px;

    background:white;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;
}

.pequeño img{
    width:45px;
}
.catalogo{
    background:#f7f7f7;
    padding:50px 5% 20px;
}

.titulo-catalogo{
    text-align:center;
}

.titulo-catalogo h3{
    color:#b22222;
}

.titulo-catalogo h2{
    color:black;
    font-size:50px;
}

.titulo-catalogo h2 span{
    color:#b22222;
}

.titulo-catalogo p{
    color:black;
}
.collage-section{
    padding:8px 10%;
    width:100%;
    background:#f7f7f7;
    text-align:center;
}

/* Ocultar radios */

.collage-section input{
    display:none;
}

/* Slider */

.slider{
    width:100%;
}

/* Ocultar todas las imágenes */

.slide{
    display:none;
}

#c1:checked ~ .slider .slide1,
#c2:checked ~ .slider .slide2,
#c3:checked ~ .slider .slide3,
#c4:checked ~ .slider .slide4,
#c5:checked ~ .slider .slide5,
#c6:checked ~ .slider .slide6,
#c7:checked ~ .slider .slide7,
#c8:checked ~ .slider .slide8,
#c9:checked ~ .slider .slide9
{
    display:block;
}

/* Imagen */

.slide img{
    width:90%;
    max-width:1350px;
    height:400px;
    border-radius:10px;
    display:block;
    margin:auto;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    transition:.4s;
}

.slide img:hover{
    transform:scale(1.01);
}

/* Botones */

.flechas{
    margin-top:15px;
}

.flechas label{
    display:inline-block;
    width:30px;
    height:30px;
    line-height:30px;
    background:#b22222;
    color:white;
    border-radius:50%;
    cursor:pointer;
    margin:0 8px;
    font-weight:bold;
    transition:.3s;
}

.flechas label:hover{
    background:#8f1c1c;
}
.catalogo-productos{
    display:flex;
    gap:40px;
    padding:80px 5%;
    background:#f7f7f7;
    align-items:flex-start;
}

.info-catalogo{
    width:30%;
}

.info-catalogo h4{
    color:#b22222;
    margin-bottom:15px;
}

.info-catalogo h2{
    font-size:55px;
    line-height:1.1;
    margin-bottom:20px;
}

.info-catalogo h2 span{
    color:#b22222;
}

.info-catalogo p{
    color:#555;
    line-height:1.7;
}
.beneficios-catalogo{
    display:flex;
    gap:20px;
    margin:30px 0;
}

.beneficio-cat{
    display:flex;
    gap:8px;
    align-items:flex-start;
}

.beneficio-cat img{
    display: flex;
    width:35px;
    height:25px;
    align-items: center;


}

.btn-catalogo{
    display:inline-block;
    background:#b22222;
    color:white;
    text-decoration:none;
    padding:15px 25px;
    border-radius:10px;
    margin-top:15px;
}

.productos{
    width:70%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.producto{
    background:white;
    padding:20px;
    border-radius:15px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    transition:.3s;
}

.producto:hover{
    transform:translateY(-5px);
}

.producto img{
    width:100%;
    height:180px;
    object-fit:contain;
}

.producto h3{
    margin-top:15px;
}

.lin{
    width:40px;
    height:3px;
    background:#b22222;
    margin:10px 0;
}
.clientes-prime{
    padding:0px 5% 40px;
    background:#f7f7f7;
}

.info-error{
    text-align:center;
}

.info-error h4{
    color:#b22222;
    font-size:20px;
    margin-bottom:5px;
}

.info-error h2{
    font-size:40px;
    margin-bottom:5px;
}

.info-error span{
    color:#b22222;
}

.info-error p{
    color:#555;
    font-size:15px;
    margin-bottom:25px;

}

/* CONTENEDOR DE TARJETAS */

.icono-clientes{
    display:grid;
    grid-template-columns:repeat(6,2fr);
    gap:20px;
}

/* TARJETAS */

.clientes{
    background:white;
    border-radius:10px;
    min-height:170px;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

    transition:.3s;
}

.clientes:hover{
    transform:translateY(-5px);
}

.clientes img{
    width:170px;
    height:100px;
    object-fit:contain;
}
.patricio{
    background:#f2efed;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:5px 4%;
}

.dato{
    text-align:center;
    padding:20px;
    border-right:1px solid #ddd;
}

.dato:last-child{
    border-right:none;
}
.img-clientes img{
    width:50px;
    height:50px;
    object-fit:contain;
}
.rata h3{
    font-size:20px;
    color:#2B2B2B;
    margin-bottom:10px;
}
.rata p{
    color:#666;
    line-height:1.6;
}
.cotiza{
    width:100%;
    padding:40px 15% 60px 15%;
    background:#ffffff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.texto-cotiza{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.cotiza h2{
    margin:0;
    font-size:30px;
    font-family:'Gagalin', sans-serif;
    color:#0c0c0c;
}

.texto-cotiza p{
    margin:0;
    font-size:18px;
    color:#555;
    max-width:600px;
}

.cotiza-btn{
    text-decoration:none;
    background:#b62a2a;
    color:#fff;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
    white-space:nowrap;
}
.cotiza-btn:hover{
    transform:translateY(-5px);
}


.footer{
    width:100%;
    background:#161616;
    padding:60px 5%;
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:50px;
    color:#F2ECE6;
}

/* CAJAS */

.footer-box{
    display:flex;
    flex-direction:column;
}

/* LOGO */

.footer-empresa img{
    width:250px;
    margin-bottom:15px;
    
}



.footer-empresa p{
    line-height:1.5;
    color:#f2ece6da;
    max-width:350px;
    
}
.footer-box h2{
    font-size:18px;
    margin-bottom:20px;
    font-family:'Playfair Display', serif;
}
/* TITULOS */

.footer-box h3{
    font-size:24px;
    margin-bottom:20px;
    font-family:'Playfair Display', serif;
}

/* TEXTOS */

.footer-box p{
    margin-bottom:12px;
    color:#f2ece6da;
    line-height:1.7;
    transition:.3s;
}
.footer-box span{
    color:#b22222;
}
/* EFECTO */

.footer-box p:hover{
    transform:translateX(5px);
    color:#fff;
}
.mapa iframe {
  border-radius: 10px;
  filter: grayscale(20%);
  width: 400px;
  height:200px;
}
.redes {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.redes a {
  color: #fff;
  background-color: #222;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
}

.redes a:hover {
  background-color: #c62828; /* rojo de tu marca */
  transform: translateY(-3px);
}
html{
    scroll-behavior:smooth;
}
.footer-line {
  width:100%;
  height: 50px;
  background-color: #a11717;
}
nav{
    display:flex;
    gap:30px;
    align-items:center;
}

.dropdown{
    position:relative;
}

.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;

    background:white;
    list-style:none;

    padding:10px 0;
    min-width:180px;

    box-shadow:0 4px 12px rgba(0,0,0,.08);
    border-radius:10px;
}

.dropdown-menu li{
    padding:10px 20px;
}

.dropdown-menu li a{
    text-decoration:none;
    color:black;
    display:block;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

.cotizacion-modal{
    display:none;
    position:fixed;
    top:20px;;
    left:0;
    width:100%;
    height:100vh;
    background:rgba(0,0,0,.75);
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.cotizacion-contenido{
    position:relative;
    width:650px;
    max-width:50%;
    height:85vh;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
}

.cotizacion-contenido iframe{
    width:100%;
    height:100%;
    border:none;
}

.cerrar-modal{
    position:absolute;
    top:10px;
    right:15px;
    font-size:30px;
    font-weight:bold;
    cursor:pointer;
    z-index:10;
    color:#000;
}
#abrir-cotizacion:checked ~ .cotizacion-modal{
    display:flex;
}
*{
    margin:0;

}
body{
    width:100%;
    background:#f7f7f7;
    padding-top:25px;
}

.header-servicio{
    background:#0a0a0a;
    padding:8px 5%;
}

.btn-regresar{
    color:white;
    text-decoration:none;
    font-weight:bold;
}
.btn-regresar img{
    width:170px;
    height:auto;
    object-fit:contain;
    display:block;
    margin-left:auto;
}

.detalle-servicio{
    padding:50px 5%;
}

.servicio-info h3{
    color:#a14444;
    font-size:18px;
    letter-spacing:4px;
    margin-bottom:20px;
}

.servicio-info h3 span{
    display:block;
}

.servicio-info h2{
    font-size:90px;
    margin-bottom:10px;
}

.servicio-info p{
    max-width:900px;
    line-height:1.8;
    font-size:22px;
}

/* VIDEO */

.video-area{
    padding:40px 5%;
    text-align:center;
}

.video-area video{
    width:80%;
    max-width:1500px;
    border-radius:20px;
    align-content: center;
}

/* COLLAGE */

.collage-area{
    padding:0px 5%;
    text-align:center;
}

.collage-area img{
    width:100%;
    border-radius:20px;
}

/* TRABAJOS */

.trabajos{
    padding:80px 5%;
}

.trabajos h2{
    text-align:LEFT;
    margin-bottom:40px;
    font-size:40px;
}

.galeria-trabajos{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.galeria-trabajos img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:15px;
}

.cotizar{
    text-align:center;
    padding:80px 0;
}

.card-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.card-link:hover .card{
    transform:translateY(-8px);
    transition:0.3s;
    cursor:pointer;
}

/* =========================================================
   RESPONSIVE NUEVO - CELULAR
   Todo lo de arriba conserva el diseño de computadora.
   Estas reglas SOLO entran cuando la pantalla mide 768px o menos.
   ========================================================= */
@media (max-width:768px){

    /* GENERAL */
    html, body{
        width:100%;
        max-width:100%;
        overflow-x:hidden;
    }

    body{
        padding-top:0;
    }

    /* NAVBAR */
    .navbar{
        position:relative;
        top:auto;
        left:auto;
        width:100%;
        height:auto;
        padding:18px 14px;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:14px;
    }

    .nav-left{
        width:100%;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:14px;
    }

    .logo-text{
        font-size:24px;
        letter-spacing:6px;
        text-align:center;
    }

    nav{
        width:100%;
        display:flex;
        flex-direction:row;
        justify-content:center;
        align-items:center;
        flex-wrap:wrap;
        gap:10px 24px;
    }

    .nav-left nav a{
        display:inline-block;
        margin:0;
        font-size:14px;
    }

    .nav-right{
        display:none;
    }

    .whatsapp-btn{
        padding:10px 20px;
        font-size:14px;
        border-radius:22px;
    }

    /* HERO / PORTADA */
    .hero{
        height:700px;
        background-size:cover;
        background-position:center top;
    }

    .overlay{
        height:100%;
        padding:250px 18px 20px;
        justify-content:flex-start;
        align-items:center;
    }

    .overlay h1{
        margin-top:0;
        max-width:620px;
        font-size:30px;
        line-height:1.15;
    }

    .overlay p{
        margin-top:16px;
        max-width:650px;
        font-size:16px;
        line-height:1.45;
    }

    /* CAJA DE MISIÓN */
    .mission-box{
        bottom:18px;
        right:15px;
        width:calc(100% - 30px);
        max-width:360px;
        padding:14px;
        border-radius:12px;
    }

    .mission-box p{
        margin:0 0 10px 0;
        font-size:11px;
        line-height:1.4;
    }

    .mission-box .btn-mission{
        display:inline-block;
        width:auto;
        margin-top:0;
        padding:6px 10px;
        border-radius:6px;
        font-size:10px;
        line-height:1.2;
        white-space:nowrap;
    }

    /* TRABAJOS / GALERÍA */
    .trabajos{
        padding:40px 20px;
    }

    .trabajos h2{
        font-size:28px;
        text-align:center;
    }

    .trabajos p,
    .texto-exp{
        width:100%;
        max-width:100%;
    }

    .galeria{
        grid-template-columns:1fr;
        gap:18px;
    }

    .galeria img{
        width:100%;
        height:auto;
        max-height:340px;
        object-fit:cover;
    }

    /* FRANJA CON BOTÓN */
    .chicos{
        padding:35px 20px;
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .chicos h2{
        max-width:100%;
        font-size:26px;
    }

    .contactanos-btn{
        padding:12px 22px;
        font-size:14px;
    }

    /* BENEFICIOS */
    .beneficios{
        padding:40px 20px;
        gap:30px;
    }

    .beneficio{
        width:100%;
        min-height:auto;
    }

    .beneficio h2{
        font-size:24px;
    }

    /* NOSOTROS */
    .nosotros{
        padding:40px 20px;
    }

    .nosotros-contenido{
        flex-direction:column;
        gap:30px;
    }

    .texto,
    .imagen{
        width:100%;
        min-width:0;
        flex:none;
    }

    .texto h2{
        font-size:32px;
    }

    .texto p{
        font-size:15px;
        line-height:1.7;
    }

    .imagen > img{
        width:100%;
        height:auto;
    }

    .tarjeta{
        position:static;
        width:100%;
        margin-top:15px;
        padding:15px;
    }

    /* ESTADÍSTICAS */
    .estadisticas{
        grid-template-columns:1fr;
        gap:0;
        padding:0 20px;
    }

    .item{
        border-right:none;
        border-bottom:1px solid #ddd;
    }

    .item:last-child{
        border-bottom:none;
    }

    /* SERVICIOS */
    .servicios{
        padding:40px 20px;
    }

    .titulo-servicios{
        margin-bottom:30px;
    }

    .titulo-servicios h2{
        font-size:32px;
    }

    .titulo-servicios p{
        font-size:15px;
    }

    .contenedor-servicios{
        width:100%;
        flex-direction:column;
        flex-wrap:nowrap;
        align-items:center;
        gap:22px;
        overflow:visible;
    }

    .card{
        width:100%;
        max-width:360px;
        height:auto;
        min-height:0;
        padding-bottom:28px;
    }

    .img-servicio{
        height:220px;
    }

    .icono{
        top:180px;
    }

    /* PROCESOS */
    .procesos{
        padding:40px 20px;
    }

    .procesos-2 h2{
        font-size:32px;
    }

    .procesos-2 p{
        margin-bottom:60px;
    }

    .contenedor-procesos{
        flex-direction:column;
        align-items:center;
        gap:65px;
    }

    .card-proceso{
        width:100%;
        max-width:340px;
    }

    .img-proceso{
        height:auto;
        max-height:360px;
    }

    /* CATÁLOGO / COLLAGE */
    .catalogo{
        padding:40px 20px 20px;
    }

    .titulo-catalogo h2{
        font-size:32px;
    }

    .collage-section{
        padding:10px 15px;
    }

    .slide img{
        width:100%;
        max-width:100%;
        height:auto;
    }

    /* PRODUCTOS */
    .catalogo-productos{
        padding:40px 20px;
        flex-direction:column;
        gap:30px;
    }

    .info-catalogo,
    .productos{
        width:100%;
    }

    .info-catalogo h2{
        font-size:34px;
    }

    .beneficios-catalogo{
        flex-direction:column;
        gap:14px;
    }

    .productos{
        grid-template-columns:1fr;
        gap:18px;
    }

    .producto img{
        height:180px;
    }

    /* CLIENTES */
    .clientes-prime{
        padding:30px 20px;
    }

    .info-error h2{
        font-size:30px;
    }

    .icono-clientes{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .clientes{
        min-height:120px;
        padding:10px;
    }

    .clientes img{
        width:100%;
        max-width:125px;
        height:80px;
    }

    .patricio{
        grid-template-columns:1fr;
        gap:0;
        padding:0 20px;
    }

    .dato{
        border-right:none;
        border-bottom:1px solid #ddd;
    }

    .dato:last-child{
        border-bottom:none;
    }

    /* COTIZACIÓN */
    .cotiza{
        padding:40px 20px;
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:24px;
    }

    .cotiza h2{
        font-size:28px;
    }

    .texto-cotiza p{
        font-size:15px;
    }

    .cotiza-btn{
        padding:11px 20px;
        font-size:14px;
    }

    /* FOOTER */
    .footer{
        grid-template-columns:1fr;
        padding:40px 20px;
        gap:35px;
        text-align:center;
    }

    .footer-box{
        align-items:center;
    }

    .footer-empresa img{
        width:180px;
        max-width:100%;
    }

    .mapa{
        width:100%;
    }

    .mapa iframe{
        width:100%;
        max-width:360px;
        height:200px;
    }

    .footer-line{
        height:30px;
    }

    /* MODAL DE COTIZACIÓN */
    .cotizacion-modal{
        top:0;
        padding:15px;
    }

    .cotizacion-contenido{
        width:100%;
        max-width:100%;
        height:85svh;
    }

    /* PÁGINAS DE SERVICIO */
    .header-servicio{
        padding:10px 20px;
    }

    .btn-regresar img{
        width:120px;
    }

    .detalle-servicio{
        padding:35px 20px;
    }

    .servicio-info h2{
        font-size:42px;
        line-height:1.05;
    }

    .servicio-info p{
        font-size:16px;
        line-height:1.6;
    }

    .video-area{
        padding:25px 20px;
    }

    .video-area video{
        width:100%;
    }

    .collage-area{
        padding:0 20px;
    }

    .galeria-trabajos{
        grid-template-columns:1fr;
    }

    .galeria-trabajos img{
        height:auto;
        max-height:340px;
    }

    .cotizar{
        padding:50px 20px;
    }
}

/* AJUSTE EXTRA PARA CELULARES MUY ANGOSTOS */
@media (max-width:480px){

    .navbar{
        padding:16px 10px;
    }

    nav{
        gap:9px 16px;
    }

    .nav-left nav a{
        font-size:13px;
    }

    .hero{
        height:680px;
        background-position:center top;
    }

    .overlay{
        padding-top:235px;
    }

    .overlay h1{
        font-size:27px;
    }

    .overlay p{
        font-size:14px;
    }

    .mission-box{
        width:calc(100% - 24px);
        right:12px;
        bottom:12px;
        padding:12px;
    }

    .mission-box p{
        font-size:10px;
    }

    .mission-box .btn-mission{
        font-size:9px;
        padding:6px 9px;
    }

    .icono-clientes{
        grid-template-columns:1fr 1fr;
    }

    .servicio-info h2{
        font-size:36px;
    }
}
