body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #98df8e;
     height: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    
}

header {
  background-color: #2e7d32;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  margin-bottom: 20px;
  user-select: none;

  display: flex;            /* flex para centrar contenido */
  justify-content: center;  /* centrar horizontal */
  align-items: center;      /* centrar vertical */
  padding: 10px 20px;       /* espacio interno */
  white-space: nowrap;      /* evitar saltos en header */
}

header h1 {
  font-family: 'Bebas Neue', cursive, sans-serif;
  font-size: 32px;
  margin: 0;
  white-space: nowrap;      /* evitar saltos */
}

header h1 a {
  text-decoration: none;
  color: inherit;
  white-space: nowrap;      /* evitar saltos */
  display: inline-block;
}

.porteria {
  position: relative;
  padding: 6px 14px;
  border: 3px solid white;
  border-radius: 8px 8px 0 0;
  background: transparent;
  color: white;
  display: inline-flex;     /* aquí sí flex para icono y texto */
  align-items: center;
  gap: 4px;
}

.red {
  font-size: 28px;
  animation: bounce 2s infinite;
  user-select: none;
}

.resto {
  color: white;
  font-weight: 700;
}

/* Animación pelota */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


main {
    flex: 1;

}
.privacy-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}

.privacy-container h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.privacy-container h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.privacy-container p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-container a {
    color: #2e7d32;
    text-decoration: underline;
}

.privacy-container a:hover {
    text-decoration: none;
}

footer {
  background-color: #2e7d32;
  color: white;
  padding: 30px 20px;
  text-align: center;
  
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
}

.footer-text p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px; /* Espacio entre texto y enlaces */
}

.footer-links a {
  color: white;
  margin: 0 15px;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.contact-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 130px;
}

.contact-container h2 {
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
}

.contact-container p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form textarea {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    margin-top: 20px;
    padding: 10px;
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #25662b;
}

