body {
    margin: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}



.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #ffffff;
    border-bottom: 1px solid #ffffff;
    height: 80px; /* Altura para centrar todos los elementos */
}

.left-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.left-section .link {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    font-weight: normal; /* Cambiado a normal */
}

.left-section .link:hover {
    text-decoration: underline;
}

.center-section {
    flex: 1;
    text-align: center;
}

.center-section .logo {
    height: 110px; /* Tamaño ajustado del logotipo */
}

.right-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.right-section .social-icons__link {
    display: inline-block;
    color: #000;
    text-decoration: none;
}

.right-section .social-icons__link:hover path {
    fill: #4267B2; /* Cambia el color al azul típico de Facebook */
}


.hero-section {
    background: linear-gradient(90deg, #0a1e3a, #12a6c9); /* Fondo degradado */
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.main-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: #12a6c9;
    margin-bottom: 20px;
    line-height: 1.3;
}

.sub-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #12a6c9;
    color: #042a5d;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 28px;
    border: 1px solid #fff;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: rgba(255, 255, 255, 0);
    color: #fff;
    border-color: #fff;
}

.description {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    margin-top: 20px;
}
.about-section {
    background-color: #ffffff; /* Fondo azul oscuro */
    color: rgb(4, 42, 93);
    padding: 40px 20px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #12a6c9;
    margin-bottom: 20px;
}

.about-description {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-item {
    background: #012b45; /* Fondo para los elementos */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-item h6 {
    font-family: 'League Spartan', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #12a6c9;
    margin-bottom: 10px;
}

.service-item p {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: white;
}


#about-us-title {
    font-size: 32px; /* Tamaño del título */
    color: #12a6c9; /* Azul claro */
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
    font-family: 'League Spartan', sans-serif; /* Usa la fuente correcta */
}

#about-us-text {
    font-size: 18px; /* Tamaño del texto */
    color: #042a5d; /* Azul oscuro */
    font-weight: bold;
    text-align: center;
    line-height: 1.6; /* Altura entre líneas para mejor lectura */
    font-family: 'Glacial Indifference', sans-serif; /* Fuente */
    margin: 0 auto; /* Centrado */
    max-width: 800px; /* Limitar el ancho del texto */
}
#additional-services-section {
    background: linear-gradient(135deg, rgb(4, 42, 93), rgb(0, 172, 193)); /* Fondo con degradado */
    padding: 16px 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* Dividimos en 12 columnas */
    gap: 16px;
    color: white; /* Color base para el texto */
}

#additional-services-title {
    grid-column: span 12; /* Título ocupa todas las columnas */
    font-size: 48px; /* Tamaño del título */
    color: rgb(18, 166, 201); /* Azul claro */
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    font-family: 'League Spartan', sans-serif; /* Fuente personalizada */
}

#additional-services-list {
    grid-column: span 6; /* La lista ocupa 6 columnas */
    font-size: 30px;
    line-height: 1.1;
    padding: 0;
    margin: 0 auto;
}

#additional-services-list li {
    margin-bottom: 12px;
    font-weight: bold;
}

#additional-services-image {
    grid-column: span 5; /* Imagen ocupa las 6 columnas restantes */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}
.block-background {
    width: 100vw; /* Ocupa todo el ancho de la ventana */
    position: relative;
    left: 0;
    right: 0;
}
#additional-services-section img {
    width: 300px; /* Ajusta el tamaño de la imagen */
    height: auto; /* Mantiene la proporción de la imagen */
    border-radius: 15px; /* Redondeo de las esquinas */
    overflow: hidden; /* Asegura que los bordes redondeados se respeten */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para darle un toque visual */
    display: block; /* Asegura que se comporte como un bloque */
    margin: 0 auto; /* Centra la imagen dentro de su contenedor */
}

.additional-services {
    background: linear-gradient(135deg, #002a5d, #00acc1);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Espacio entre texto e imagen */
}

.container {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
}

.text-content {
    color: white;
    flex: 1;
}

.text-content h2 {
    font-size: 2rem;
    color: #12a6c9;
    margin-bottom: 20px;
}

.text-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.image-content img {
    border-radius: 15px; /* Bordes redondeados */
    max-width: 100%;
    height: auto;
    width: 300px; /* Ajusta el tamaño de la imagen */
    object-fit: cover;
}

/* Sección WHY CHOOSE US */
.why-choose-us {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.section-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 36px;
    color: #12a6c9;
    margin-bottom: 20px;
}

.content p {
    font-family: 'Glacial Indifference', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #042a5d;
    line-height: 1.3;
    margin: 0 auto;
    max-width: 1000px;
    text-align: center;
}

.content .highlight {
    color: #12a6c9;
    font-weight: bold;
}

/* Sección de Contacto */
.contact-block {
    padding: 40px 20px;
    background: linear-gradient(135deg, rgb(4, 42, 93), rgb(0, 172, 193));
    color: white;
    text-align: center;
  }
  
  .contact-title {
    font-size: 36px;
    color: white; /* Título en blanco */
    text-decoration: underline;
    margin-bottom: 20px;
  }
  
  .contact-info {
    margin-bottom: 30px;
    font-size: 16px;
    color: white;
  }
  
  .contact-info p {
    margin: 10px 0;
  }
  
  .contact-info a {
    color: rgb(18, 166, 201);
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  /* Sección de Contacto */
.contact-block {
    padding: 40px 20px;
    background: linear-gradient(135deg, rgb(4, 42, 93), rgb(0, 172, 193));
    color: white;
    text-align: center;
  }
  
  .contact-title {
    font-size: 36px;
    color: white; /* Título en blanco */
    text-decoration: underline;
    margin-bottom: 20px;
  }
  
  .contact-info {
    margin-bottom: 30px;
    font-size: 16px;
    color: white;
  }
  
  .contact-info p {
    margin: 10px 0;
  }
  
  .contact-info a {
    color: rgb(18, 166, 201);
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
/* Sección de Contacto */
.contact-block {
    padding: 40px 20px;
    background: linear-gradient(135deg, rgb(4, 42, 93), rgb(0, 172, 193));
    color: white;
    text-align: center;
  }
  
  .contact-title {
    font-size: 36px;
    color: white;
    text-decoration: underline;
    margin-bottom: 20px;
    font-weight: bold; /* Negrita */
  }
  
  .contact-info {
    margin-bottom: 30px;
    font-size: 16px;
    color: white;
    font-weight: bold; /* Negrita */
  }
  
  .contact-info p {
    margin: 10px 0;
  }
  
  .contact-info a {
    color: white; /* Texto blanco para los enlaces */
    text-decoration: none;
    font-weight: bold;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  /* Estilo del mapa y formulario */
  .contact-lower-section {
    display: flex;
    justify-content: center; /* Centra el mapa y formulario */
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
  
  .contact-map {
    width: 40%; /* Tamaño reducido del mapa */
    height: 150px; /* Mapa más pequeño */
  }
  
  .contact-form {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra el contenido del formulario */
    gap: 10px;
  }
  
  .contact-form label {
    font-size: 14px;
    color: white; /* Blanco */
    margin-bottom: 5px;
    font-weight: bold; /* Negrita */
  }
  
  .contact-form input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid rgb(200, 200, 200);
    border-radius: 5px;
    width: 100%;
    outline: none;
    background-color: rgb(248, 248, 248);
  }
  
  .contact-form button {
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold; /* Negrita */
  }
  
  .contact-form button:hover {
    background-color: white;
    color: rgb(4, 42, 93);
    border-color: rgb(4, 42, 93);
  }
  
  