body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
  }
  
  header {
    text-align: center;
    padding: 20px;
  }
  
  h1, h2 {
    color: #003366;
  }
  
  .hero {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .hero img {
    width: 100%;
    display: block;
    filter: brightness(0.9);
  }
  
  .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .hero:hover .overlay-text {
    opacity: 1;
  }
  
  .servicios {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
  }
  
  .servicios ul {
    list-style-type: none;
    padding: 0;
  }
  
  .servicios li {
    background: #eef2f7;
    margin-bottom: 10px;
    padding: 10px;
    border-left: 5px solid #003366;
  }
  
  .foto-secundaria {
    text-align: center;
    margin: 40px 0;
  }
  
  .foto-secundaria img {
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  footer {
    text-align: center;
    background: #003366;
    color: white;
    padding: 20px;
  }

  #contacto form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

#contacto label {
  margin-top: 10px;
  font-weight: bold;
}

#contacto input,
#contacto textarea {
  padding: 8px;
  margin-top: 4px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1em;
}

#contacto button {
  margin-top: 15px;
  padding: 10px;
  background-color: #004080;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#contacto button:hover {
  background-color: #0066cc;
}

  