/* ======================
   SISTEMA BASE AA
====================== */
:root{
  --aa-orange:#F26A1B;
  --aa-dark:#111;
  --aa-light:#F6F7F9;
  --aa-radius:14px;
  --aa-font-title:"Montserrat",sans-serif;
  --aa-font-body:"Roboto",sans-serif;
}

body { margin:0; padding:0; box-sizing:border-box; }
.aa-container{
  max-width:1200px;
  margin:0 auto;
  padding:40px 20px;
}

/* ======================
   HERO ANIMA
====================== */
.aa-hero{
  position:relative;
  width:100%;
  min-height:75vh;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
}
.aa-hero__bg{
  position:absolute;
  inset:0;
  background-image:url('/wp-content/uploads/2025/05/RecorridoVirtualInteractivo.webp');
  background-size:cover;
  background-position:center;
  opacity:.45;
}
.aa-hero__content{
  position:relative;
  z-index:3;
  max-width:800px;
  color:#fff;
  text-align:left;
}
.aa-hero__badge{
  background:var(--aa-orange);
  color:#111;
  font-family:var(--aa-font-title);
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
}
.aa-hero__title{
  font:800 42px/1.2 var(--aa-font-title);
  margin:18px 0;
}
.aa-hero__sub{
  font:400 18px/1.6 var(--aa-font-body);
  margin-bottom:20px;
  color:#eaeaea;
}

.btn{
  display:inline-block;
  padding:14px 20px;
  border-radius:var(--aa-radius);
  font:700 15px var(--aa-font-title);
  text-decoration:none;
}
.btn--primary{
  background:var(--aa-orange);
  color:#111;
}
.btn--ghost{
  border:1px solid #fff;
  color:#fff;
}
.aa-hero__ctas{ display:flex; gap:14px; flex-wrap:wrap; }

/* ======================
   TITULOS
====================== */
.aa-title-box{
  background:var(--aa-light);
  padding:18px 22px;
  border-left:6px solid var(--aa-orange);
  border-radius:var(--aa-radius);
  font:700 24px var(--aa-font-title);
}

/* ======================
   SERVICIOS
====================== */
.aa-servicios-grid{
  margin-top:30px;
  display:grid;
  gap:26px;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}

/* ======================
   PACKS
====================== */
.aa-packs-grid{
  display:grid;
  gap:26px;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  margin-top:30px;
}
.aa-pack{
  background:#fff;
  border:1px solid #e9ecf0;
  border-radius:var(--aa-radius);
  padding:20px;
}
.aa-pack--recommended{
  border:2px solid var(--aa-orange);
}

/* ======================
   CONTACTO
====================== */
.aa-contacto p{
  font:400 18px var(--aa-font-body);
  margin-bottom:20px;
}

/* ======================
   RESPONSIVE
====================== */
@media(max-width:600px){
  .aa-hero__title{ font-size:32px; }
  .aa-hero{ min-height:68vh; }
}
