   
   *{
    font-family: 'Roboto';
    src: url(./fonts/roboto.woff2) format('woff2');
  
   }
   @keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
 body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto';
    src: url(./fonts/roboto.woff2) format('woff2');
    }
    .header {
    background-color: #c50a0a; /* El color de fondo del header */
    width:100%;
    padding: 0;
    margin: 0;
    height: auto;
    display: flex;
    justify-content: space-around;
padding-top: 1%;
padding-bottom: 1%;
  }
  .header-logo{
    display: flex;
    align-items: center;
    height: auto;
    width: 25%;
  }
  .header-contac{
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 25%;
  }
  .header-contac button,   .header-complemento button{
    padding: 2%;
    margin: 2%;
    background-color:#25d365e3 ;
    border-radius: 12px;
    width: 45%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }
  .header-contac button:hover,   .header-complemento button:hover{
    animation: pulse 1s infinite;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  }
 .header-contac button a,   .header-complemento button a{
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  }
  .header-contac button a i{
    padding-right: 3px;
  }
  .header-complemento{
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 28%;
  }
.home {
    width: 100%; /* Asegura que el contenedor tome todo el ancho de la pantalla */
    min-height: 100vh; /* Opcional: ajusta la altura mínima al 100% de la altura de la ventana gráfica */
    background-image: url('../img/empresa-de-fumigacion-en-medellin.webp');
    background-position: center; /* Centra la imagen de fondo */
    background-size: cover; /* Asegura que la imagen cubra completamente el contenedor */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
}
/*formulariooo*/
.contact-form {
 padding: 20px;
    padding-left:8%;
   height:95%;
    width: 400px; /* O ajusta según la necesidad */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Sombra suave alrededor del formulario */
    text-align: center; /* Centrar el texto y los elementos del formulario */
padding-top: 6px;
}
#contactForm label {
    display: block; /* Los labels en su propia línea */
    margin-top: 10px; /* Margen superior */
    margin-bottom: 2px; /* Espaciado antes de cada input */
    color: #333333; /* Color del texto de las etiquetas */
}
#contactForm textarea {
    width: 100%; /* Ocupa todo el ancho del contenedor del formulario */
    height: 130px; /* Ajusta esto según cuánto quieras que sea alto el cuadro de texto */
    padding: 7px; /* Espacio interior alrededor del texto */
    margin-bottom: 15px; /* Espaciado después del textarea */
    border: 1px solid #c50a0a; /* Borde del color azul característico */
    border-radius: 6px; /* Bordes redondeados para el textarea */
    box-sizing: border-box; /* El width incluye el padding y border */
    resize: vertical; /* Permite al usuario cambiar el tamaño verticalmente si es necesario */
}
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"],
#contactForm textarea {
    width: calc(100% - 20px); /* Ancho menos el padding */
    padding: 8px; /* Espacio interior para escribir */
    margin-bottom: 15px; /* Espaciado después de cada input */
    border: 1px solid#c50a0a; /* Borde del color azul característico */
    border-radius: 12px; /* Bordes redondeados para los inputs y textarea */
    border-width:2px ;
    box-sizing: border-box; /* El width incluye el padding y border */
}
#contactForm input[type="submit"] {
    margin-left: 5rem;
    width: 50%; /* El botón de envío ocupa todo el ancho */
    padding: 10px; /* Espacio interior del botón */
    background-color:#c50a0a; /* Color de fondo azul para el botón */
    color: white; /* Texto blanco en el botón */
    border: none; /* Sin bordes */
    border-radius: 5px; /* Bordes redondeados del botón */
    cursor: pointer; /* Cursor de mano al pasar por encima */
    margin-top: 3px; /* Margen superior para separar del último input/textarea */
}
#contactForm input[type="submit"]:hover {
    background-color: #2EB43B; /* Color del botón al pasar el cursor por encima */
}
#contactForm input:invalid,
#contactForm textarea:invalid {
    border-color:  #c50a0a;
     /* Color de borde para campos inválidos */
}
.contact-form h2 {
    margin-bottom: 15px;
}
.contact-form form {
    display: flex;
    flex-direction: column;
}
/*fORMULARIO*/
/*BENEFICIOS SECCIÓN*/
  .beneficios-section {/*contenedor padre*/
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color:#c50a0a ;
    height: auto;
   padding-bottom: 2rem;  
}
.beneficios-imagen img{
    width: 40%;
}
.beneficios-imagen{
width: 50%;
display: flex;
align-items: center;
justify-content: center;

}
.beneficios-contenido {
    width: 50%;
align-items: center;
justify-content: center;
padding-bottom: 2%;
}
.beneficios-contenido h2 {
    color: #fff; /* Ajusta el color según tu esquema */
    font-size: 25px;
    font-weight: 700;
}
.beneficios-contenido p {
    color: #ffffffb6; /* Color del texto */
    width:80%;
    font-size: 22px;
    line-height: 25px;
}
.beneficios-contenido button {
    background-color: #2EB43B; /* Color de fondo del botón */
    font-weight: 700;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px; /* Bordes redondeados del botón */
    margin-top: 23px; /* Espacio sobre el botón */
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.beneficios-contenido button a{
    color: #fff;
    text-decoration: none;
    font-size: 25px;
}
.beneficios-contenido button:hover {
    animation: pulse 1s infinite;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);

    }
  .sectores {
    width: 100%;
    height: auto;
    background-image:url(../img/fumigacion-de-plagas-medellin.webp); 
    color:#fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left ;
    margin: 0;
    padding: 0%;
}
  .sectores h2{
        font-weight: 700;
        font-size: 30px;
        text-align: center;
  }
  .sectores p{
    font-size: 20px;
    text-align: center;
    width: 100%;
    font-size: 25px;
    height: auto;
  }
