/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Logo de fondo */
body::before {
  content: "";
  background: url(https://www.google.com/url?sa=i&url=https%3A%2F%2Fes.freelogodesign.org%2Flogo-ideas%2Fcitas-logo-design&psig=AOvVaw3u9En5CWoD9RCmuz5kj0Sc&ust=1749235061589000&source=images&cd=vfe&opi=89978449&ved=0CBUQjRxqFwoTCKi04oD32o0DFQAAAAAdAAAAABAE) no-repeat center center;
  background-size: 60%;
  opacity: 0.05;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  padding: 1rem;
  text-align: center;
  background-color: #ff6a6a;
  color: white;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero {
  text-align: center;
  padding: 2rem;
}

.hero h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.boton {
  background-color: #ff6a6a;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

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

footer {
  text-align: center;
  padding: 1rem;
  background-color: #f2f2f2;
  font-size: 0.9rem;
}

.registro {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.registro h2 {
  margin-bottom: 1rem;
  text-align: center;
}

.campo {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.campo label {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

.campo input,
.campo select {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.campo input[type="checkbox"] {
  margin-right: 0.5rem;
}

.campo button {
  margin-top: 1rem;
}

.match-container {
  max-width: 400px;
  margin: 2rem auto;
  text-align: center;
}

.perfil-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.perfil-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.botones {
  margin-top: 1rem;
}

.botones button {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  color: white;
  background-color: #ff6a6a;
  transition: background 0.3s ease;
}

.botones button:hover {
  background-color: #ff4c4c;
}

.match-message {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #6aff6a;
  transition: opacity 0.5s ease;
  opacity: 0;
}


