@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,900;1,400;1,700&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --ivory: #f9f5ef;
  --ivory-dark: #f0e9de;
  --stone: #e2d5c3;
  --stone-dark: #c9b99f;
  --terra: #b85c38;
  --terra-lt: #d4795a;
  --terra-deep: #8c3f22;
  --sage: #7a8c6e;
  --sage-lt: #a3b596;
  --charcoal: #2c2418;
  --charcoal-mid: #4a3f30;
  --text-body: #5a4e3e;
  --text-light: #9a8c7a;
  --white: #ffffff;

  --ff-display: "Playfair Display", Georgia, serif;
  --ff-body: "Outfit", system-ui, sans-serif;

  --radius-sm: 3px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 12px rgba(44, 36, 24, 0.08);
  --shadow-md: 0 8px 40px rgba(44, 36, 24, 0.14);
  --shadow-lg: 0 24px 80px rgba(44, 36, 24, 0.2);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.38s var(--ease);
  --trans-slow: 0.65s var(--ease);

  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--ff-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
input,
select,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 500;
}
h4 {
  font-size: 1.15rem;
  font-weight: 500;
}
p {
  color: var(--text-body);
  line-height: 1.8;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--terra);
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}
@media (min-width: 1300px) {
  .container {
    padding: 0 3.5rem;
  }
}

section {
  padding: 6rem 0;
}
@media (min-width: 768px) {
  section {
    padding: 8rem 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-terra {
  background: var(--terra);
  color: var(--white);
  border: 2px solid var(--terra);
}
.btn-terra:hover {
  background: var(--terra-deep);
  border-color: var(--terra-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184, 92, 56, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.55);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-terra {
  background: transparent;
  color: var(--terra);
  border: 2px solid var(--terra);
}
.btn-outline-terra:hover {
  background: var(--terra);
  color: var(--white);
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition:
    background var(--transition),
    backdrop-filter var(--transition),
    box-shadow var(--transition);
}
.site-header.transparent {
  background: transparent;
}
.site-header.scrolled {
  background: rgba(249, 245, 239, 0.96);
  backdrop-filter: blur(12px);
  box-shadow:
    0 1px 0 var(--stone),
    0 4px 24px rgba(44, 36, 24, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  transition: color var(--transition);
}
.logo-tag {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.site-header.transparent .logo-name {
  color: var(--white);
}
.site-header.transparent .logo-tag {
  color: rgba(255, 255, 255, 0.6);
}
.site-header.scrolled .logo-name {
  color: var(--charcoal);
}
.site-header.scrolled .logo-tag {
  color: var(--terra);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terra);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.site-header.transparent .nav-link {
  color: rgba(255, 255, 255, 0.82);
}
.site-header.transparent .nav-link:hover,
.site-header.transparent .nav-link.active {
  color: var(--white);
}
.site-header.scrolled .nav-link {
  color: var(--text-body);
}
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--charcoal);
}

.header-cta {
  display: none;
}
@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
  }
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  transition: var(--transition);
  transform-origin: center;
}
.site-header.transparent .burger span {
  background: var(--white);
}
.site-header.scrolled .burger span {
  background: var(--charcoal);
}
.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--ivory);
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--transition),
    visibility var(--transition);
  z-index: 999;
  border-top: 1px solid var(--stone);
  box-shadow: var(--shadow-md);
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav .nav-link {
  font-size: 0.95rem;
  color: var(--charcoal);
}
.mobile-nav .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #4a3020 0%, #7a5030 30%, #3d2810 100%);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 14s var(--ease);
}
.hero-bg img.loaded {
  transform: scale(1);
}

.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 36, 24, 0.92) 0%,
    rgba(44, 36, 24, 0.4) 40%,
    rgba(44, 36, 24, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
  width: 100%;
}

.hero-content-inner {
  max-width: 680px;
}

.hero-content .eyebrow {
  color: var(--terra-lt);
}
.hero-content .eyebrow::before {
  background: var(--terra-lt);
}

.hero-title {
  color: var(--white);
  font-weight: 900;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.hero-title em {
  font-style: normal;
  color: var(--terra-lt);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-side {
  position: absolute;
  right: 2.5rem;
  bottom: 5rem;
  z-index: 2;
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
}
@media (min-width: 1200px) {
  .hero-side {
    display: flex;
  }
}

.hero-side-item {
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
}
.hero-side-item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--ff-display);
  letter-spacing: 0;
  text-transform: none;
}

.nosotros-section {
  background: var(--white);
  overflow: hidden;
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 1024px) {
  .nosotros-grid {
    grid-template-columns: 55% 45%;
  }
}

.nosotros-images {
  position: relative;
  min-height: 500px;
}
.nosotros-img-main {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}
.nosotros-img-float {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 200px;
  height: 260px;
  object-fit: cover;
  border: 6px solid var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 1023px) {
  .nosotros-img-float {
    display: none;
  }
}