.plagas{
       width:100%;
         height:auto;
         margin-right:0;
         padding: 0;
         margin: 0;
         padding-top: 2%;
         display: flex;
         justify-content: center;
         padding-bottom: 3%;
         background-color:#c50a0a ;
}
.plagas img {
    width: 80%;
    height: 70vh;
    }
.grid-container {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto); /* Crea dos filas */
    gap: 10px;
    background-image:url(../img/fumigacion-de-plagas-medellin.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.grid-item {
    background-color: #fff; /* Fondo de cada tarjeta */
    
    border-radius: 10px; /* Bordes redondeados de las tarjetas */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra suave para las tarjetas */
    margin: 22px; /* Margen alrededor de las tarjetas */
    margin-top: 10px;
    transition: transform 0.3s ease-in-out; /* Transición para el efecto de hover */
    height: 33rem;
    width: 20rem;
    justify-self: center;
    align-self: center;   
}
.grid-item:hover {
    transform: scale(1.03); /* Efecto de escala al pasar el ratón */
}
.grid-item img {
    width: 90%; /* Las imágenes ocupan todo el ancho de la tarjeta */
    height: 15rem; /* Altura automática para mantener la proporción */
    margin: 10px 10px;
    border-radius: 1rem;
}
.grid-item h3 {
    padding: 0 15px; /* Relleno para el título dentro de la tarjeta */
    text-align: center;
}

.grid-item p {
    padding: 0 10px; /* Relleno para el párrafo dentro de la tarjeta */
 text-align: center;
 color: #000;
}
.grid-item .btn {
    display: block;
    width: 80%; /* Anchura del botón */
    padding: 10px;
    margin: 15px auto; /* Centra el botón horizontalmente con margen automático */
    background-color:#fff; /* Color de fondo del botón */
    color: #000; /* Color del texto del botón */
    border: solid 1px #000 ;
    text-align: center; /* Alineación del texto dentro del botón */
    text-decoration: none; /* Elimina el subrayado del texto del enlace */
    border-radius: 5px; /* Bordes redondeados del botón */
    transition: background-color 0.3s; /* Transición para el color de fondo del botón al hacer hover */
}
.grid-item .btn:hover{
    background-color:#a10101;
    color: #fff; /* Color de fondo del botón al hacer hover */ 
}
.btn:hover {
    background-color:#a10101;
    color: #fff; /* Color de fondo del botón al hacer hover */
}
.contacto ul {
    list-style: none; /* Elimina los estilos por defecto de la lista */
    padding: 0;
    color: white; /* Cambia el color del texto */
    background-color: black; /* Cambia el color de fondo */
}
.contacto ul li {
    margin-bottom: 10px; /* Espacio entre elementos de la lista */
}
.contacto ul li i {
    color: #c50a0a; /* Cambia el color de los íconos */
    margin-right: 8px; /* Espacio entre el ícono y el texto */
}
.butn {
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.butn:hover {
    background-color: #2980b9;
}
.copyright {
    font-size: 14px;
}
/* subpaginas */
.contenido-subp{
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    height: auto;
    justify-content: center;
}
.texto{
    width: 50%;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 2%;
}
.texto h1{
text-align: center;
margin-top: 2%;
}
.texto p{
    width: 95%;
    font-size: 18px;
}
.imagen-adicional{
    width: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.imagen-adicional img{
    width: 60%;
    height: 70vh;
}
.contenido-subp .texto button{
background-color:  #c50a0a;
border-radius: 10px;
}
.contenido-subp .texto button a{
 color: #fff;
 font-size: 20px;   
 text-decoration: none;
}
.contenido-subp .texto button:hover{
    animation: pulse 1s infinite;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}
/*boton whatsApp inferior derecha*/
.whatsapp-fixed {
    position: fixed;
    right: 8px; /* Ajusta según tus preferencias */
    bottom: 192px; /* Distancia desde el fondo para no superponer el footer */
    background-color: #25d366; /* Color verde de WhatsApp */
    color: white;
    padding: 10px;
    border-radius: 50%; /* Circular */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px; /* Tamaño del círculo */
    height: 40px; /* Tamaño del círculo */
    text-decoration: none;
    z-index: 1000; /* Asegúrate que esté sobre otros elementos */
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* Opcional: Añade sombra para mejor visibilidad */
}
.whatsapp-fixed i {
    font-size: 47px; /* Aumenta el tamaño del ícono */
}
.whatsapp-fixed:hover{transform: scale(1.03);}
.call-fixed {
    position: fixed;
    right: 8px; /* Ajusta según tus preferencias */
    bottom: 265px; /* Ajusta la posición para no superponer el botón de WhatsApp */
    background-color: #007BFF; /* Color azul para el botón de llamadas */
    color: white;
    padding: 10px;
    border-radius: 50%; /* Circular */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px; /* Tamaño del círculo */
    height: 45px; /* Tamaño del círculo */
    text-decoration: none;
    z-index: 1000; /* Asegúrate que esté sobre otros elementos */
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* Opcional: Añade sombra para mejor visibilidad */
}
.call-fixed img {
width: 80px;/* Aumenta el tamaño del ícono del teléfono */
}
.call-fixed:hover{
    transform: scale(1.03); 
}
/*Nosotros section*/
.nosotros-section {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    height:auto; 
    padding-bottom: 2%;
}
.nosotros-section .nosotros-contenido{
width: 50%;
display: flex;
flex-direction: column;
height: auto;
padding: 0;
margin: 0;
justify-content: center;
}


.nosotros-section .nosotros-imagen{
width: 50%;
height: auto;
text-align: center;
}
.nosotros-section .nosotros-imagen img{
    width: 90%;
    height: 60vh;
}
.nosotros-contenido h2 {
    color:#c50a0a ; /* Ajusta el color según tu esquema */
    font-size:30px;
    font-weight: 600;
    padding-left: 2%;
   
}

.nosotros-contenido p {
    color:#000000; /* Color del texto */
    width: 95%;
    padding: 2%;
    font-size: 22px;
    line-height: 25px;
}
.nosotros-contenido button  {
    background-color:#c50a0a; /* Color de fondo del botón */
    color: white; /* Color del texto del botón */
    border: none;
    width: 35%;
    margin-left: 5%;
    margin-bottom: 2%;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px; /* Bordes redondeados del botón */
    text-decoration: none;
}
.nosotros-contenido button a{
    color: #fff;
    text-decoration: none;
    font-size: 25px;
}
.nosotros-contenido button:hover {
    animation: pulse 1s infinite;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    }
   
    button:hover{
        animation: pulse 1s infinite;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);  
    }
.blog{
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    text-align: center;
}

.grid-blog {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto); /* Crea dos filas */
    gap: 10px;
    background-color: #fff;
    width: 100%;
}
.grid-item-b{
    background-color: #fff; /* Fondo de cada tarjeta */
    border-radius: 10px; /* Bordes redondeados de las tarjetas */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra suave para las tarjetas */
    margin: 22px; /* Margen alrededor de las tarjetas */
    transition: transform 0.3s ease-in-out; /* Transición para el efecto de hover */
    height: 33rem;
    width: 20rem;
    justify-self: center;
    align-self: center;    
}
.grid-item-b:hover {
    transform: scale(1.03); /* Efecto de escala al pasar el ratón */
}
.grid-item-b img {
    width: 80%; /* Las imágenes ocupan todo el ancho de la tarjeta */
    height: 15rem; /* Altura automática para mantener la proporción */
    margin: 10px 10px;
    border-radius: 1rem;
}
.grid-item-b h3 {
    padding: 0 15px; /* Relleno para el título dentro de la tarjeta */
    text-align: center;
}
.grid-item-b p {
    padding: 0 10px; /* Relleno para el párrafo dentro de la tarjeta */
 text-align: center;
 color: #333333;
}
.btn-b {
    display: block;
    width: 80%; /* Anchura del botón */
    padding: 3px 2px;
    margin: 15px auto; /* Centra el botón horizontalmente con margen automático */
   border:2px solid #5f5a5a;
    color: #fff; /* Color del texto del botón */
    background-color:#a10101 ;
    border-width: 1px;
    text-align: center; /* Alineación del texto dentro del botón */
    text-decoration: none; /* Elimina el subrayado del texto del enlace */
    border-radius: 5px; /* Bordes redondeados del botón */
    transition: background-color 0.3s; /* Transición para el color de fondo del botón al hacer hover */
    }

    .btn-b:hover {
    color: #000000; 
    }
      /*--------------------------------------------FOOTER SECTION----------------------------------------*/
      footer{
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        background-color:#232323 ;
        background-size: cover;
      }
      .footer-content{
        width: 100%;
      
        display: flex;
        justify-content: space-around;
      }
      .copyright{
        width: 100%;
        text-align: center;
        color: #fff;
      }
      .copyright a{
        color: #fff;
        text-decoration: none;
        font-size: 18px;
      }
.footer-info i {
    color:#c50a0a; 
}
.footer-info p{
    color: #fff;
    font-size: 16px;
}
.footer-info h3 {
    color: #fff;
   font-size: 25px;
   text-align: center;
}
.container-logo, .certification{
    display: flex;
    justify-content: center;
    align-items: center;
}
 @media (min-width: 300px) and (max-width:798px) {
       .header-logo, .header{
            width: 100%;
            display: flex;
            flex-direction: column;
        }
 .header-contac, .header-complemento {
            width: 100%;
            justify-content: center;
        }
        .header-complemento{
            flex-direction: column;
        }
        .header-complemento button{
            width: 70%; 
        }
        .header-logo img{
                height: auto;
                width: 300px;
        }
         
        
        .buttom-pago{
            width: 100%;
        }
        .home{
            width: 100%;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }
  .contact-form{
            width: 95%;
            height: auto;
            margin: 0;
            padding: 0;
        }
        .sectores p{
            width: 100%;
            margin: 0;
            padding: 0;
        }
      .beneficios-contenido button {
            width: 60%;
        }
        .beneficios-contenido button a{
            font-size: 18px;
        }
          .contact-form h2{
            padding-top:2%;
            font-size:25px;
            text-align:center    
        }
        .beneficios-section{/* contenedor padre */
            display: flex;
            flex-direction: column;
            width: 100%;
            height:auto;
            margin:0;
            padding:0;
        }
        .beneficios-imagen{
            width:95%; 
            padding:1%;
     }
       .beneficios-imagen img{
        width:90%;
        height: auto;
        align-items: center;
        margin:0;
        }
        .beneficios-contenido {
        align-items: center;
      width:98%;
    height: auto;
    padding: 1%;
      margin:0;
      text-align:center;
      padding-bottom: 5%;
      
        }
        .beneficios-contenido h2{
       text-align:center;
        width:100%;
        }
        .beneficios-contenido p{
            width: 98%;  
            height: auto;
        }
        .beneficios-contenido a {
      width:100%;
    height: auto;
    padding:4%;
      margin:0;
      text-align:center;
        }
        .plagas {
            width: 100%;
            margin:0;
                padding:0;
         }
        .plagas img{
            width: 95%;
          margin:0;
              padding:0;
         }
    .sectores{
        width: 100%;
        height: auto;
    padding-bottom: 1rem;
 background-image: url(../img/fumigacion-de-plagas-medellin.webp);
     }
        .sectores p{
            margin:0;
            width: 98%;
            padding: 0;
        }
 /* Carrusel para los elementos de grilla */
    .grid-container {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 20px;
        padding-top:0;
       padding-bottom: 12px;
       width: 100%;
       padding-left:0;
       padding-right:0;
    }
 .grid-item {
       width: 100%;
       height: 31rem;
    }
    .grid-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory; /* Asegura un desplazamiento suave y que los elementos se alineen al deslizar */
        -webkit-overflow-scrolling: touch; /* Permite un desplazamiento táctil fluido en iOS */
    }

    .grid-item {
        flex: 0 0 80%; /* Cada elemento ocupa el 80% del ancho de la pantalla, ajusta según necesites */
        scroll-snap-align: center; /* Alinea los elementos a la izquierda al desplazar */
        margin-right: 10px; /* Espacio entre elementos del carrusel */
        margin-left:5%;
    }

    /* Elimina cualquier margen o padding adicional que pueda interferir */
    .grid-item:last-child {
        margin-right: 0; /* Elimina el margen derecho del último elemento para ajuste visual */
    }
    .nosotros-section{
        display: flex;
        flex-direction: column; 
        width: 100%;
        height: auto;
        padding:0;
        margin:0;
    }   
    .nosotros-section .nosotros-contenido{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height:auto;
        padding: 0;
        margin:0;
    
    }
    .nosotros-section .nosotros-contenido h2{
      width: 100%;
      text-align: center;
      padding: 0;
    }
    .nosotros-section .nosotros-contenido p{
        width: 95%;
        font-size:18px;
    }
    .nosotros-section .nosotros-imagen{
        width: 100%;
        height:auto;
        padding:0;
          padding-top:20px;
      }
    .nosotros-imagen img{
        width: 100%;
        height:20vh;
        margin:0;
    }
    
    .nosotros-contenido button{
        width: 60%;
    }
    .nosotros-contenido button a{
        font-size: 18px;
    }
  .logo-section{
        width: 100%;
        align-items: center;
        margin-right: 10px;
    }
    .logo-section img{
        width: 18rem;
       }
    .copyrigh{
        background-color: #232323; 
        padding-bottom:5px; 
        display: flex;
        flex-direction: column;
        margin-top: -5rem;
        width: 100%;
       align-items: center;
       display:none;
    }
 /* BLOG */
    .logo-blog{
        border: solid 1px  #25d366;
        border-radius: 6px;
        margin-top: 2px;
        background-color:  #25d366;
       padding:5px 5px;
    }
    .grid-blog{
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 20px;
        padding-top:0;
       padding-bottom: 19px;
       width: 100%;
       height: 39rem;
       scroll-snap-type: x mandatory; /* Asegura un desplazamiento suave y que los elementos se alineen al deslizar */
       -webkit-overflow-scrolling: touch; /* Permite un desplazamiento táctil fluido en iOS */
       background-color:#a10101 ;
    }
    .grid-item-b {
        width: 100%;
        height: auto;
        margin-top: 1px;
        flex: 0 0 80%; /* Cada elemento ocupa el 80% del ancho de la pantalla, ajusta según necesites */
        scroll-snap-align: center; /* Alinea los elementos a la izquierda al desplazar */
        margin-right: 10px; /* Espacio entre elementos del carrusel */
        margin-left:5rem;
     }
 
     /* Elimina cualquier margen o padding adicional que pueda interferir */
     .grid-item-b:last-child {
         margin-right: 0; /* Elimina el margen derecho del último elemento para ajuste visual */
     }
     
     /* subpaginas */
    
.whatsapp-fixed {
    overflow: hidden;  /* Evita desbordamientos visuales */
}

.whatsapp-fixed i {
    font-size: 30px; /* Aumenta el tamaño del ícono */
}
.whatsapp-fixed:hover{transform: scale(1.03);}

   .call-fixed {
    left:2%;  /* Menor margen para pantallas pequeñas */
    bottom:31%;  /* Menor distancia del fondo si es necesario */
    margin:0;
    justify-content: center;
    align-items: center;
    width: 30px; /* Tamaño del círculo */
    height: 30px; /* Tamaño del círculo */
    position: fixed;
         
    }
.whatsapp-fixed {
    left:2%;  /* Menor margen para pantallas pequeñas */
    bottom:21%;  /* Menor distancia del fondo si es necesario */
    margin:0;
    position: fixed;
    justify-content: center;
    align-items: center;
    width: 30px; /* Tamaño del círculo */
    height: 30px; /* Tamaño del círculo */
    }

  .footer-content{
    display: flex;
    flex-direction: column;
  } 
  .certification img{
width:120px;
height:auto;
  }
  .footer-info{
    justify-content: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }
  .footer-info h3{
    font-weight:bold;
  }
  /* subpaginas */
  .contenido-subp{
    width: 100%;
    display: flex;
    flex-direction: column;
    height: auto;
    padding-bottom: 2%;
 }
 .texto{
     text-align:justify;
    align-items: center;
    width: 100%;
    padding-bottom:20px;
    margin:0;
    font-size:18px;
    display: flex;
    flex-direction: column;
    height:auto;
    margin:0;
    padding:0;
    padding-bottom: 2%;
 }
 .texto h1{
    width: 100%;
    text-align: center;
 }
 .texto p{
    width: 90%;
    height: auto;
    font-size: 18px;
    padding:0;
      text-align:center;
    align-items: center;
 
 }
 .nosotros-section .nosotros-imagen img{
    width:400px;
    height:auto;
    margin:0;
}
 .imagen-adicional {
    width: 100%;
    padding: 0;
    margin: 0;
 }
 .imagen-adicional img{
    width: 90%;
    height: 40vh;
 }
 .footer-content .container-logo{
    padding-top: 20px;
 }
 .footer-content .container-logo img{
    height: auto;
    width: 300px;
 }
}
@media (min-width: 300px) and (max-width: 400px) {
    .nosotros-section .nosotros-imagen img {
        width: 300px;
        height: auto;
        margin: 0;
    }
    .beneficios-imagen img {
        width: 300px;
        height: auto;
        align-items: center;
        margin: 0;
    }
}
  /* MEDIA QUERY IPHONE 14 PRO MAX */
    @media (min-width: 401px) and (max-width:600px) {
    .html{
     overflow-x: hidden;
    }
    .body{
    margin: 0;
    padding:0;
  width: 100%;
height:100%;
}
.home{
    width:100%;
    height:auto;
    margin: 0;
    padding:0;
}
 .header{
     width: 100%;
     height: auto;
    margin:0;
    padding-bottom: 3%;
    overflow: visible;
        }
.btn-fijo,.btn-llamar {
    flex-grow: 1; /* Hace que los botones crezcan igualmente para ocupar el espacio disponible */
    text-align: center; /* Centra el texto dentro de los botones */
    padding: 10px 10px; /* Espacio interno para hacer que los botones sean más grandes y toquen */
    margin: 0 5px; /* Espacio entre los botones */
    color: white; /* Color del texto */
    text-decoration: none; /* Elimina el subrayado */
   
    border: none; /* Elimina bordes */
    border-radius: 5px; /* Bordes redondeados */
     width: 45%;
}
 .payment-button {
  
    background-color: #25d366; /* Color de fondo del botón */
    border-radius: 5px; /* Bordes redondeados del botón */
    color: white;
    cursor: pointer;
    text-decoration: none;
    padding: 5px 5px;
     }
 .contact-form h2{
            padding-top:2%;
            font-size:25px;
            text-align:center
        }
        form{ 
            width:97%;
           align-items: center;
           padding-left:1.5%;
       }
       #contactForm input[type="submit"] {
    margin-left:3%;
    width: 50%; /* El botón de envío ocupa todo el ancho */
    padding: 10px; /* Espacio interior del botón */
    background-color:#c50a0a; /* Color de fondo azul para el botón */
    color: white; /* Texto blanco en el botón */
    border: none; /* Sin bordes */
    border-radius: 5px; /* Bordes redondeados del botón */
    cursor: pointer; /* Cursor de mano al pasar por encima */
    margin-top: 3px; /* Margen superior para separar del último input/textarea */
}
     .contact-form{
               align-items: center;
          padding:0;
            height:100%;
            background-color: #4945455d;
          padding-top:1%;
             width:100%; 
            margin: 0 auto; 
}
 .beneficios-section{/* contenedor padre */
            display: flex;
            flex-direction: column;
            width: 100%;
            height:auto;
            margin:0;
            padding:0;
        }
    .beneficios-imagen{
        width:95%; 
        padding:1%;
               }
       .beneficios-imagen img{
        width:200px;
        height: auto;
        align-items: center;
        margin:0;
        }
       
        .beneficios-contenido {
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
      width:100%;
    height: auto;
      margin:0;
      padding: 0;
      text-align:center;
      padding-bottom: 3%;
      
        }
        .beneficios-contenido h2{
       text-align:center;
        width:98%;
        }
        .beneficios-contenido p{
            width: 98%;  
        }
        .beneficios-contenido a {
       
      width:100%;
    height: auto;
    padding:4%;
      margin:0;
      text-align:center;

        }
        .controlamos{
            width: 100%;
            padding:0;
            height: auto;
        }
        .controlamos img{
            width: 28%;
            height: 20vh;
        }
        .plagas {
            width: 100%;
            margin:0;
                padding:0;
         }
        .plagas img{
            width: 95%;
            height: 35vh;
          margin:0;
              padding:0;
         }
    
     .sectores{
        width: 100%;
        height: auto;
    padding-bottom: 1rem;
 background-image: url(../img/fumigacion-de-plagas-medellin.webp);
     }
        .sectores p{
            margin:0;
        }
 /* Carrusel para los elementos de grilla */
    .grid-container {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 20px;
        padding-top:0;
       padding-bottom: 12px;
       width: 100%;
         padding-left:0;
       padding-right:0;
    }

    .grid-item {
       width: 100%;
       height: 31rem;
    }
    .grid-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory; /* Asegura un desplazamiento suave y que los elementos se alineen al deslizar */
        -webkit-overflow-scrolling: touch; /* Permite un desplazamiento táctil fluido en iOS */
    }

    .grid-item {
        flex: 0 0 80%; /* Cada elemento ocupa el 80% del ancho de la pantalla, ajusta según necesites */
        scroll-snap-align: center; /* Alinea los elementos a la izquierda al desplazar */
        margin-right: 10px; /* Espacio entre elementos del carrusel */
        margin-left:5%;
    }

    /* Elimina cualquier margen o padding adicional que pueda interferir */
    .grid-item:last-child {
        margin-right: 0; /* Elimina el margen derecho del último elemento para ajuste visual */
    }
    .nosotros-section{
        display: flex;
        flex-direction: column; 
        width: 100%;
        align-items: center;
        padding:0;
        margin:0;
    }   
 .nosotros-contenido{
        align-items: center;
           text-align:center;
        width: 100%;
        height:100%;
        margin:0;
     padding: 20px;  /* Añade un padding estándar para escritorio */
    }
    .nosotros-contenido h2{
        font-weight: 60;
    }
    .nosotros-contenido p{
        text-align:justify;
            align-items: center;
        width: 100%;
        padding-bottom:20px;
        margin:0;
        font-size:17px;
    }
      .nosotros-imagen{
        width: 100%;
        height:100%;
        padding:0;
          padding-top:20px;
      }
  
      .nosotros-contenido a{
          margin:0;
              padding-top:5px;
          
      }
 
   .logo-section{
        width: 100%;
        align-items: center;
        margin-right: 10px;
    }
    .logo-section img{
        width: 18rem;
    
    }

    .certification-section{
    display: none;
    }
    .copyrigh{
        background-color: #232323; 
        padding-bottom:5px; 
        display: flex;
        flex-direction: column;
        margin-top: -5rem;
        width: 100%;
       align-items: center;
       display:none;
        
    }
    /* BLOG */
    .logo-blog{
        border: solid 1px  #25d366;
        border-radius: 6px;
        margin-top: 2px;
        margin-bottom:2px;
        background-color:  #25d366;
    padding:5px 5px;
    }
    .grid-blog{
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 20px;
        padding-top:0;
       padding-bottom: 19px;
       width: 100%;
       height: 39rem;
       scroll-snap-type: x mandatory; /* Asegura un desplazamiento suave y que los elementos se alineen al deslizar */
       -webkit-overflow-scrolling: touch; /* Permite un desplazamiento táctil fluido en iOS */
       background-color:#a10101 ;
    }
    .grid-item-b {
        width: 100%;
        height: auto;
        margin-top: 1px;
        flex: 0 0 80%; /* Cada elemento ocupa el 80% del ancho de la pantalla, ajusta según necesites */
        scroll-snap-align: center; /* Alinea los elementos a la izquierda al desplazar */
        margin-right: 10px; /* Espacio entre elementos del carrusel */
        margin-left:5rem;
     }
 
     /* Elimina cualquier margen o padding adicional que pueda interferir */
     .grid-item-b:last-child {
         margin-right: 0; /* Elimina el margen derecho del último elemento para ajuste visual */
     }
     
     /* subpaginas */
     .contenido-subp{
        width: 100%;
        display: flex;
        flex-direction: column;
        height: auto;
        padding-bottom: 2%;
     }
     .texto{
         text-align:justify;
        align-items: center;
        width: 100%;
        padding-bottom:20px;
        margin:0;
        font-size:18px;
        display: flex;
        flex-direction: column;
        height:auto;
        margin:0;
        padding:0;
        padding-bottom: 2%;
     }
     .texto h1{
        width: 100%;
        text-align: center;
     }
     .texto p{
        width: 90%;
        height: auto;
        font-size: 18px;
        padding:0;
          text-align:center;
        align-items: center;
     
     }
     .imagen-adicional {
        width: 100%;
        padding: 0;
        margin: 0;
     }
     .imagen-adicional img{
        width: 90%;
        height: 40vh;
     }
   
