/* NAV */
.nav{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f0f0f0;
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  width: min(1120px, 92%);
  margin: 0 auto;
}
.brand{
  font-weight:800;
  letter-spacing:-.5px;
  font-size: 20px;
  display:inline-flex;
  align-items:center;
}
.brand__room, .t-room{ color: var(--rf); }
.brand__mate, .brand__finder{ color: var(--black); }
.brand__logo{
  height: 36px;
  width:auto;
  display:block;
}

.nav__links{
  display:flex;
  gap:16px;
  align-items:center;
  font-weight:600;
  font-size:14px;
}

.nav__burger{
  display:none;
  background:none; border:0; padding:6px; cursor:pointer;
}
.nav__burger span{
  display:block; width:22px; height:2px; background:var(--black); margin:5px 0;
}

.nav__mobile{
  display:none;
  flex-direction:column;
  gap:10px;
  padding: 10px 4%;
  border-top:1px solid #efefef;
}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  background: radial-gradient(1200px 500px at 10% -10%, rgba(0,196,204,.18), transparent),
              linear-gradient(#e9fbfc, #fff);
  padding: 72px 0 30px;
}

.hero__bg-waves{
  position:absolute; inset:-20% -10% auto -10%;
  height: 420px;
  background:
    radial-gradient(400px 180px at 20% 30%, rgba(0,196,204,.22), transparent 70%),
    radial-gradient(500px 220px at 70% 10%, rgba(0,196,204,.18), transparent 70%);
  filter: blur(40px);
  pointer-events:none;
}

.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items:center;
}

.hero__title{
  font-size: clamp(38px, 6vw, 64px);
  line-height: .95;
  margin:0 0 8px 0;
  font-weight: 800;
}
.t-mate{ color: var(--black); }
.t-finder{ color: var(--black); }

.hero__tagline{
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight:700;
  margin:10px 0 6px;
}
.hero__subtitle{
  color:#444;
  font-size: 15.5px;
  line-height:1.5;
  max-width: 520px;
}

.hero__cta{
  margin-top: 18px;
  display:flex; gap:10px; flex-wrap:wrap;
}

