* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100vh;
}

.left {
  flex: 0.35;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 30px;
  gap: 35px;
  background-color: #0a0a0a;
  box-shadow: inset -4px 0 15px rgba(255, 0, 0, 0.15);
}

.right {
  flex: 0.85;
  background: url("pins e logos/inicioo.jpg") no-repeat center center;
  background-size: cover;
  filter: brightness(0.8);
}

.choices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
  max-width: 400px;
}

.choice {
  background: linear-gradient(145deg, #1c1c1c, #151515);
  padding: 25px 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
}

.choice:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.35);
}

.choice a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
  letter-spacing: 0.5px;
}

.choice p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #ccc;
}

.logo {
  width: 200px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 900px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .right {
    height: 35vh;
    order: -1;
    filter: brightness(0.7);
  }

  .left {
    flex: none;
    padding: 30px 20px;
    gap: 20px;
    text-align: center;
  }

  .choices {
    gap: 15px;
  }

  .choice {
    max-width: 90%;
    padding: 18px 25px;
  }

  .choice a {
    font-size: 1rem;
  }

  .logo {
    width: 140px;
  }
}

@media screen and (max-width: 480px) {
  .right {
    height: 25vh;
  }

  .choice {
    padding: 15px;
  }

  .choice a {
    font-size: 0.95rem;
  }

  .choice p {
    font-size: 0.85rem;
  }

  .logo {
    width: 110px;
  }
}
