/* landing.css – Exclusivas.cl (+18) */

body {
        margin: 0;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        background: linear-gradient(135deg, #1b3f8a 0%, #2a5bbf 50%, #00d2ff 100%);
        font-family: 'Montserrat', sans-serif;
        color: #ffffff;
        overflow-x: hidden;
}

.landing-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 28px 18px 30px;
  width: 100%;
  box-sizing: border-box;
  max-width: 100vw;
  overflow-x: hidden;
}

@keyframes haloPulse {
  0%, 100% {
    background-position: center;
    background-color: #1a0d24;
  }
  50% {
    background-position: center;
    background-color: #281434;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.landing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 14px 30px;
}

.glass-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  padding: 22px 22px;
  border-radius: 20px;
  max-width: 500px;
}

.landing-logo {
  display: block;
  width: 144px;
  height: auto;
  margin-bottom: 2.5px;
  filter: drop-shadow(0 4px 10px rgba(212,175,55,0.4));
}

h1 {
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 8px 0;
}

.subtext {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 25px;
}

.checkbox-label {
  font-size: 14px;
  color: #f8f8f8;
}

.checkbox-label input[type="checkbox"] {
  accent-color: #D4AF37;
  transform: scale(1.2);
  margin-right: 8px;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.btn-enter, .btn-exit {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.btn-enter {
  background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
  color: #1a0d24;
  box-shadow: 0 0 15px rgba(212,175,55,0.4);
}

.btn-enter:hover {
  box-shadow: 0 0 25px rgba(212,175,55,0.6);
  transform: translateY(-2px);
}

.btn-exit {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

.btn-exit:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

.legal-text {
  margin-top: 40px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #ffffff;
}

/* === Ajuste visual de margen superior === */
@media (min-height: 700px) {
  .landing-container {
    padding-top: 40px;
  }
}

/* === Contenedor del logo centrado y con reflejo === */
.logo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.logo-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(212, 175, 55, 0.5) 100%
  );
  transform: skewX(-20deg);
  opacity: 0.9;
  animation: shineSweep 2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.4s 1 forwards;
  pointer-events: none;
}

@keyframes shineSweep {
  0% {
    left: -100%;
    opacity: 0.5;
  }
  60% {
    left: 17.8%;
    opacity: 1;
  }
  100% {
    left: 17.8%;
    opacity: 0.25;
  }
}

.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(35, 20, 60, 0.95);
  color: #fff;
  text-align: center;
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.5;
  box-sizing: border-box;
  z-index: 9999;
  animation: fadeIn 0.6s ease;
}

.cookies-banner p {
  max-width: 720px;
  margin: 0 auto 10px;
  padding: 0 10px;
}

.cookies-banner a {
  color: #d7b45f;
  text-decoration: underline;
}

.cookies-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-aceptar {
  background: linear-gradient(135deg, #d4af37 0%, #b88a1c 100%);
  border: none;
  padding: 9px 26px;
  border-radius: 25px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(212,175,55,0.35);
  transition: all 0.25s ease;
}

.btn-aceptar:hover {
  box-shadow: 0 0 18px rgba(212,175,55,0.5);
  transform: translateY(-1px);
}

.btn-rechazar {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.85);
  color: #fff;
  padding: 9px 26px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-rechazar:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .cookies-banner {
    font-size: 13px;
    padding: 16px 18px;
  }
  .cookies-actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .btn-aceptar, .btn-rechazar {
    width: auto;
    min-width: 130px;
    padding: 9px 22px;
  }
}

.h1-escorts-link {
  background: linear-gradient(90deg, #f3dbc3 0%, #dca574 50%, #f3dbc3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  text-decoration-color: #dca574;
  text-decoration-thickness: 2px;
}

.h1-escorts-link:hover {
  text-decoration-color: #d4a373;
}

