/* Reset CSS */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales */

/* Dark mode no se implementará por el momento */
:root {
    --background-color: white;
    --text-color: black;
}

body.dark-mode {
    --background-color: #121212;
    --text-color: #ffffff;  
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
    
}

.dotted-line {
    border: none;
    border-top: 2px dotted #000; /* Cambia el color y grosor según lo que necesites */
    margin: 20px 0; /* Espaciado arriba y abajo */
}

h2 {
    color: #e94f08;
    font-size: 30px;
    font-weight: bold;
}

h4 {
    color: #0985b6;
    font-size: 20px;
}

h5 {
    color: #000000;
    font-size: 15px; /* Añadido 'px' */
}




/* Barra de contacto */
.contact-bar {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #062f3d; /* Color de fondo azul oscuro */
    padding: 5px 20px; /* Reducido a 5px en la parte superior e inferior */
    color: white;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    flex-wrap: wrap;
    z-index: 10001; /* No es lo correcto, pero por alguna razón, solo funciona así */
}


/* Información del correo */
.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 8px;
    color: #fff;
}

/* Teléfono */
.phone-info {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.phone-info span {
    display: flex;
    align-items: center;
}

.phone-info i {
    margin-right: 8px;
    color: #fff;
}

/* Iconos redes sociales */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #2fb345;
}

.icon-x {
    transition: all 0.3s ease;
}

.icon-x:hover {
    filter: brightness(0) saturate(100%) invert(68%) sepia(41%) saturate(431%) hue-rotate(77deg) brightness(90%) contrast(89%);
}

/* Responsivo */
@media (max-width: 768px) {
    .contact-bar {
        display: none;
        height: 0; /* Asegura que no ocupe espacio */
        margin: 0; /* Elimina cualquier margen que pueda crear espacio */
        padding: 0; /* Elimina cualquier padding */
}
}



/* Estilos de las secciones */



/* isHomePage=true */
/* Estilos generales para la barra de navegación */
.navbar {
    background-color: #2abed8;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.navbar-nav .nav-link.active {
    color: #cc4b0fee;             
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    transition: transform 0.3s ease;
    padding-top: 30px;
}

