@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "lato", sans-serif; }

  
  body {
    background: linear-gradient(to right, #0c0242, #190058);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 100px;
    flex-grow: 1;
  }
  
  .left {
    max-width: 50%;
  }
  
  .logo {
    width: 80px;
    margin-bottom: 20px;
  }
  
  .left h1 {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  
  .left h1 span {
    font-weight: bold;
  }
  
  .left h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .botones {
    display: flex;
    gap: 20px;
  }
  
  .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #e22525;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
  }
  
  .btn img {
    width: 24px;
    height: 24px;
  }
  
  .right .illustration {
    max-width: 450px;
    width: 100%;
    transform: translateX(-40px) translateY(50px); 
  }
  

  footer.pie {
    text-align: center;
    padding: 20px;
    font-size: 14px;
  }

  @media (max-width: 768px) {
    main.container {
      flex-direction: column;
      text-align: center;
      padding: 40px 20px;
    }
  
    .left h1 {
      font-size: 30px;
    }
  
    .left h1 span {
      font-size: 24px;
    }
  
    .left h2 {
      font-size: 16px;
    }
  
    .botones {
      justify-content: center;
    }
  
    .right .illustration {
      transform: none;
      max-width: 80%;
      margin-top: 20px;
    }
  }
  
  /* 🔽 Extra pequeño: pantallas menores a 480px (celulares muy chicos) */
  @media (max-width: 480px) {
    .left h1 {
      font-size: 24px;
    }
  
    .btn {
      font-size: 14px;
      padding: 10px 16px;
    }
  
    .btn img {
      width: 20px;
      height: 20px;
    }
  }
  