.whatsapp-fixed {
    overflow: hidden;  /* Evita desbordamientos visuales */
}

.whatsapp-fixed i {
    font-size: 30px; /* Aumenta el tamaño del ícono */
}
.whatsapp-fixed:hover{transform: scale(1.03);}

   .call-fixed {
    left:2%;  /* Menor margen para pantallas pequeñas */
    bottom:30%;  /* Menor distancia del fondo si es necesario */
    margin:0;
    justify-content: center;
    align-items: center;
    width: 30px; /* Tamaño del círculo */
    height: 30px; /* Tamaño del círculo */
    position: fixed;
         
    }
.whatsapp-fixed {
    left:2%;  /* Menor margen para pantallas pequeñas */
    bottom:24%;  /* Menor distancia del fondo si es necesario */
    margin:0;
    position: fixed;
    justify-content: center;
    align-items: center;
    width: 30px; /* Tamaño del círculo */
    height: 30px; /* Tamaño del círculo */
    }
      .footer-info{
    justify-content: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }
}
   @media (min-width: 601px) and (max-device-width:800px){
 .html{
     overflow-x: hidden;
    }
    .body{
    margin: 0;
    padding:0;
  width: 100%;
height:100%;
  

}
.home{
    width:100%;
    height:100%;
    margin: 0;
    padding:0;
 
}
 .header{
     width: 100%;
     height: 25%;
    margin:0;
    padding-bottom: 3%;
    overflow: visible;
        }
 .container-header{
     
    display: flex;
    flex-direction: column;
    padding: 0;
    align-items: center;
     width: 100%;
    height: 100%;}
    
.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Centra los botones verticalmente */
    padding: 10px; /* Espacio alrededor del contenedor de los botones */
}