.hero__stats{
  margin-top: 18px;
  display:flex; gap:12px; flex-wrap:wrap;
}
.stat{
  background: rgba(255,255,255,.8);
  border:1px solid #f0f0f0;
  padding:10px 12px;
  border-radius: 12px;
}
.stat__num{ font-weight:800; font-size:14px; }
.stat__label{ font-size:12px; color:#666; }

.hero__mock{
  position:relative;
  display:flex; justify-content:center;
}
.mock{
  width:min(360px, 90%);
  border-radius: 34px;
  background:#fff;
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
  padding: 10px;
  transform: translateY(0);
}
.mock img{
  width:100%;
  display:block;
  border-radius: 28px;
}
.mock__glow{
  position:absolute; width:420px; height:420px;
  background: radial-gradient(circle, rgba(0,196,204,.35), transparent 60%);
  filter: blur(50px);
  z-index:-1;
}

/* HOW */
.how{ padding: 56px 0; }
.how__cards{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(3,1fr);
}
.card{
  background:#fff;
  border:1px solid #f1f1f1;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,.04);
  transition: transform .2s ease, box-shadow .2s ease, border .2s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(0,196,204,.35);
}
.card__icon{ font-size:22px; }
.card h3{ margin:10px 0 6px; font-size:18px; }
.card p{ margin:0; color:#5c5c5c; font-size:14px; line-height:1.5; }

/* SPLIT SECTIONS */
.split{ padding: 64px 0; }
.split--light{ background: var(--bg); }
.split--tint{ background: linear-gradient(#f3feff, #fff); }

.split__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items:center;
}
.split__text h2{
  font-size: clamp(22px, 4vw, 30px);
  margin: 0 0 8px;
}
.split__text p{ color:#4a4a4a; line-height:1.6; }

.checks{
  list-style:none; padding:0; margin:14px 0 18px;
  display:grid; gap:8px;
}
.checks li{
  padding-left: 26px; position:relative;
  font-weight:600; font-size:14.5px;
}
.checks li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  color:var(--rf); font-weight:900;
}

.split__visual{
  min-height: 240px;
  display:grid;
  place-items:center;
  position:relative;
}
.pill{
  position:absolute;
  background:#fff; border:1px solid #eef5f5;
  padding:10px 14px; border-radius:999px;
  font-weight:700; font-size:13px;
  box-shadow: 0 10px 20px rgba(0,0,0,.06);
  animation: floaty 5s ease-in-out infinite;
}
.pill:nth-child(1){ transform: translate(-90px,-20px); }
.pill:nth-child(2){ transform: translate(40px,-60px); animation-delay:1s; }
.pill:nth-child(3){ transform: translate(0,60px); animation-delay:2s; }

@keyframes floaty{
  0%,100%{ translate:0 0; }
  50%{ translate:0 -10px; }
}

/* propietarios mock */
.room-cards{
  display:grid; gap:10px; width:min(360px,100%);
}
.room-card{
  background:#fff;
  border:1px solid #eef5f5;
  padding:12px 14px;
  border-radius: 14px;
  font-weight:700; font-size:14px;
  box-shadow: 0 8px 18px rgba(0,0,0,.05);
}

/* CTA */
.cta{ padding: 70px 0; background: #0bb8bf; }
.cta__box{
  background: rgba(0,0,0,.06);
  border:1px solid rgba(255,255,255,.25);
  padding: 30px;
  border-radius: 24px;
  text-align:center;
  color:#fff;
  backdrop-filter: blur(6px);
}
.cta__box h2{ margin:0 0 8px; font-size: clamp(22px, 4vw, 32px); }
.cta__box p{ margin:0 0 16px; opacity:.95; }

.cta__actions{ display:flex; justify-content:center; gap:10px; flex-wrap:wrap; }

/* FOOTER */
.footer{
  background:#0f0f0f; color:#fff; padding: 30px 0 12px;
}
.footer__grid{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:16px;
}
.brand--footer{ font-size:18px; }
.footer .brand__room,
.footer .brand__mate,
.footer .brand__finder{ color:#00c4cc; }
.footer__text{ color:#d7d7d7; font-size:14px; margin-top:6px; }
.footer__links{ display:grid; gap:8px; font-size:14px; color:#e9e9e9; }

.footer__bottom{
  text-align:center; margin-top: 16px; font-size:12px; color:#bdbdbd;
  border-top:1px solid rgba(255,255,255,.08); padding-top:10px;
}

/* RESPONSIVE */
@media (max-width: 920px){
  .hero__grid, .split__grid{ grid-template-columns: 1fr; }
  .how__cards{ grid-template-columns: 1fr; }
  .nav__links{ display:none; }
  .nav__burger{ display:block; }
  .nav__mobile.is-open{ display:flex; }
}
/* ===== FOOTER PROFESIONAL ===== */

.footer {
  background: #0f0f0f;
  color: #fff;
  padding: 40px 0 15px;
}

.footer__grid--legal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__brand-block {
  max-width: 260px;
}

.footer__links--legal {
  display: flex;
  flex-direction: row;
  gap: 14px;
  font-size: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.footer__links--legal a {
  color: #e5e5e5;
  transition: color .2s ease;
}

.footer__links--legal a:hover {
  color: var(--rf);
}

.footer__bottom {
  text-align: center;
  color: #bdbdbd;
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 25px;
  padding-top: 12px;
}

/* Responsivo */
@media (max-width: 780px) {
  .footer__grid--legal {
    flex-direction: column;
    gap: 20px;
  }
  .footer__links--legal {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
/* ===== COOKIES BANNER ===== */

.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.25);
}

.cookies-banner p {
  margin: 0;
  font-size: 14px;
}
.cookies-actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.cookies-banner a {
  color: var(--rf);
  text-decoration: underline;
}

.cookies-banner .btn {
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
}
.cookies-banner .btn--reject{
  background: transparent;
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.cookies-banner .btn--reject:hover{
  border-color: #fff;
  box-shadow: none;
}

@media(max-width: 700px) {
  .cookies-banner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .cookies-actions{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
  }
}
