body {
  box-sizing: border-box;
  margin: 0;
  padding: 0; 
  --background-color: #F4F7F6;
  --color-textos-grandes: #1ab359;
  --color-textos-pequeños: #2C3E50;
  --hovers: #34495E;
  --fuente-grande: 'Montserrat';
  --fuente-pequeña: 'Open Sans', sans-serif;
  background-color: var(--background-color);
}

/* ------------- SECCIÓN IDENTIDAD ---- */
.site-identity {
  text-align: center;
  padding: 12px 10px;
  padding-bottom: 5px !important;
  background: var(--background-color);
}


.site-identity img {
  max-width: 250px;
  width: 100%;
  height: 60px;
}
/* ------------- SECCIÓN IDENTIDAD END ---- */

/* --------------REGISTRO EN EL SITIO------------------- */
.auth-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 0px 20px;
  background-color: #f5f7fa;
}

.auth-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  max-width: 400px;
  text-align: center;
  /* Aseguramos que en mobile ocupe casi todo el ancho y en PC sea elegante */
  width: 100%;
  max-width: 420px;
  animation: fadeIn 0.5s ease; /* Un toquecito de elegancia */
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
}

.btn-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

/* Colores de Marca */
.btn-google:hover { background: #f8f8f8; border-color: #4285F4; }
.btn-facebook { background: #1877F2; color: white; border: none; }
.btn-facebook:hover { background: #1565C0; }
.btn-apple { background: #777; color: #fff; border: none; }
.btn-apple:hover { background: #555; }

.btn-auth img { width: 20px; height: 20px; }

.divider {
  margin: 20px 0;
  border-bottom: 1px solid #eee;
  position: relative;
}
.divider span {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 0 10px;
  color: #999;
  font-size: 0.8rem;
}

.btn-email-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: none;
  border: 1px dashed #ccc;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  color: #666;
}

.hidden { display: none; }

.email-form {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-form input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.email-form input:focus {
  outline: none;
  border-color: #2ECC71;
  box-shadow: 0 0 5px rgba(46, 204, 113, 0.2);
}

.terms-checkbox-container {
  text-align: left;
}

.terms-checkbox-container input {
  transform: scale(1.3);
}

.btn-submit-auth {
  background-color: #2ECC71;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.forgot-pass {
  font-size: 0.75rem;
  color: #666;
  text-align: right;
  text-decoration: none;
  margin-bottom: 5px;
}

.forgot-pass:hover { text-decoration: underline; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- AJUSTE DESKTOP --- */
@media (min-width: 1024px) {
  .auth-screen {
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  }
}

/* ----------------REGISTRO EN EL SITIO END---------------- */

/* ------------FOOTER-------------------------------- */

.footer-universal {
  background-color: #2c3e50; /* Color oscuro profesional */
  color: #ecf0f1;
  padding: 50px 20px 20px;
  font-family: 'Inter', sans-serif;
  margin-top: 50px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  /* En móvil una columna, en tablet 2, en PC 4 */
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-section h4 {
  color: #2ECC71; /* Tu verde */
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section a:hover {
  color: white;
  padding-left: 5px; /* Pequeño efecto de movimiento */
}


/* Barra inferior */
.footer-bottom {
  border-top: 1px solid #3e4f5f;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #95a5a6;
  position: relative;
}

.btn-top {
  position: absolute;
  right: 0;
  top: 15px;
  background-color: #34495e;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.btn-top:hover {
  background-color: #2ECC71;
}

.social-link img {
  width: 40px;
  height: 40px;
}

/* ------------FOOTER END---------------------- */


.oculto {
    display: none !important;
}