body {
    margin: 0;
    padding: 0;
    border: none;
    font-family: Arial, sans-serif;
    background-color: #f8dadc;
    height: 100vh;
  }
  
  .container {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  
  .logo {
    width: 200px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background: none;
  }
  
  .language-toggle {
    position: absolute;
    top: 80px; 
    left: 53.5%;
    width: 70px;
    height: 70px;
    background-color: #dc4e80;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    color: #470a71;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 20;
  }
  
  .language-toggle:hover {
    background-color: #dc4e80;
    transform: scale(1.1);
  }  
  
  .left {
    width: 55%;
    padding: 60px 40px;
    text-align: center;
    background: #f8dadc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .left h1 {
    color: #470a71;
    font-size: 4rem;
    margin-top: 50px;
    margin-bottom: 20px;
  }
  
  .left p {
    color: #470a71;
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .button {
    width: 60%;
    padding: 15px;
    margin: 10px auto;
    background: #dc4e80;
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    border-radius: 25px;
    font-size: 16px;
    transition: background 0.3s;
  }
  
  .button:hover {
    background: #9c27b0;
  }
  
  .social-links {
    margin-top: 30px;
    font-size: 14px;
    color: #470a71;
  }
  
  .social-links span {
    cursor: pointer;
    text-decoration: underline;
  }
  
  .right {
    width: 45%;
    background: url('img/Foto.png') center/cover no-repeat;
  }
  
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
  
    .left, .right {
      width: 100%;
      height: 50vh;
    }
  
    .logo {
      width: 80px;
      top: 10px;
      left: 10px;
    }
  
    .language-toggle {
      top: 20px;
      left: unset;
      right: 20px;
      transform: none;
    }
  }
  