/* Modal styles */
@font-face {
    font-family: "Roboto-bold";
    font-weight: 700;
    src: url("fonts/Roboto-Bold.ttf") format("truetype");
    font-display: swap;
  }
.modal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    font-family: "Roboto-bold";
  }
  
  .modal-content-modal {

    background: radial-gradient(circle, 
    rgba(255, 225, 0) 0%,  /* Color más claro en el centro */
    rgba(237, 112, 4) 80%); /* Color FF8400 en los extremos */
   
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    max-width: 900px;
    width: 90%;
    border-color: #000;
    border-style: solid;
    border-radius: 30px 0;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
   
   
  }

  img, svg {
    vertical-align: middle;
}
  
  .logo {
    width: 250px;
    margin-top: 10px;
    margin-left: -600px;
  }
  
  h1 {
    font-size: 30px;
    margin: 10px 0;
    font-family: "roboto-bold";
    color: #000;
  }
  
  
  .main-btn {
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(222,222,236,0.9444152661064426) 0%, rgba(0,0,0,1) 16%);
    border: solid;
    border-color: #ef6309;
    padding: 10px 20px;
    font-size: 36px;
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 20px;
    color: #fff;
    width: 500px;
    
  }

  
  .main-btn:hover {
    background: #000;
  }
  
  hr {
    border: 1px solid #000000;
    margin: 20px 0;
  }
  /*
  .options {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    margin-top: 20px;
  }
  
  .option-btn {
    background: rgb(60,50,50);
    background: linear-gradient(90deg, rgba(60,50,50,1) 0%, rgba(222,222,236,0.9444152661064426) 0%, rgba(42,39,39,1) 27%);
    color: #fff;
    border: solid;
    border-color:#ef6309;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    flex: 1 1 calc(33.333% - 20px); /* Para pantallas grandes 
    max-width: 200px;
    transition: background 0.3s;
   
  }
  
  .option-btn:hover {
    background: #000;
  }
 */
  /* Estilos responsivos para mobile */
  @media (max-width: 768px) {
    .main-btn{
        width: 300px;
        font-size: 16px;
    }
    
    .options {
      flex-direction: column; /* Los botones uno encima del otro */
      align-items: center;
      gap: 10px;
    }
    .option-btn {
      flex: none; /* Los botones ocupan todo el ancho en mobile */
      width: 80%;
      max-width: none;
      
    }
    .logo {
        width: 250px;
        margin: 10px auto;
      }
  }