.nosotros-body {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}
@media (min-width: 1024px) {
  .nosotros-body {
    padding: 5rem 4rem;
  }
}

.nosotros-body h2 {
  margin-bottom: 1.25rem;
}
.nosotros-body p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.nosotros-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}
.stat {
  text-align: center;
}
.stat-val {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.35rem;
}

.casino-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: rgba(184, 92, 56, 0.07);
  border-left: 3px solid var(--terra);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.82rem;
  color: var(--text-body);
  margin-top: 1.5rem;
}
.casino-note i {
  color: var(--terra);
}

.hab-section {
  background: var(--ivory-dark);
}

.hab-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: end;
}
@media (min-width: 768px) {
  .hab-intro {
    grid-template-columns: 1fr auto;
    gap: 3rem;
  }
}
.hab-intro p {
  max-width: 520px;
  font-size: 0.95rem;
}

.hab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--stone);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 768px) {
  .hab-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hab-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.hab-card-img {
  height: 280px;
  overflow: hidden;
}
.hab-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.hab-card:hover .hab-card-img img {
  transform: scale(1.07);
}

.hab-card-body {
  padding: 2rem;
}
.hab-card-type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.5rem;
}
.hab-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}
.hab-card p {
  font-size: 0.87rem;
  margin-bottom: 1.25rem;
}

.hab-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hab-feat {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}
.hab-feat i {
  color: var(--sage);
  font-size: 0.78rem;
}

.hab-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ivory-dark);
}
.hab-price {
  font-family: var(--ff-display);
}
.hab-price .amount {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--charcoal);
}
.hab-price .note {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.servicios-section {
  background: var(--charcoal);
  overflow: hidden;
}

.servicios-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .servicios-top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.servicios-top h2 {
  color: var(--white);
  max-width: 420px;
}
.servicios-top p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  max-width: 360px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 768px) {
  .servicios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .servicios-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.serv-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background var(--transition);
  cursor: default;
}
.serv-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.serv-ico {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.serv-ico i {
  color: var(--terra-lt);
  font-size: 1.25rem;
}
.serv-card:hover .serv-ico {
  border-color: var(--terra);
  background: rgba(184, 92, 56, 0.15);
}

.serv-card h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.serv-card p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.55;
}

.reserva-section {
  background: var(--ivory);
}

.reserva-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .reserva-wrap {
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
  }
}

.reserva-left h2 {
  margin-bottom: 1.25rem;
}
.reserva-left p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.reserva-meta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.reserva-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-body);
}
.reserva-meta-item i {
  color: var(--terra);
  width: 16px;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--stone);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 560px) {
  .form-row.col2 {
    grid-template-columns: 1fr 1fr;
  }
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.fg:last-child {
  margin-bottom: 0;
}

.fg label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.fg input,
.fg select,
.fg textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--stone);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--charcoal);
  background: var(--ivory);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--terra);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.1);
}
.fg input.err,
.fg select.err,
.fg textarea.err {
  border-color: #d9534f;
  box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.09);
}
.fg textarea {
  resize: vertical;
  min-height: 90px;
}

.ferr {
  font-size: 0.72rem;
  color: #d9534f;
  display: none;
}
.ferr.show {
  display: block;
}

.f-submit {
  margin-top: 1.5rem;
}
.f-submit .btn {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.success-msg {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(122, 140, 110, 0.08);
  border: 1px solid rgba(122, 140, 110, 0.25);
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}
.success-msg.show {
  display: block;
}
.success-msg i {
  font-size: 2.2rem;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.success-msg h4 {
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.success-msg p {
  font-size: 0.85rem;
}

.testi-section {
  background: var(--stone);
}

.testi-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .testi-header {
    grid-template-columns: 1fr auto;
  }
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testi-quote {
  font-family: var(--ff-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--stone);
  margin-bottom: 0.75rem;
  font-weight: 900;
}

.testi-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.testi-stars i {
  color: var(--terra);
  font-size: 0.85rem;
}

.testi-text {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--charcoal-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--terra);
}
.testi-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
}
.testi-city {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.site-footer {
  background: var(--charcoal);
  padding: 5rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  }
}

.footer-brand .logo-name {
  color: var(--white);
  font-size: 1.4rem;
}
.footer-brand .logo-tag {
  color: var(--terra);
}
.footer-tagline {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 260px;
}
.footer-awards {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.f-award {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.4);
}
.f-award i {
  color: var(--terra);
}

.footer-col h5 {
  font-family: var(--ff-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-lt);
  margin-bottom: 1.25rem;
}

.f-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.f-nav a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.f-nav a:hover {
  color: var(--white);
}

.f-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.f-contact-item i {
  color: var(--terra);
  width: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}
.f-contact-item span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-bottom p {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.28);
}

