/* Tipografía moderna y colores suaves */
body {
    font-family: 'Rubik', sans-serif;
    margin: 0;
    background-color: #f6fafd;
    color: #1e2d3a;
  }
  
  a {
    text-decoration: none;
    color: #009fb7;
    font-weight: 500;
  }
  
  a:hover {
    color: #007c91;
  }
  
  h1, h2, h3 {
    margin: 0 0 1rem;
    color: #0a2342;
  }
  
  p {
    line-height: 1.6;
  }
  
  /* Encabezado */
  .encabezado {
    background-color: #0a2342;
    padding: 1rem 0;
  }
  
  .contenedor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 50px;
  }
  
  .menu a {
    margin-left: 2rem;
    color: #ffffff;
  }
  
  /* Hero */
  .hero {
    background: linear-gradient(135deg, #009fb7, #00c2d1);
    color: white;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .contenido-hero {
    display: flex;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .hero-texto {
    flex: 1 1 500px;
    text-align: left;
  }
  
  .hero-texto h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero-texto p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #ffffff;
    color: #009fb7;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background-color: #e0f7fa;
  }
  
  .hero-imagen {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .hero-imagen img {
    max-width: 100%;
    height: auto;
    width: 300px;
    border-radius: 12px;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  /* Servicios */
  .servicios {
    padding: 4rem 2rem;
    background-color: #ffffff;
    text-align: center;
  }
  
  .servicios h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #009fb7;
  }
  
  .contenedor-servicios {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .servicio {
    width: 300px;
    background-color: #f1f9fc;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
  }
  
  .servicio:hover {
    transform: translateY(-5px);
  }
  
  .servicio img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  /* Footer */
  .pie {
    background-color: #0a2342;
    color: #ffffff;
    padding: 3rem 1rem;
    font-size: 0.95rem;
  }
  
  .contenedor-footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .footer-columna {
    flex: 1 1 250px;
    min-width: 200px;
  }
  
  .footer-columna h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #ffffff30;
    padding-bottom: 0.5rem;
  }
  
  .footer-columna a {
    display: block;
    color: #ffffffcc;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
  }
  
  .footer-columna a:hover {
    color: #00c2d1;
  }
  
  .footer-columna p {
    margin: 0.3rem 0;
    color: #ffffffcc;
  }
  
  /* quienes somos*/
  .seccion-info {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .bloque {
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
  }
  
  .bloque:nth-child(1) {
    background-color: #e0f7fa;
  }
  
  .bloque:nth-child(2) {
    background-color: #f1f8ff;
  }
  
  .bloque:nth-child(3) {
    background-color: #e0f7fa;
  }
  
  .bloque:nth-child(4) {
    background-color: #f1f8ff; 
  }
  
  .bloque {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 4rem;
    gap: 2rem;
  }
  
  .bloque.reverse {
    flex-direction: row-reverse;
  }
  
  .bloque-img {
    flex: 1 1 400px;
    max-width: 250px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .bloque-texto {
    flex: 1 1 500px;
  }
  
  .bloque-texto h2 {
    color: #009fb7;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .bloque-texto p,
  .bloque-texto ul {
    font-size: 1.1rem;
    color: #333;
  }
  
  .bloque-texto ul {
    list-style: disc inside;
    padding-left: 1rem;
  }

  .valores {
    background-color: #f0f7fa;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .valores h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #005a9e;
  }
  
  .contenedor-valores {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .valor {
    width: 280px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .valor:hover {
    transform: translateY(-5px);
  }
  
  .valor-imagen {
    width: 90px;
    height: 100px;
    object-fit: cover;
  }
  
  .valor-texto {
    padding: 1.5rem;
  }
  
  .valor h3 {
    font-size: 1.5rem;
    color: #009fb7;
    margin-bottom: 1rem;
  }
  
  .valor p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
  }

  /*servicios*/
  /* Estilos para la página de Servicios */
.servicios {
    background-color: #e8f7fc;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .servicios h2 {
    font-size: 2.5rem;
    color: #005a9e;
    margin-bottom: 2rem;
  }
  
  .contenedor-servicios {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .servicio {
    width: 280px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .servicio:hover {
    transform: translateY(-5px);
  }
  
  .servicio img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #f0f0f0;
  }
  
  .servicio h3 {
    font-size: 1.5rem;
    color: #009fb7;
    margin: 1rem 0;
  }
  
  .servicio p {
    font-size: 1rem;
    color: #555;
    padding: 0 1rem 1.5rem;
    line-height: 1.5;
  }

  /*contacto*/
/* Sección de Contacto */
.contacto {
    padding: 4rem 2rem;
    background-color: #ffffff;
  }
  
  .contenedor-contacto {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Mapa */
  .mapa {
    flex: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .mapa iframe {
    border-radius: 12px;
  }
  
  /* Información de contacto */
  .informacion-contacto {
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .informacion-contacto h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #005a9e;
  }
  
  .informacion-contacto p {
    font-size: 1.1rem;
    margin: 1rem 0;
  }
  
  .informacion-contacto strong {
    color: #005a9e;
  }
  
  
  
  