@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Lato:wght@300;400;700&display=swap');

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef); /* Fondo con degradado sutil */
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

button, .cta {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 8px;
}

button:hover, .cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


section {
    padding: 80px 10%; /* Aumenta el padding para más espacio entre secciones */
}

.section-light { 
  text-align: center;
  padding: 40px 0;
}

.section-light h1 { 
    font-weight: 400;
    font-size: x-large;
}

header {
    background-color: white;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;/* Asegura que el header se superponga a otros elementos */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Opcional: sombra para darle profundidad */
}

/* Estilos para el botón flotante de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn img {
    width: 45px;
    height: 35px;
}

/* Efecto hover */
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Estilos para el botón flotante de flecha */
.flecha-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #aaa;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flecha-btn img {
    width: 30px;
    height: 25px;
}

/* Efecto hover */
.flecha-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clase para aplicar la animación */
.fade-in {
    opacity: 0;
    animation: fadeInUp 1s forwards;
    /* Puedes ajustar el retraso si lo deseas */
    animation-delay: 0.3s;
}

.container {
    display: flex;
    justify-content: space-between; /* Espacio entre logo y menú */
    align-items: center; /* Alinea los elementos verticalmente */
    max-width: 1200px; /* Ancho máximo */
    margin: 0 auto; /* Centrar en la página */
}

.logo {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px; /* Espaciado entre elementos */
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 16px; /* Tamaño base del texto */
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
    display: inline-block; /* Necesario para que transform funcione correctamente */
}

nav ul li a:hover {
    transform: scale(1.2); /* Aumenta el tamaño en un 20% */
}

ul.nav-list {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul.nav-list li {
    margin: 0 20px;
}

ul.nav-list li a {
    text-decoration: none;
    font-size: 16px;
}

/* Menú hamburguesa */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px; /* Tamaño del ícono */
    color: #333; /* Color del ícono */
}

.hero {
    position: relative;
    color: #f4f4f4;
    text-align: center;
    padding: 100px 20px;
    font-size: x-large;
    background: url(imgs/DJI_0181i.png) center/cover no-repeat; 
}

.overlay {
    padding: 30px;
}

.overlay h1 { 
    font-weight: 600;
    font-size: xx-large;
}

.overlay h4 { 
    font-weight: 300;
}

.btn {
    display: inline-block;
    background-color: #e52220; 
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
    transition: 0.3s;
    border: 2px;
    color: #f4f4f4;
}

.btn:hover { 
    background-color: #333;
    border-color: #e52220;
}

.cotizar {
    background-color: #d3d3d3; 
    color: white; 
    border: 2px solid transparent;
}

.cotizar:hover {
    border-color:#009938;
    background-color: #d3d3d3;
}

.services-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
  text-align: center;
  margin: 10px auto;          /* Centrado horizontal con márgenes automáticos */
  padding: 20px;
}
.service-item { 
    align-content: center;
    width: 30%;
}

.service-item- { 
  width: 200px;
  text-align: center;
}

.service-item img {
    height: 50px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.service-item- img {
    width: 100%;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.app-section {
    background: url(imgs/DJI_0181iii.png) center/cover no-repeat;
    color: white;
    text-align: center;
    font-size: x-large;
    padding: 100px 20px;
}

.flota-text {
    font-size: 1.5rem;
}

.flota-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flota-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Ocupar todo el ancho disponible */
}

.fotoi { 
    width: 90%;
    height: 40%;
    margin: 5%;
}

.flota-grid img {
    max-width: 100%; /* No supera el ancho del contenedor */
    height: auto; /* Mantiene la proporción */
    border-radius: 10px; /* Opcional: esquinas redondeadas */
    object-fit: cover;
}

.diferencia-section {
    background: url('imgs/DJI_0162i.png') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-top: 50px;
}

.casos-sectioni { 
    background: url("imgs/DSC00031.png") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}
.diferencia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 20px;
    text-align: center;
}

