:root{
  --navy:#071321;
  --navy2:#0f1f32;
  --gold:#d2a24c;
  --cream:#f8f6f1;
  --white:#ffffff;
  --muted:#cbd0d6;
  --border:rgba(255,255,255,.12);
  --shadow:0 30px 80px rgba(0,0,0,.28);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  background:var(--navy);
  color:var(--cream);
  line-height:1.65;
}

a{
  color:var(--gold);
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
  height:auto;
}

.container{
  width:min(1180px,92%);
  margin:auto;
}

.topbar{
  background:#050b13;
  color:var(--muted);
  font-size:.88rem;
  padding:8px 0;
  border-bottom:1px solid var(--border);
}

.header{
  background:rgba(7,19,33,.92);
  backdrop-filter:blur(16px);
  position:sticky;
  top:0;
  z-index:30;
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px 0;
}

.logo img{
  height:46px;
  width:auto;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav a{
  color:var(--cream);
  font-weight:700;
  font-size:.94rem;
}

.nav a:hover{
  color:var(--gold);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:14px 24px;
  font-weight:800;
  border:1px solid transparent;
  letter-spacing:.02em;
  transition:all .3s ease;
}

.btn-primary{
  background:var(--gold);
  color:#fff;
}

.btn-primary:hover{
  background:#be8e3b;
  transform:translateY(-2px);
}

.btn-outline{
  border-color:var(--gold);
  color:var(--cream);
  background:rgba(255,255,255,.03);
}

.btn-outline:hover{
  background:rgba(255,255,255,.08);
}

.hero{
  min-height:88vh;
  background:
  linear-gradient(
    90deg,
    rgba(5,12,22,.94) 0%,
    rgba(5,12,22,.70) 44%,
    rgba(5,12,22,.08) 100%
  ),
  url('../img/hero-mira-hoteles.webp') center/cover;
  display:flex;
  align-items:center;
}

.hero h1,
.page-hero h1{
  font-family:Georgia,'Times New Roman',serif;
  font-size:clamp(2.8rem,6vw,6rem);
  line-height:1.02;
  margin:18px 0 24px;
  color:var(--cream);
  font-weight:500;
}

.hero h1 span{
  color:var(--gold);
}

.hero p,
.lead{
  font-size:1.18rem;
  color:var(--muted);
  max-width:820px;
}

.eyebrow{
  display:inline-block;
  color:var(--gold);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.78rem;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.hero-kpis{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:56px;
  max-width:920px;
}

.kpi{
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(12px);
  border-radius:24px;
  padding:22px;
}

.kpi strong{
  display:block;
  color:var(--cream);
  font-size:1.05rem;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.kpi span{
  color:var(--muted);
}

.section{
  padding:86px 0;
}

.section-alt{
  background:#0a1727;
}

.section-light{
  background:var(--cream);
  color:#172030;
}

.section h2{
  font-family:Georgia,'Times New Roman',serif;
  font-size:clamp(2rem,4vw,4rem);
  line-height:1.08;
  margin:10px 0 20px;
  color:var(--cream);
  font-weight:500;
}

.section-light h2{
  color:#071321;
}

.section-light h3{
  color:#071321;
}

.section-light .lead{
  color:#3b4450;
}

.section-light p{
  color:#1f2937;
}

.grid{
  display:grid;
  gap:26px;
}

.grid-2{
  grid-template-columns:repeat(2,1fr);
}

.grid-3{
  grid-template-columns:repeat(3,1fr);
}

.card{
  background:rgba(255,255,255,.045);
  border:1px solid var(--border);
  border-radius:28px;
  padding:30px;
  box-shadow:var(--shadow);
  transition:all .35s ease;
}

.card:hover{
  transform:translateY(-6px);
}

.card h3{
  color:var(--cream);
  font-size:1.28rem;
  margin:0 0 12px;
}

.card p{
  color:var(--muted);
}

.card img{
  border-radius:22px;
  margin-bottom:20px;
  border:1px solid var(--border);
}

.section-light .card{
  background:#fff;
  border:1px solid #e4d9c7;
  box-shadow:0 22px 50px rgba(7,19,33,.09);
}

.section-light .card h3{
  color:#071321;
}

.section-light .card p{
  color:#4a5360;
}

.page-hero{
  background:linear-gradient(
    135deg,
    #071321 0%,
    #0f1f32 100%
  );
  padding:82px 0 68px;
  border-bottom:1px solid var(--border);
}

.breadcrumb{
  font-size:.9rem;
  color:#9ba6b5;
  margin-bottom:14px;
}

.list-check{
  list-style:none;
  margin:0;
  padding:0;
}

.list-check li{
  position:relative;
  padding-left:30px;
  margin:10px 0;
  color:inherit;
}

.list-check li:before{
  content:'✓';
  position:absolute;
  left:0;
  color:var(--gold);
  font-weight:900;
}

.form{
  display:grid;
  gap:14px;
}

input,
textarea{
  width:100%;
  padding:15px 16px;
  border-radius:14px;
  border:1px solid rgba(7,19,33,.18);
  font:inherit;
  background:#fff;
  color:#111;
}

textarea{
  min-height:150px;
}

.footer{
  background:#050b13;
  color:var(--muted);
  padding:58px 0 28px;
  border-top:1px solid var(--border);
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:30px;
}

.footer h3{
  color:var(--cream);
}

.footer a{
  display:block;
  color:var(--muted);
  margin:7px 0;
}

.footer a:hover{
  color:var(--gold);
}

.legal{
  border-top:1px solid var(--border);
  margin-top:34px;
  padding-top:22px;
  font-size:.9rem;
  color:#8f98a5;
}

.article{
  background:#fff;
  color:#172030;
  border-radius:28px;
  padding:42px;
  border:1px solid #e4d9c7;
}

.article h2{
  color:#071321;
}

@media(max-width:900px){

  .nav{
    display:none;
  }

  .grid-2,
  .grid-3,
  .hero-kpis,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:auto;
    padding:84px 0;
  }

  .section{
    padding:56px 0;
  }

  .logo img{
    height:38px;
  }

}

.cookie-banner{
    position:fixed;
    bottom:20px;
    left:20px;
    right:20px;
    max-width:900px;
    margin:auto;
    z-index:9999;

    background:#071321;
    color:#f8f6f1;

    border:1px solid rgba(255,255,255,.12);

    border-radius:24px;

    box-shadow:0 20px 60px rgba(0,0,0,.4);

    padding:30px;
}

.cookie-banner.hidden{
    display:none;
}

.cookie-content h3{
    margin-top:0;
    color:#d2a24c;
}

.cookie-content p{
    color:#cbd0d6;
    margin-bottom:20px;
}

.cookie-links{
    margin-bottom:20px;
}

.cookie-links a{
    color:#d2a24c;
    margin-right:20px;
    font-weight:600;
}

.cookie-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.btn-cookie{
    border:none;
    border-radius:999px;
    padding:12px 24px;
    font-weight:700;
    cursor:pointer;
}

.btn-accept{
    background:#d2a24c;
    color:#fff;
}

.btn-reject{
    background:#263446;
    color:#fff;
}

.btn-config{
    background:#102238;
    color:#fff;
    border:1px solid #d2a24c;
}

@media(max-width:768px){

    .cookie-banner{
        left:10px;
        right:10px;
        bottom:10px;
        padding:20px;
    }

    .cookie-buttons{
        flex-direction:column;
    }

}