.navbar-nav .nav-link:hover {
    color: #e6ae17ee;
    transform: translateY(-5px);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%281, 1, 1, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.collapse:not(.show) {
    display: none;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .navbar-nav .nav-link {
        font-size: 18px;
        padding: 10px 15px;
        width: 100%;
        text-align: left;
    }
}






/* INDEX */
/*parrafo*/

.parrafo p {
    font-size: 17px;
    line-height: 1.5;
    text-align: center;
    font-weight: bolder;
}

/*Secciones*/
.section {
    padding: 5px;
    background-color: #dbfde6e3 ;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: auto;
}

.section:nth-child(even) {
    background-color: #f8f8f8; 
}

.section-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

.section-b{
    padding: 50px 0;
    background-color: #f1f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.text {
    flex: 1;
    padding-right: 20px;
}

.text h3 {
    font-size: 30px;
    color: #504f4f;
    margin-bottom: 15px;
    font-weight: bold;
}

.text p {
    font-size: 17px;
    color: #0e0d0d;
    margin-bottom: 20px;
    font-weight: bold;
}

.btn {
    background-color: #15b307;
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    
}

.btn:hover {
    background-color: #15b307;
    color: rgb(255, 255, 255);
    transform: scale(1.1);
}


.image {
    flex: 1;
    text-align: center;
}

.image img {
    max-width: 75%;
    height: auto;
    border-radius: 10%;
}

.image-2{
    flex: 1;
    text-align: center;
}

.image-2 img{
    max-width: 60%;
    height: auto;
    border-radius: 30%;
}

.image-4{
    flex: 1;
    text-align: center;
}

.image-4 img{
    max-width: 65%;
    height: auto;
    border-radius: 30%;
}


@media (max-width: 768px) {
    .section-content {
    flex-direction: column;
    text-align: center;
    }

.text {
    padding-right: 0;
    }

.image {
    margin-top: 20px;
    text-align: center;
    }
}

/*seccion beneficios esta sección se modificará completamente
con un diseño totalmente diferente*/
/* Contenedor principal */
.section-beneficios {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 5px;
    text-align: center;
}

.section-beneficios h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #000000;
    font-style: italic;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.card {
    background-color: #d4d3d367;
    border-radius: 1px;
    width: 260px;
    padding: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    display: block
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #000000;
    font-weight: bolder;
}

.card p {
    font-size: 0.95rem;
    color: #000000;
    font-weight: bolder;
    text-align: center;
}

@media (max-width: 768px) {
    .card {
    width: 100%;
    }
}

@media (max-width: 480px) {
.section-beneficios h2 {
    font-size: 1.5rem;
    }

.card {
    padding: 15px;
    }

.card h3 {
    font-size: 1rem;
    }

.card p {
    font-size: 0.85rem;
    }  
}

/*INDEX/contáctanos*/
.implementacion {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: #e3ffd4;
    flex-wrap: wrap;
}

.content- {
    max-width: 500px;
    margin-right: 200px;
}

.texto h2 {
    font-size: 2rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.texto p {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Botón */
.btn- {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f1a335;
    color: rgb(0, 0, 0);
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-:hover {
    background-color: #e6992c;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .content- {
        max-width: 400px;
        margin-right: 100px;
    }

    .texto h2 {
        font-size: 1.8rem;
    }

    .texto p {
        font-size: 1rem;
    }

    .btn- {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .implementacion {
        flex-direction: column;
        padding: 30px;
    }

    .content- {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .texto h2 {
        font-size: 1.6rem;
    }

    .texto p {
        font-size: 0.95rem;
    }

    .btn- {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .implementacion {
        padding: 20px;
    }

    .texto h2 {
        font-size: 1.4rem;
    }

    .texto p {
        font-size: 0.85rem;
    }

    .btn- {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}


/*Se puede Reutilizar*/
/* .boton-asesor {
    background-color: #ff9900;
    color: #000000;
    font-weight: bold;
    border: none;
    padding: 15px 30px;
    text-align: center;
    font-size: 16px;
    border-radius: 20px; 
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    text-decoration: none;
} */

/* .boton-asesor:hover {
    background-color: #FFA726;
} */


/*Contácto*/
/* .customer-service {
    text-align: center;
    padding: 40px;
    background-color: #ffffff;
}

.customer-service h2 {
    color: #f57803;
    font-size: 40px;
    margin-bottom: 50px;
}

.service-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 5px;
}

.service-item {
    border-radius: none;
    padding: 20px;
    width: 250px;
    box-shadow: none;
    margin: 20px;
    text-align: center;
}

.icon {
    font-size: 80px;
    color: #00b7c2;
    margin-bottom: 15px;
}

.service-item p {
    color: #5e5c5c;
    font-size: 18px;
    margin: 5px 0;
    text-align: center;
    font-weight: bold;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

.service-item a {
    text-decoration: none;
    color: #086cd8;
}

.service-item a:hover {
    text-decoration: underline;
} */


/*CONTÁCTO*/

.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-image: url('/images/contact.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    padding: 100px;
    color: white;
    position: relative; /* Para el overlay */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(53, 52, 52, 0.699);
    z-index: 1;
}

.contact {
    width: 40%;
    z-index: 2;
}

.contact h1 {
    font-size: 50px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: bold;
}

.contact p {
    margin-bottom: 30px;
    font-weight: bold;
}

.contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact .contact-item i {
    font-size: 50px;
    margin-right: 20px;
    color: #ffcc00;
}

.contact .contact-item h4 {
    font-size: 25px;
    margin-bottom: 5px;
    color: #15b307;
    font-weight: bold;
}

.contact .contact-item p {
    font-size: 18px;
}

.contact-form {
    width: 50%;
    z-index: 2;
}

.contact-form form {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Mantener dos columnas en pantallas grandes */
    gap: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%; /* Asegurarse de que los inputs ocupen todo el ancho */
    font-weight: bold;
    box-sizing: border-box; /* Para asegurar que el padding y el width se apliquen correctamente */
}

.contact-form button {
    grid-column: 1 / span 2;
    padding: 15px;
    background-color: #ffcc00;
    border: none;
    color: black;
    font-size: 18px;
    border-radius: 55px;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    width: 100%; /* Para ocupar todo el ancho */
}

.contact-form button:hover {
    background-color: #e6b800;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form input,
.contact-form textarea {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsividad para móviles */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        align-items: center; /*centrar en móviles*/
        padding: 20px;
        min-height: auto;
    }

    .contact {
        width: 100%;
        max-width: 500px;
        text-align: center; 
        margin-bottom: 30px;
    }

    .contact h1 {
        font-size: 35px;
    }

    .contact .contact-item {
        justify-content: center; 
    }

    .contact .contact-item i {
        font-size: 30px;
        margin-right: 10px;
    }

    .contact .contact-item h4 {
        font-size: 20px;
    }

    .contact-form {
        width: 100%;
        max-width: 500px; 
    }

    .contact-form form {
        grid-template-columns: 1fr; 
        gap: 15px;
        padding: 15px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        width: 100%; 
        margin: 0; 
    }

    .contact-form button {
        grid-column: auto; 
        margin-top: 20px; 
    }
}

.visita {
    font-size: 20px; /* Tamaño base ajustado */
    font-weight: bold;
    color: #000000;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.visita1 {
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding-bottom: 20px;
}

.visita2 {
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding-bottom: 10px;
}

/* Media queries para pantallas más pequeñas */
@media (max-width: 768px) {
    .visita {
        font-size: 18px;
    }

    .visita1, .visita2 {
        font-size: 24px;
        padding-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .visita {
        font-size: 16px;
    }

    .visita1, .visita2 {
        font-size: 20px;
        padding-bottom: 10px;
    }
}
/* Footer */
.footer {
    background-color: #062f3d;
    color: #fff;
    padding: 25px 0;
    font-size: 14px;
    margin-top: auto;
}

.footer .container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

.footer h4 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #ff3c00ee;
}

.footer-about, .footer-contact, .footer-social {
    flex: 1;
    margin-bottom: 20px;
}

.footer-about p{
    text-align: justify;
}

.footer-contact p{
    text-align: center;
}


.footer-contact i {
    margin-right: 10px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social p{
    text-align: center;
}

.footer-social a {
    display: inline-block;
    margin-right: 20px;
    transition: transform 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    text-align: center;
    color: #707272f1;
}

.footer-about-content {
    display: flex;
    align-items: center; 
}

.footer-logo {
    max-width: 200px; 
    margin-right: 20px;
}

.about-text {
    max-width: 500px;
}

/* Full Width Container */
.container-fluid {
    padding: 0;
}

/* Botón Arriba */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: none; /* Inicialmente oculto */
    cursor: pointer;
    z-index: 2;
}

.scroll-to-top img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px); 
    }
    to {
        opacity: 1;
        transform: translateY(0); 
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0); 
    }
    to {
        opacity: 0;
        transform: translateY(-20px); 
    }
}

/* Ocultar el botón en pantallas pequeñas */
@media (max-width: 768px) {
    .scroll-to-top {
        display: none !important;
    }
}


.modal-style {
    display: none;
    position: fixed;
    top: 110px; 
    right: 20px; 
    z-index: 1;
    width: 320px;
    background: rgba(255, 255, 255, 0.833); 
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
    opacity: 0; 
    transform: translateY(-20px); 
    transition: opacity 0.8s ease, transform 0.8s ease; 
}

.modal-style.show {
    display: block; 
    animation: slideIn 0.3s forwards; 
}

.modal-style.hide {
    animation: slideOut 0.3s forwards;
}


.modal-header {
    background: #062f3d; 
    padding: 10px 15px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.modal-title {
    margin: 0 !important;
    font-size: 20px !important;
    font-weight: bold !important;
    color: #ffffff !important;
}

.close {
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.modal-body {
    padding: 15px;
    color: #333333;
    font-size: 14px;
    background-color: #c1b4b182;
}
.modal-body p {
    color: #000000;
    font-weight: bold;
}

.modal-footer {
    padding: 10px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-top: 1px solid #ddd;
    background-color: #062f3d;
}

.btn-primary {
    background: #00A8CC;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
}

.btn-primary:hover {
    background: #007DA5;
}

.btn-secondary {
    background: #F4F4F4;
    color: #333;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-secondary:hover {
    background: #E0E0E0;
}

/* VIDEO */
@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .custom-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: #fff;
    animation: fadeIn 1s ease-in-out;
    padding: 0 20px; /* Añadir padding para evitar que el contenido toque los bordes en pantallas pequeñas */
    box-sizing: border-box;
  }
  
  .custom-hero-text h1 {
    font-size: 3.5rem;
    color: #e86c00;
    padding-left: 50px;
    font-weight: bolder;
    margin: 0; /* Eliminar márgenes para evitar desplazamientos no deseados */
  }
  
  .custom-dots {
    color: #e86c00;
    font-size: 4rem;
    font-weight: bold;
    line-height: 0.5;
    margin-top: -15px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    letter-spacing: 1.5rem;
  }
  
  .custom-hero-text .custom-hero-subtitle {
    font-size: 3.0rem;
    color: #000000;
    margin-bottom: 15px;
    padding-left: 50px;
  }
  
  .custom-hero-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 50px;
  }
  
  .custom-hero-image {
    max-width: 100%;
    margin-top: 0%;
  }
  
  .custom-hero-image img {
    width: 100%;
    max-width: 100%; /* Asegurar que la imagen no se distorsione */
  }
  
  @media (max-width: 1200px) {
    .custom-hero-section {
      flex-direction: column-reverse;
      align-items: center;
      padding: 20px 0; /* Añadir espacio interno en pantallas más pequeñas */
    }
  
    .custom-hero-text h1 {
      font-size: 3rem;
      padding-left: 0;
      text-align: center; /* Centrar texto */
    }
  
    .custom-hero-text .custom-hero-subtitle {
      font-size: 2.5rem;
      padding-left: 0;
      text-align: center; /* Centrar texto */
    }
  
    .custom-hero-text p {
      padding-left: 0;
      text-align: center; /* Centrar texto */
    }
  
    .custom-dots {
      text-align: center; /* Asegurar que los puntos estén centrados */
      font-size: 2rem;
    }
  }
  
  @media (max-width: 992px) {
    .custom-hero-text h1 {
      font-size: 2.5rem;
      padding-left: 0;
    }
  
    .custom-hero-text .custom-hero-subtitle {
      font-size: 2rem;
      padding-left: 0;
    }
  
    .custom-hero-text p {
      padding-left: 0;
      font-size: 1rem;
    }
  
    .custom-hero-text .custom-dots {
      font-size: 1.5rem;
      padding-left: 0;
    }
  }
  
  @media (max-width: 768px) {
    .custom-hero-text h1 {
      font-size: 2rem;
      padding-left: 0;
    }
  
    .custom-hero-text .custom-hero-subtitle {
      font-size: 1.8rem;
      padding-left: 0;
    }
  
    .custom-hero-text p {
      font-size: 0.9rem;
      padding-left: 0;
    }
  
    .custom-dots {
      font-size: 1.5rem; /* Ajustar tamaño en pantallas más pequeñas */
      margin-top: 10px; /* Evitar que los puntos se acerquen mucho */
    }
  }
  
  @media (max-width: 576px) {
    .custom-hero-section {
      padding: 20px 0; /* Añadir espacio interno para pantallas pequeñas */
    }
  
    .custom-hero-text h1 {
      font-size: 1.8rem;
      text-align: center; /* Centrar texto */
    }
  
    .custom-hero-text .custom-hero-subtitle {
      font-size: 1.6rem;
      text-align: center; /* Centrar texto */
    }
  
    .custom-hero-text p {
      font-size: 0.8rem;
      text-align: center; /* Centrar texto */
    }
  
    .custom-hero-image img {
      width: 100%;
      height: auto; /* Ajustar imagen para que no distorsione */
    }
  }
  
  
  
  /* características  */
  .features { 
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
    padding: 40px;
    background-color: #f9f9f9;
  }
  
  .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .feature .icon {
    margin-bottom: 20px;
  }
  
  .feature .icon img {
    width: 60px; 
    height: 60px;
  }
  
  .feature h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
  }
  
  .feature p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .features {
      grid-template-columns: 1fr; 
    }
  }
  
  
  
  /* nueva */
  .feature-section {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding-left: 30px;
    flex-wrap: wrap; /* Permite que los elementos se ajusten en pantallas más pequeñas */
}

.feature-content {
    flex: 1;
    padding: 20px;
    box-sizing: border-box; /* Asegura que el padding no afecte el tamaño del contenedor */
}

.feature-content h2 {
    font-size: 2.0rem;
    margin-bottom: 10px;
}

.feature-content ul {
    list-style: none;
    padding: 0;
}

.feature-content ul li {
    margin: 5px 0;
    padding-left: 20px;
    text-indent: -20px;
    font-size: 1.1rem; /* Aumentar ligeramente el tamaño de la fuente para mejorar la legibilidad */
}

.feature-content ul li:before {
    content: "•";
    padding-right: 10px;
    color: orange; 
}

.feature-image {
    flex: 1;
    text-align: center;
    padding-right: 15px;
    box-sizing: border-box;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 65px;
}

.feature-image1 {
    flex: 1;
    text-align: center;
    padding-left: 10px;
    box-sizing: border-box;
}

.feature-image1 img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.feature-image2 {
    flex: 1;
    text-align: center;
    padding-left: 10px;
    box-sizing: border-box;
}

.feature-image2 img {
    max-width: 60%;
    height: auto;
    border-radius: 15px;
}

@media (max-width: 1200px) {
    .feature-section {
        flex-direction: column; /* Cambia la disposición a columna en pantallas más pequeñas */
        align-items: center;
        padding-left: 0;
    }

    .feature-content {
        padding: 15px;
    }

    .feature-image {
        padding-right: 0;
        margin-top: 20px; /* Agregar un poco de espacio entre la imagen y el contenido */
    }

    .feature-content h2 {
        font-size: 1.8rem;
    }

    .feature-content ul li {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .feature-content h2 {
        font-size: 1.7rem;
    }

    .feature-content ul li {
        font-size: 1rem;
    }

    .feature-image img {
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .feature-content h2 {
        font-size: 1.6rem;
    }

    .feature-content ul li {
        font-size: 0.95rem;
    }

    .feature-image img {
        border-radius: 20%; /* Hacer la imagen redonda en pantallas pequeñas */
    }
}

@media (max-width: 576px) {
    .feature-section {
        padding-left: 0;
    }

    .feature-content h2 {
        font-size: 1.4rem;
    }

    .feature-content ul li {
        font-size: 0.9rem;
    }

    .feature-image img {
        border-radius: 15%;
    }
}


  /* ADAS */
  .adas {
    max-width: 1000px; /* Tamaño máximo inicial */
    margin: 50px auto;
    text-align: center;
    padding: 30px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.adas img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* DBA */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas por defecto */
    gap: 20px;
    margin-top: 20px;
    margin-left: auto; /* Centra el grid horizontalmente */
    margin-right: auto; /* Centra el grid horizontalmente */
    padding-bottom: 35px;
    max-width: 1000px; /* Limita el ancho del grid */
    width: 100%; /* Se adapta al ancho de la pantalla */
    box-sizing: border-box; /* Incluye el padding en el tamaño total */
}

.item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* Media query para pantallas medianas */
@media (max-width: 768px) {
    .adas {
        max-width: 90%; /* Reduce el ancho en pantallas más pequeñas */
        padding: 20px; /* Reduce el padding */
    }

    .grid {
        grid-template-columns: 1fr; /* Cambia a una sola columna */
        padding-left: 20px;
        padding-right: 20px; /* Agrega padding lateral */
    }
}

/* Media query para pantallas pequeñas */
@media (max-width: 480px) {
    .adas {
        margin: 20px auto; /* Reduce el margen */
        padding: 15px; /* Ajusta el padding */
    }

    .grid {
        gap: 10px; /* Menor espacio entre elementos */
        padding-left: 10px;
        padding-right: 10px;
    }
}


  /* caracteristicas gps */
.gpsc {
    max-width: 95%; /* Ocupa el 95% del ancho de la pantalla */
    margin: 50px auto;
    text-align: center;
    padding: 30px; /* Aumentado de 20px a 30px */
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra más prominente */
    border-radius: 8px; /* Bordes más suaves */
}

.gpsc img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Ajustado para coincidir con los bordes del contenedor */
}

/* Responsive */
@media (max-width: 768px) {
    .gpsc {
        max-width: 90%; /* Reduce el ancho a 90% en pantallas más pequeñas */
        padding: 20px; /* Reduce el padding para dispositivos más pequeños */
    }
}

@media (max-width: 480px) {
    .gpsc {
        max-width: 100%; /* Ocupa el 100% del ancho en pantallas muy pequeñas */
        padding: 15px; /* Reduce aún más el padding */
    }
}



/* BODY */
.main-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: #fff;
    padding-top: 55px;
}

.hero-content {
    text-align: left;
    margin: 0 20px;
    animation: fadeInText 1.5s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #e86c00;
    padding-left: 100px;
    font-weight: bold;
    margin: 0;
    animation: slideInFromLeft 1.5s ease-out;
}

.hero-tagline {
    font-size: 3.0rem;
    color: #000000;
    margin-bottom: 15px;
    padding-left: 100px;
    font-weight: 400;
    animation: slideInFromRight 1.5s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 100px;
    animation: fadeInText 2s ease-out;
}

.hero-visual {
    max-width: 100%;
    margin-top: 0%;
}

.hero-visual img {
    width: 100%;
    transition: transform 1.5s ease, opacity 1s ease;
    will-change: transform;
    animation: fadeIn 1s ease-out;
}

.hero-visual:hover img {
    transform: scale(1.1);
    opacity: 0.9;
}

.hero-visual1 {
    max-width: 100%;
    margin-top: 0%;
}

.hero-visual1 img {
    width: 100%;
    transition: transform 1.5s ease, opacity 1s ease;
    will-change: transform;
    animation: fadeIn 1s ease-out;
}

.hero-visual1:hover img {
    transform: scale(1.1);
    opacity: 0.9;
}



/* Animaciones */
@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */
@media (max-width: 1200px) {
    .main-hero {
        flex-direction: column-reverse;
        align-items: center;
        padding: 0%;
    }

    .hero-content h1 {
        font-size: 3rem;
        padding-left: 0;
    }

    .hero-tagline {
        font-size: 2.5rem;
        padding-left: 0;
    }

    .hero-content p {
        padding-left: 0;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
        padding-left: 0;
    }

    .hero-tagline {
        font-size: 2rem;
        padding-left: 0;
    }

    .hero-content p {
        padding-left: 0;
        font-size: 1rem;
    }

}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
        padding-left: 0;
    }

    .hero-tagline {
        font-size: 1.8rem;
        padding-left: 0;
    }

    .hero-content p {
        font-size: 0.9rem;
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .main-hero {
        padding: 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .hero-visual1 {
        display: none;
    }
}

/* Contacto nuevo */
.contacts-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    text-align: center;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    margin: 10px 0;
    font-size: 1.2em;
    color: #333;
}

.contact-card p {
    margin: 5px 0;
    font-size: 1em;
    color: #777;
    font-weight: bolder;
}

.video-container iframe {
    width: 800px; /* Tamaño original para pantallas grandes */
    height: 400px; /* Tamaño original para pantallas grandes */
}

@media (max-width: 820px) {
    .video-container iframe {
      width: 100%; /* Se ajusta al ancho del contenedor */
      height: auto; /* Mantiene la proporción del video */
    }
}