.btn-fijo,.btn-llamar {
    flex-grow: 1; /* Hace que los botones crezcan igualmente para ocupar el espacio disponible */
    text-align: center; /* Centra el texto dentro de los botones */
    padding: 10px 10px; /* Espacio interno para hacer que los botones sean más grandes y toquen */
    margin: 0 5px; /* Espacio entre los botones */
    color: white; /* Color del texto */
    text-decoration: none; /* Elimina el subrayado */
   
    border: none; /* Elimina bordes */
    border-radius: 5px; /* Bordes redondeados */
     width: 45%;
}
 .payment-button {
  
    background-color: #25d366; /* Color de fondo del botón */
    border-radius: 5px; /* Bordes redondeados del botón */
    color: white;
    cursor: pointer;
    text-decoration: none;
    padding: 5px 5px;
    

  }
        .header img{
            width: 50%;
              height: 45%;
            align-items: center;
           padding-top:2%;
            }
      .contact-form h2{
            padding-top:2%;
            font-size:25px;
            text-align:center
        }
        form{ 
            width:97%;
           align-items: center;
           padding-left:1.5%;
       }
         .contact-form{
               align-items: center;
          padding:0;
            height:100%;
            background-color: #4945455d;
          padding-top:1%;
             width:100%; 
            margin: 0 auto; 
}
.beneficios-section{/* contenedor padre */
            display: flex;
            flex-direction: column;
            width: 100%;
            height:auto;
            margin:0;
            padding:0;
        }
               .beneficios-imagen{
                        width:95%; 
                        padding:1%;
               }
       .beneficios-imagen img{
        width:90%;
        height: auto;
        align-items: center;
        margin:0;
        }
       
        .beneficios-contenido {
        align-items: center;
      width:100%;
    height: auto;
      margin:0;
      text-align:center;
      
        }
        .beneficios-contenido h2{
       text-align:center;
        width:100%;
        }
        .beneficios-contenido p{
            width: 100%;  
        }
        .beneficios-contenido a {
       
      width:100%;
    height: auto;
    padding:4%;
      margin:0;
      text-align:center;

        }
        .plagas {
            width: 100%;
            margin:0;
                padding:0;
         }
        .plagas img{
            width: 95%;
          margin:0;
              padding:0;
         }
    
     .sectores{
        width: 100%;
        height: auto;
    padding-bottom: 1rem;
    padding:0;

     }
        .sectores p{
            margin:0;
        }
 /* Carrusel para los elementos de grilla */
    .grid-container {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 20px;
        padding:2%;
       padding-bottom: 12px;
       width: 100%;
    margin-right:0;
    }

    .grid-item {
       width: 100%;
       height: 35rem;
    }
    .grid-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory; /* Asegura un desplazamiento suave y que los elementos se alineen al deslizar */
        -webkit-overflow-scrolling: touch; /* Permite un desplazamiento táctil fluido en iOS */
           ;
    }

    .grid-item {
        flex: 0 0 80%; /* Cada elemento ocupa el 80% del ancho de la pantalla, ajusta según necesites */
        scroll-snap-align: center; /* Alinea los elementos a la izquierda al desplazar */
        margin-right: 10px; /* Espacio entre elementos del carrusel */
        margin-left:5%;
    }

    /* Elimina cualquier margen o padding adicional que pueda interferir */
    .grid-item:last-child {
        margin-right: 0; /* Elimina el margen derecho del último elemento para ajuste visual */
    }
    .nosotros-section{
        display: flex;
        flex-direction: column; 
        width: 100%;
        align-items: center;
        padding:0;
        margin:0;
    }   
 .nosotros-contenido{
        align-items: center;
           text-align:center;
        width: 100%;
        height:100%;
        margin:0;
     padding: 20px;  /* Añade un padding estándar para escritorio */
    }
    .nosotros-contenido h2{
        font-weight: 60;
    }
    .nosotros-contenido p{
        text-align:justify;
            align-items: center;
        width: 100%;
        padding-bottom:20px;
        margin:0;
        font-size:17px;
    }
      .nosotros-imagen{
        width: 100%;
        height:100%;
        padding:0;
          padding-top:20px;
      }
    .nosotros-imagen img{
        width: 100%;
        height:100%;
        margin:0;
    }
      .nosotros-contenido a{
          margin:0;
              padding-top:5px;
          
      }
 
    .logo-section{
        width: 100%;
        align-items: center;
        margin-right: 10px;
    }
    .logo-section img{
        width: 18rem;
    
    }
    /* BLOG */
    .logo-blog{
        border: solid 1px  #25d366;
        border-radius: 6px;
        margin-top: 2px;
        margin-bottom:2px;
        background-color:  #25d366;
    padding:5px 5px;
    }
    .grid-blog{
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 20px;
        padding-top:0;
       padding-bottom: 19px;
       width: 100%;
       height: 39rem;
       scroll-snap-type: x mandatory; /* Asegura un desplazamiento suave y que los elementos se alineen al deslizar */
       -webkit-overflow-scrolling: touch; /* Permite un desplazamiento táctil fluido en iOS */
       background-color:#a10101 ;
    }
    .grid-item-b {
        width: 100%;
        height: auto;
        margin-top: 1px;
        flex: 0 0 80%; /* Cada elemento ocupa el 80% del ancho de la pantalla, ajusta según necesites */
        scroll-snap-align: center; /* Alinea los elementos a la izquierda al desplazar */
        margin-right: 10px; /* Espacio entre elementos del carrusel */
        margin-left:5rem;
     }
 
     /* Elimina cualquier margen o padding adicional que pueda interferir */
     .grid-item-b:last-child {
         margin-right: 0; /* Elimina el margen derecho del último elemento para ajuste visual */
     }
     
     /* subpaginas */
     .texto{
         text-align:justify;
        align-items: center;
        width: 100%;
        padding-bottom:20px;
        margin:0;
        font-size:18px;
        display: flex;
        flex-direction: column;
        height:auto;
        margin:0;
        padding:0;
     }
     .texto h1{
        width: 100%;
        text-align: center;
     }
     .texto p{
        width: 100%;
        text-align: justify;
        font-size: 15px;
        padding:0;
          text-align:center;
        align-items: center;
     
     }
     .img-pg {
       display: none;
     }
     .butn-A{
    margin:0;
    margin-bottom:2%;
     }
   