.inner-hero {
  height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-h);
}
.inner-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #4a3020 0%, #7a5030 50%, #3d2810 100%);
}
.inner-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-hero-veil {
  position: absolute;
  inset: 0;
  background: rgba(44, 36, 24, 0.6);
}
.inner-hero-content {
  position: relative;
  z-index: 2;
}
.inner-hero-content .eyebrow {
  color: var(--terra-lt);
}
.inner-hero-content .eyebrow::before {
  background: var(--terra-lt);
}
.inner-hero-content h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
}
.inner-hero-content p {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.5rem;
  max-width: 480px;
}

.legal-section {
  padding: 5rem 0 7rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .legal-layout {
    grid-template-columns: 230px 1fr;
  }
}

.legal-sidebar {
  position: static;
}
@media (min-width: 1024px) {
  .legal-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
  }
}
.sidebar-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.legal-menu {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.legal-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: var(--transition);
  line-height: 1.4;
}
.legal-menu a:hover,
.legal-menu a.active {
  color: var(--charcoal);
  background: var(--stone);
  border-left-color: var(--terra);
}

.legal-content h2 {
  font-size: 1.9rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--stone);
}
.legal-content section {
  padding: 0;
  margin-bottom: 3rem;
  scroll-margin-top: calc(var(--header-h) + 2rem);
}
.legal-content h3 {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.legal-content p {
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}
.legal-content ul {
  padding-left: 1.25rem;
  list-style: disc;
  margin-bottom: 0.85rem;
}
.legal-content ul li {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 0.3rem;
}
.last-update {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.73rem;
  color: var(--text-light);
  background: var(--stone);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.tariff-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.84rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tariff-table th {
  background: var(--charcoal);
  color: var(--white);
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
}
.tariff-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--stone);
  color: var(--text-body);
}
.tariff-table tr:nth-child(even) td {
  background: var(--ivory);
}
.tariff-table tr:last-child td {
  border-bottom: none;
}
.ok {
  color: #3a7d44;
  font-weight: 500;
}
.no {
  color: #c0392b;
  font-weight: 500;
}

.cancel-timeline {
  position: relative;
  padding-left: 2rem;
  margin: 1.5rem 0;
}
.cancel-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--terra), var(--stone));
}
.tl-item {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 0.75rem;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -2.35rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terra);
  border: 2px solid var(--ivory);
  box-shadow: 0 0 0 2px var(--terra);
}
.tl-item h4 {
  font-size: 0.92rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.tl-item p {
  font-size: 0.84rem;
}

.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1.3fr 1fr;
  }
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.c-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.c-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ivory-dark);
  border: 1px solid var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-ico i {
  color: var(--terra);
  font-size: 0.9rem;
}
.c-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.c-text span {
  font-size: 0.88rem;
  color: var(--charcoal);
}

.contact-cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .contact-cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-card {
  background: var(--white);
  border: 1.5px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.c-card:hover {
  border-color: var(--terra);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.c-card-ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(184, 92, 56, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
}
.c-card-ico i {
  color: var(--terra);
  font-size: 1.2rem;
}
.c-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.c-card p {
  font-size: 0.8rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--charcoal);
  border-top: 3px solid var(--terra);
  padding: 1.1rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}
.cookie-text a {
  color: var(--terra-lt);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.c-btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: var(--transition);
}
.c-btn-accept {
  background: var(--terra);
  color: var(--white);
  border: 2px solid var(--terra);
}
.c-btn-accept:hover {
  background: var(--terra-lt);
}
.c-btn-basic {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.c-btn-basic:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
.d5 {
  transition-delay: 0.5s;
}

.divider-terra {
  width: 40px;
  height: 3px;
  background: var(--terra);
  border-radius: 2px;
  margin: 1rem 0;
}
.divider-terra.center {
  margin: 1rem auto;
}

.highlight-box {
  background: rgba(184, 92, 56, 0.07);
  border-left: 4px solid var(--terra);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}
.highlight-box p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.noshow-box {
  background: rgba(192, 57, 43, 0.06);
  border: 1.5px solid rgba(192, 57, 43, 0.22);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}
.noshow-box p {
  margin-bottom: 0;
  font-size: 0.88rem;
}
.noshow-box strong {
  color: #c0392b;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0;
  counter-reset: ps;
}
.ps-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--ivory-dark);
  border-radius: var(--radius-md);
}
.ps-num {
  counter-increment: ps;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.78rem;
  margin-top: 1px;
}
.ps-num::before {
  content: counter(ps);
}
.ps-item p {
  margin-bottom: 0;
  font-size: 0.86rem;
}
.ps-item strong {
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.2rem;
}

.cta-box {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-top: 2rem;
}
.cta-box h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-box p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .nosotros-img-float {
    display: none;
  }
  .hab-grid {
    gap: 2px;
  }
}
