 body {
      font-family: Arial, sans-serif;
      background: url('../fotos/afuera.jpeg') no-repeat center center fixed;
      background-size: cover;
      color: white;
      text-align: center;
      padding: 100px 20px;
      margin: 0;
    }

    .container {
      background-color: rgba(0, 0, 0, 0.5); /* fondo semi-transparente */
      border-radius: 20px;
      padding: 40px;
      max-width: 700px;
      margin: auto;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

    h1 {
      font-size: 40px;
      margin-bottom: 20px;
      color: #ffffff;
    }

    p {
      font-size: 18px;
      margin-bottom: 40px;
    }

    .boton-section {
      margin-bottom: 30px;
    }

    .boton {
      display: inline-block;
      background-color: #ffffff;
      color: #005b99;
      border: none;
      padding: 15px 30px;
      font-size: 18px;
      border-radius: 12px;
      cursor: pointer;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s;
      margin-top: 10px;
    }

    .boton:hover {
      background-color: #e0f0f5;
    }