.whatsapp-fixed {
    overflow: hidden;  /* Evita desbordamientos visuales */
}

.whatsapp-fixed i {
    font-size: 30px; /* Aumenta el tamaño del ícono */
}
.whatsapp-fixed:hover{transform: scale(1.03);}

   .call-fixed {
    left:2%;  /* Menor margen para pantallas pequeñas */
    bottom:30%;  /* Menor distancia del fondo si es necesario */
    margin:0;
    justify-content: center;
    align-items: center;
    width: 30px; /* Tamaño del círculo */
    height: 30px; /* Tamaño del círculo */
    position: fixed;
         
    }
.whatsapp-fixed {
    left:2%;  /* Menor margen para pantallas pequeñas */
    bottom:24%;  /* Menor distancia del fondo si es necesario */
    margin:0;
    position: fixed;
    justify-content: center;
    align-items: center;
    width: 30px; /* Tamaño del círculo */
    height: 30px; /* Tamaño del círculo */
    }
   }
    
@media (min-width:1920px) and (max-device-width:1920px) {
body, html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

   .contact-form{
width:25%;
    height:100%;
         padding:3%;

    } 
    .home{
       width:100%;   
    }

  
.home{
    width:100%;
    height:100%;
    margin: 0;
    padding:0;
 
}
 .header{
     width: 100%;
     height: 13%;
    margin:0;
    padding-bottom: 3%;
    overflow: visible;
        }
        .call-fixed{
            right:1.5%;
            bottom:31%;
        }
        .whatsapp-fixed{
             right:1.5%;
            bottom:25%;
        }
        .footer{
            width:100%;
        }
        .nosotros-imagen{
            width:100%;
            padding-left:17%;
             padding-right:2%;
            margin:0;
        }
         .nosotros-imagen img{
             width:100%;
         padding:0;
            margin:0;
         }
}

