/* Fondo principal y texto */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #08374b;
    color: #ffffff;
  }
  
  /* Menú superior */
  .top-menu {
    background-color: #08374b;
    padding: 10px 30px;
    text-align: right;
  }
  
  .top-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 25px;
  }
  
  .top-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
  }
  
  .top-menu a:hover {
    color: #cc0000;
    border-bottom: 2px solid #cc0000;
  }
  
  /* Encabezado principal */
  .header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #08374b;
    padding: 20px 30px;
    border-bottom: 3px solid #ffffff;
  }
  
  .header-left {
    display: flex;
    align-items: center;
  }
  
  .header-left img {
    height: 100px; /* logo más grande */
    margin-right: 20px;
  }
  
  .header-left h1 {
    color: #ffffff;
    font-size: 1.8em;
    margin: 0;
  }
  
  .header-right {
    flex: 1;
    text-align: center;
  }
  
  .contacto-texto {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contacto-texto .bienvenida {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #ffffff;
  }
  
  .contacto-texto .descripcion {
    font-size: 1em;
    margin: 0 0 12px 0;
    color: #ffffff;
  }
  
  .btn-contacto {
    background-color: #cc0000;
    color: white;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  }
  
  .btn-contacto:hover {
    background-color: #ff3333;
  }
  
  /* Botón general */
  .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  }
  
  /* Nosotros + Facebook */
  #info {
    display: flex;
    justify-content: space-between;
    padding: 50px 30px;
    background-color: #f9f9f9;
    color: #002244;
  }
  
  .nosotros {
    width: 48%;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .nosotros h2 {
    color: #08374b;
    margin-bottom: 20px;
  }
  
  .facebook {
    width: 48%;
  }
  
  /* Contacto */
  #contacto {
    padding: 40px 20px;
    background-color: #08374b;
    color: #ffffff;
  }
  
  form {
    background-color: #0a4a63;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: auto;
  }
  
  form label {
    font-weight: bold;
    color: #ffffff;
  }
  
  form input, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  form button {
    background-color: #cc0000;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  form button:hover {
    background-color: #ff3333;
  }
  
  /* Clientes */
  #clientes {
    padding: 50px 20px;
    background-color: #08374b;
    text-align: center;
    color: #ffffff;
  }
  
  #clientes h2 {
    color: #ffffff;
    margin-bottom: 30px;
  }
  
  .clientes-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .cliente {
    background-color: #0a4a63;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    width: 220px;
  }
  
  .cliente p {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  /* Botones diferenciados */
  .btn.verde { background-color: #009933; }
  .btn.azul  { background-color: #0055aa; }
  .btn.morado { background-color: #800080; }
  
  /* Footer */
  footer {
    background-color: #001f3f;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 20px;
    flex-wrap: wrap;
  }
  
  .footer-info {
    max-width: 60%;
    font-size: 0.9em;
    line-height: 1.5;
  }
  
  .footer-info h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  
  .footer-menu {
    text-align: center;
    flex-grow: 1;
  }
  
  .footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-menu li {
    margin-bottom: 8px;
  }
  
  .footer-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
  }
  
  .footer-menu a:hover {
    color: #cc0000;
  }
  
  /* Mensajes de éxito/error */
  .success {
    color: #00cc66;
    font-weight: bold;
    text-align: center;
  }
  
  .error {
    color: #ff3333;
    font-weight: bold;
    text-align: center;
  }