.diferencia-item,
.diferencia-itemii {
    border: #f9f9f9; 
    border: 2px; 
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.diferencia-itemii img { 
    width: 80%;
    height: auto;
    margin: 0;
    box-shadow: #aaa;
}

.diferencia-item img {
    width: 80px;
    height: 60px;
    margin-bottom: 15px;
}

.diferencia-item p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.diferencia-item:hover {
    transform: scale(1.08);
}

.diferencia-gridi {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columnas */
    gap: 20px;
    padding: 50px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.diferencia-itemi {
    background: #ffffff; /* Fondo blanco */
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.diferencia-itemi img {
    width: 100%;  /* Ocupar todo el ancho disponible */
    max-width: 190px; /* Tamaño máximo */
    height: auto;  /* Mantener proporciones */
    object-fit: contain; /* Ajustar sin recortar */
    transition: transform 0.3s ease-in-out;
}

.diferencia-itemi:hover img {
    transform: scale(1.1); /* Efecto de crecimiento al pasar el mouse */
}

.diferencia-itemi:hover {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.casos-section { 
    text-align: center;
    color: #f4f4f4;
    background: linear-gradient(135deg, #505050 0%, #414141 50%, #333 100%);
}


.empresas-section {
    background: url('imgs/DJI_0181ii.png') center/cover no-repeat;
    padding: 100px 20px;
    text-align: right;
    position: relative;
    color: #ffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 25px;
    background-color: #f4f4f4;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #009938;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px;
    text-decoration: none;
}

.testimonio { 
    border-radius: 10px;
    background-color: #d3d3d3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 10%;
}

.testimonio h6 { font-size: medium; text-decoration: none; color: #333;}
.testimonio p { font-size: small;}

.galeria {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}
  
.galeria h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}
  
  /* Grid adaptable */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
  
  /* Imagen */
.galeria-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
  
.galeria-grid img:hover {
    transform: scale(1.05);
}

.lightbox {
    display: none; 
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}
  
  /* Imagen del lightbox */
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}
  
  /* Botón cerrar */
.close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
  
.close:hover {
    color: #aaa;
}

/* SERVICIOS */

.services-containeri {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 40px;
    padding: 40px;
    flex-wrap: wrap; /* Para que sea responsive */
}

.services-containerii {
    flex-wrap: wrap; /* Para que sea responsive */
    display: grid;
    grid-template-columns:repeat(2, 1fr); /* 2 columnas */
    gap: 20px;
    max-width: 1200px;
    margin: 40px 0;
    margin-top: 0%;
}


.service-itemi {
    align-items: center;
    max-width: 100%;
    background: #f8f8f8;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.service-itemii {
    max-width: 300px;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.service-itemi img {
    height: 80px;
    padding: 10px;
    margin-bottom: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.van { 
    width: 100%;  /* Ocupar todo el ancho disponible */
    max-width: 110px; /* Tamaño máximo */
    height: auto;  /* Mantener proporciones */
    object-fit: contain; 
    scale: 1.5;
}

.service-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.service-description {
    font-size: 14px;
    color: #333;
    margin-bottom: 30px;
}

.quote-btn {
    background-color: #333;
    color: white;
    border: 2px solid transparent;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    margin: 20px;
    margin-top: 30px;
}

.quote-btn:hover {
    background-color: #333;
    border-color: #009938;
}

/* formularios */ 

.tras { 
    background-color: #e9ecef;
    display: flex;
    width: 100%;
}

.trasi { 
    background-color: #d3d3d3;
    display: flex;
    width: 100%;
}
.tras h2, 
.trasi h2 { 
    text-align: center;
    margin: 20px;
    margin-left: 10%;
}
.formulario {
    display: grid;
    max-width: auto;
    margin: 40px auto;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
}
  
.formulario h2 {
    text-align: center;
    margin-bottom: 20px;
}
  
.form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
  
.form input,
.form textarea {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
  
.form button {
    background: #009938;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}
  
.form button:hover {
    background: #009938;
}

.radio-group {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}
  
.radio-group input[type="radio"] {
    margin-right: 5px;
}
  

/* footer */
.footer {
    background: linear-gradient(to bottom, #333, #505050);;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: sans-serif;
}
  
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}
  
.footer-left {
    flex: 1;
    min-width: 250px;
}
  
.footer-logo {
    height: 50px;
    margin-bottom: 10px;
}
  
.footer-left p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-middle {
    text-align: left;
    margin-top: 20px;
}
  
.footer-middle h1 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 300;
}
  
.footer-apps {
    display: flex;
    justify-content: left;
    gap: 15px;
}
  
.footer-apps .app {
    width: 120px;
    height: auto;
}

.footer-apps img { 
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(242, 242, 242, 0.3);
    border-radius: 50px;
    border: 2px;
    border-color: #262626;
}
  
.footer-right {
    flex: 1;
    min-width: 200px;
    text-align: right;
}
  
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
  
.footer-links li {
    margin-bottom: 8px;
}
  
.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}
  
.footer-links a:hover {
    color: #fff;
    scale: 1.2;
}
  
.footer-bottom {
    text-align: center;
    border-top: 1px solid #262626;
    margin-top: 30px;
    padding-top: 10px;
    font-size: 13px;
    color: #aaa;
}

/* Estilos generales para escritorio (desktop first, si así lo preferís) */
/* ... Tus estilos ya existentes aquí ... */


/* ----------------------------- */
/* 🌐 Media Queries para Mobile  */
/* ----------------------------- */
@media screen and (max-width: 768px) {
    /* Layout general */
    body {
        overflow-x: hidden; /* Previene el scroll horizontal general */
      }
    .container {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-between; /* ← Agregá esto */
        align-items: center; /* ← Opcional pero recomendable */
        padding: 10px;
    }
    
    /* Logo arriba a la izquierda */
    .logo {
        width: 150px;
        height: 35px;
        margin: 0;
    }
    
    /* Ícono hamburguesa arriba a la derecha */
    .menu-toggle {
        display: block;
        width: 30px; /* Mejor que 5% para que no sea tan chiquito */
        cursor: pointer;
        margin-left: auto; /* ← Esto empuja el botón a la derecha */
        margin-right: 25px;
    }

    .menu-toggle img { 
        width: 100%;
    }
    
    /* Menú oculto inicialmente */
    nav .nav-list {
        display: none;
        position: absolute;
        top: 60px;
        right: 10px;
        background-color: #333;
        width: calc(100% - 20px);
        padding: 20px 10px;
        border-radius: 8px;
        flex-direction: column;
        gap: 15px;
        z-index: 999;
    }
    
    /* Mostrar menú cuando está activo */
    nav .nav-list.active {
        display: flex;
    }
    
    nav .nav-list li {
        text-align: center;
    }
    
    nav .nav-list li a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
    }
    

    .hero h1,
    .hero h4,
    .hero .btn {
        text-align: center;
        margin: 10px auto;
        padding: 0 10px;
    }

    .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
        text-align: center;
    }

    .diferencia-grid,
    .diferencia-gridi,
    .services-container,
    .testimonios-grid,
    .stats-grid {
        display: grid;
        grid-template-columns:repeat(2, 1fr);
        gap: 20px;
    }

    .diferencia-item,
    .diferencia-itemi,
    .stat-item,
    .testimonio {
        text-align: center;
    }

    .service-item- { 
        margin: auto; /* Esto ayuda */
        margin-right: 70px;
        max-width: 400px;
        text-align: center;
    }

    .diferencia-item img { 
        height: 80%;
    }

    .flota-container {
        padding: 20px;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn img {
        width: 100%;
        height: auto;
    }

    .overlay h1,
    .overlay h4 {
        padding: 0 15px;
        text-align: center;
    }

    .app-section .btn,
    .empresas-section .btn {
        width: 80%;
    }

    /* --- Botón flotante de WhatsApp --- */
 .whatsapp-btn, .flecha-btn {
    position: fixed;
    bottom: 15px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
 }

 .whatsapp-btn { right: 15px;}
 .flecha-btn { left: 15px;}

 .whatsapp-btn:hover, .flecha-btn:hover {
    transform: scale(1.05);
 }

 /* --- Servicios --- */
 .serviciosi {
    padding: 40px 15px;
    background: #f9f9f9;
 }

 .services-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

 .service-item, .service-itemi {
    padding: 20px;
    align-content: center;
    margin: auto; 
    max-width: 400px;
    text-align: center;
 }

 .service-item { width: 80%; margin-right: 70px; }
 .service-itemi { margin-right: 30px;}

 .service-item img, .service-itemi img {
    width: 90px;
    height: 80px;
    margin-bottom: 10px;
 }

 .service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1d;
 }

 .service-description {
    font-size: 14px;
    line-height: 1.5;
    color: #4d4d4d;
    margin-bottom: 15px;
 }

 /* --- Diferencia (¿Por qué elegirnos?) --- */
 .diferencia-section {
    padding: 50px 15px;
    text-align: center;
 }

 .diferencia-section h1 {
    font-size: 28px;
    margin-bottom: 20px;
 }

 .diferencia-section h4 {
    font-size: 15px;
    font-weight: 400;
    margin: 6px 0;
 }

 /* --- Grid de íconos de diferencia --- */
 .diferencia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 15px;
    background-color: #f9f9f9;
 }

 .diferencia-item {
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
 }

 .diferencia-item img {
    width: 50px;
    margin-bottom: 8px;
 }

 .diferencia-item p {
    font-size: 13px;
    color: #333;
 }

 /* --- Casos de Éxito / Flota (Sección de texto introductorio) --- */
 .casos-section {
    padding: 40px 15px;
    text-align: center;

 }

 .casos-section h1 {
    font-size: 26px;
    margin-top: 20%; 
    margin-bottom: 10px;
 } 

 .casos-section h4 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
 }

 /* --- Botón "Cotizar Servicio" --- */
.quote-btn {
    margin-top: 10%;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 80%;
    align-items: center;
}

/* --- services-containerii específico para flota --- */
 .services-containerii {
    display: grid;
    grid-template-columns:repeat(1, 1fr);
    flex-direction: column;
    gap: 30px;
    padding: 20px 15px;
 }

 /* --- Imágenes de vans --- */
 .van {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 15px;
    display: block;
 }

 /* --- Sección Equipo Profesional --- */
 .diferencia-section {
    padding: 40px 15px;
    text-align: center;
 }

 .diferencia-section h1 {
    font-size: 26px;
    margin-bottom: 15px;
 }

 .diferencia-section h4 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;}

 /* --- Sección CNRT link --- */
 .flota .section-light {
    background: #f2f2f2;
    padding: 40px 15px;
    text-align: center;
 }

 .flota h4 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1d1d1d;
 }

 .flota .btn {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
 }

 .fade-in {
    animation: fadeIn 1s ease-in both;
 }

 @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
 }

 /* --- Contenedor general del bloque de traslados --- */
 .tras, .trasi {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra los formularios horizontalmente */
    justify-content: center;
    padding: 30px 15px;
    background-color: #f2f2f2;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
  }

  .tras h2 {
    font-size: 20px;
    text-align: center;
    margin: 20px 0;
    padding: 0 10px;
    max-width: 100%;
  }

  .formulario {
    width: 100%;
    max-width: 500px; /* Para que no ocupe más de la pantalla */
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }

  .formulario h2 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
  }

  .form {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .form label {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .form input,
  .form textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }

  .form button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #009938;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .form button:hover {
    background-color: #007a2b;
  }

  .radio-group {
    flex-direction: column;
    align-items: flex-start;
  }

 .section-light {
    padding: 30px 20px;
    text-align: center;
 }

 .section-light h1 {
    font-size: 24px;
    margin-bottom: 20px;
 }

 .section-light p {
    font-size: 16px;
    margin-bottom: 20px;
 }

 .testimonios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
 }

 .testimonio h6 {
    padding: 5px;
    border-radius: 8px;
    font-size: 18px;
 } 

 .service-item img {
    width: 120px;
    height: auto;
 }

 .empresas-section {
    padding: 30px 20px;
    text-align: center;
 }

 .empresas-section h1 {
    font-size: 24px;
    margin-bottom: 10px;
 }

 .empresas-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
 }



}