@media (min-width: 602px) and (max-width:800px){

  .header{
    height: auto;
  }  
  .contact-form{
    width: 80%;
  }
  .home{
    height: auto;
    
  }
  .beneficios-contenido {
    width: 100%;
    padding: 0;
    padding-bottom: 2%;
  }
  .grid-container {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

}
}
@media (min-width: 801px) and (max-width:900px){

    .header-logo{
        width: 30%;
    }
   .header-logo img{
    width: 100%;
   }
   .header-contac{
    width: 35%;
    flex-direction: column;
   }
   .header-complemento{
    width:35% ;
    flex-direction: column;
   }
   .beneficios-contenido p{
    width: 95%;
   }
   .header-complemento button, .header-contac button {
    width: 80%;
   }
   .home{
    height: auto;
    width: 100%;
   }
   .contact-form{
    width: 70%;
   }
   .beneficios-imagen img{
    width: 80%;
   }
   .grid-container{
    width: 100%;
    margin: 0;
    padding: 0;
 
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 10px;
        background-image: url(../img/fumigacion-de-plagas-medellin.webp);
        background-repeat: no-repeat;
        background-size: cover;
    
   }
   .nosotros-contenido button{
    width: 70%;
   }
}
@media (min-width: 901px) and (max-width:1100px){

    .nosotros-contenido button{
        width: 70%;
    }
    .header-logo{
        width: 32%;
    }
    .header-conta{
        width: 38%;
    }
    .header-complemento{
        width: 30%;
        padding: 0;
        margin: 0;
    }
    .header-complemento button a{
        font-size: 20px;
        padding: 0;
        margin: 0;
    }


}
@media (min-width: 1300px) and (max-width:1400px) {
    .contenido-subp{
        height: auto;
    }
    .texto{
        height: auto;
        padding-bottom: 2%;
    }

}
       



