/* ======= Reset general ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #000000;
  }
  
  /* ======= Header ======= */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* ======= Navigation ======= */
  nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  nav a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-size: 16px;
    position: relative;
  }
  
  nav a:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -18px;
    color: #888888;
  }
  
  /* ======= Banner Section ======= */
  .banner {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('banner.jpg'); /* Reemplaza con tu imagen real */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 60px;
    color: #000000;
  }
  
  .banner h1 {
    font-size: 28px;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.7); /* Fondo semitransparente */
    padding: 10px 20px;
    border-radius: 8px;
  }
  
  /* ======= Message Section ======= */
  .message {
    padding: 60px 30px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
  }
  
  /* ======= Responsive Design ======= */
  @media screen and (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px 20px;
    }
  
    nav {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      margin-top: 15px;
    }
  
    nav a:not(:last-child)::after {
      content: "";
    }
  
    .banner {
      height: auto;
      padding: 30px 20px;
      justify-content: center;
      text-align: center;
    }
  
    .banner h1 {
      font-size: 22px;
      padding: 8px 16px;
    }
  
    .message {
      padding: 40px 20px;
      font-size: 18px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .banner h1 {
      font-size: 20px;
    }
  
    .message {
      font-size: 16px;
    }
  }

  /* ======= Servicios Section ======= */
.servicios {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 60px 40px;
    background-color: #ffffff;
  }
  
  .card {
    background-color: #ffffff;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .card h3 {
    font-size: 18px;
    text-align: center;
    margin: 15px 10px 5px;
    font-weight: bold;
  }
  
  .card p {
    font-size: 14px;
    text-align: center;
    padding: 0 15px 20px;
    color: #222;
  }
  
  .servicios-footer {
    padding: 40px 20px;
    text-align: center;
    background-color: #ffffff;
  }
  
  .servicios-footer h2 {
    font-size: 20px;
    font-weight: bold;
  }
  
  /* ======= Responsive Cards ======= */
  @media screen and (max-width: 768px) {
    .servicios {
      flex-direction: column;
      align-items: center;
    }
  
    .card {
      width: 90%;
    }
  
    .servicios-footer h2 {
      font-size: 18px;
    }
  }

  /* ======= ¿Quiénes somos? Section ======= */
.quienes-somos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 60px 40px;
    background-color: #ffffff;
  }
  
  .quienes-somos section {
    width: 45%;
    min-width: 300px;
    text-align: center;
    margin: 20px 0;
  }
  
  .quienes-somos img {
    width: 80px;
    margin-bottom: 20px;
  }
  
  .quienes-somos h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .quienes-somos p {
    font-size: 14px;
    color: #222;
    text-align: justify;
    padding: 0 10px;
  }
  
  /* ======= Responsive Design ======= */
  @media screen and (max-width: 768px) {
    .quienes-somos {
      flex-direction: column;
      padding: 30px 20px;
    }
  
    .quienes-somos section {
      width: 100%;
    }
  }
  
  
  /* ======= Contacto Section ======= */
.contacto {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    gap: 60px;
    background-color: #fff;
  }
  
  .contacto .mapa {
    flex: 1;
    max-width: 600px;
  }
  
  .contacto .mapa img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  }
  
  .contacto .info-contacto {
    flex: 1;
    max-width: 400px;
  }
  
  .contacto h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
  }
  
  .contacto ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
    color: #222;
  }
  
  .contacto ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .contacto ul li img {
    width: 32px;
    margin-right: 15px;
  }
  
  .barra-gradiente {
    margin-top: 40px;
    height: 10px;
    width: 100%;
    max-width: 300px;
    background: linear-gradient(90deg, #7a9fff, #0046ff);
    border-radius: 5px;
  }
  
  /* ======= Responsive ======= */
  @media screen and (max-width: 768px) {
    .contacto {
      flex-direction: column;
      padding: 40px 20px;
    }
  
    .contacto .mapa,
    .contacto .info-contacto {
      max-width: 100%;
    }
  
    .barra-gradiente {
      max-width: 100%;
    }
  }
  