:root {
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Prata", Georgia, serif;
  --tracking-soft: 0.02em;
  --tracking-ui: 0.08em;
  --section-accent: rgba(255, 255, 255, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background: #111;
  color: #fff;
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

section {
  position: relative;
  isolation: isolate;
  padding: 90px 24px;
  background: #111;
}

section + section {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  position: relative;
  margin-bottom: 18px;
  padding-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 3vw, 3.35rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.012em;
}

.section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  height: 1px;
  background: linear-gradient(90deg, var(--section-accent), transparent);
}

.section-text {
  max-width: 900px;
  font-size: 1.02rem;
  letter-spacing: var(--tracking-soft);
  color: rgba(255, 255, 255, 0.82);
}

.container > .section-title + .section-text {
  max-width: 52rem;
  margin-left: 4px;
  padding-left: 18px;
  border-left: 1px solid var(--section-accent);
}

.section-text + .section-text {
  margin-top: 18px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: var(--tracking-ui);
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
}

.btn-primary {
  background: #fff;
  color: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  transform: translateY(-3px);
  opacity: 0.95;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline {
  margin-top: 12px;
  padding: 9px 17px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

header.scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6px 28px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: auto;
  height: 42px;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: var(--tracking-ui);
  text-transform: uppercase;
}

nav > ul > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
  opacity: 0.92;
  transition: color 0.28s ease, opacity 0.28s ease;
}

nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
  transition: width 0.28s ease;
}

nav > ul > li > a:hover,
nav > ul > li > a:focus-visible,
nav > ul > li > a.active {
  opacity: 1;
}

nav > ul > li > a:hover::after,
nav > ul > li > a:focus-visible::after,
nav > ul > li > a.active::after {
  width: 100%;
}

nav > ul > li > a:focus-visible {
  outline: none;
}

.menu-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.menu-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 6px;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.55)
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
  text-align: center;
}

.hero-text {
  width: min(900px, 100%);
  padding: clamp(28px, 4vw, 42px) clamp(24px, 4.5vw, 48px);
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-logo {
  width: min(520px, 90vw);
  margin: 0 auto 10px;
}

.hero-logo img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.hero-text p {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.92);
}

.hero-logo,
.hero-text p,
.hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.hero-text p {
  animation-delay: 0.25s;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation-delay: 0.45s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.seo-hidden-h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

#nosotros {
  --section-accent: rgba(188, 149, 108, 0.62);
  background:
    radial-gradient(circle at top left, rgba(113, 79, 52, 0.18), transparent 38%),
    linear-gradient(180deg, #15110f 0%, #111111 100%);
}

#nosotros .about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  margin-top: 34px;
  align-items: start;
}

#nosotros .about-copy .section-text {
  max-width: none;
}

#nosotros .about-copy .section-text:first-of-type {
  font-size: 1.09rem;
  color: rgba(255, 255, 255, 0.9);
}

#nosotros .about-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

#nosotros .about-award-link {
  display: block;
  width: 80%;
  margin: 0 auto;
  transition: transform 0.28s ease, filter 0.28s ease, opacity 0.28s ease;
}

#nosotros .about-award-link:hover,
#nosotros .about-award-link:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

#nosotros .about-award-link:focus-visible {
  outline: none;
}

#nosotros .about-award-link img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.casas-section {
  --section-accent: rgba(173, 194, 214, 0.6);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0b0d10 0%, #08090b 100%);
}

.casas-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casas-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(5, 9, 13, 0.54),
    rgba(0, 0, 0, 0.44) 28%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
  align-items: start;
}

#casas .grid-2 {
  align-items: stretch;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(20, 20, 20, 0.72);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.card h3 {
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
}

.card-image-bg {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 100%;
  min-height: 520px;
  padding: 24px 22px 22px;
  background: transparent;
  isolation: isolate;
}

.card-image-bg::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: 0;
  background-image: var(--bg-image);
  background-position: var(--bg-position, center);
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(2.5px);
  transform: scale(1.02);
}

.card-image-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.96),
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.38)
  );
}

.card-image-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding-bottom: 110px;
}

#casas .card-image-bg h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 2.3vw, 2.65rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.008em;
}

.unit-description {
  max-width: 92%;
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: var(--tracking-soft);
  color: rgba(255, 255, 255, 0.84);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
  margin-top: 6px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.32;
  color: rgba(255, 255, 255, 0.94);
}

.feature-item::before {
  content: "";
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.95;
}

.feature-item span {
  display: block;
}

#casas .card-image-bg .btn-outline {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  margin: 0;
  padding: 12px 24px;
  border-color: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.96rem;
}

#casas .card-image-bg .btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

#casas .includes-inline {
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.includes-inline-header {
  max-width: 860px;
  margin-bottom: 26px;
}

.includes-inline-header h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.98;
}

.includes-inline-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.include-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(20, 20, 20, 0.65);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.include-image {
  width: 100%;
  height: 110px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: #1a1a1a;
}

.include-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.kayaks-image img {
  object-position: center 32%;
}

.include-content h4 {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 0.98;
}

.include-content p {
  font-size: 0.94rem;
  letter-spacing: var(--tracking-soft);
  color: rgba(255, 255, 255, 0.82);
}

#actividades {
  --section-accent: rgba(87, 176, 190, 0.62);
  background:
    radial-gradient(circle at 12% 8%, rgba(40, 112, 131, 0.24), transparent 36%),
    linear-gradient(180deg, #111111 0%, #151a1b 100%);
}

#actividades .section-text {
  max-width: 760px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.mini-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background-color: #0f1315;
  background-clip: padding-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.86),
    rgba(0, 0, 0, 0.46),
    rgba(0, 0, 0, 0.18)
  );
}

#actividades .mini-card::after {
  content: none;
}

#actividades .mini-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.28);
}

.mini-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 26px;
}

.mini-card h4 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.mini-card p {
  max-width: 28ch;
  font-size: 0.96rem;
  letter-spacing: var(--tracking-soft);
  color: rgba(255, 255, 255, 0.88);
}

.gallery-video-section {
  --section-accent: rgba(197, 176, 136, 0.58);
}

#galeria {
  --section-accent: rgba(210, 203, 188, 0.52);
  background:
    linear-gradient(180deg, #151515 0%, #101010 100%);
}

#galeria-uno-dormitorio {
  --section-accent: rgba(199, 171, 122, 0.62);
}

#galeria-dos-dormitorios {
  --section-accent: rgba(143, 171, 191, 0.62);
}

.gallery-video-section,
.reviews-section {
  position: relative;
  overflow: hidden;
}

.gallery-bg-video,
.reviews-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-video-section::after,
.reviews-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}

.gallery-video-section .container > .section-title,
.gallery-video-section .container > .section-text {
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.gallery-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

#galeria .gallery-grid,
#galeria-uno-dormitorio .gallery-grid,
#galeria-dos-dormitorios .gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: #1a1a1a;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.42),
    rgba(0, 0, 0, 0.08) 45%,
    rgba(0, 0, 0, 0)
  );
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

#galeria .gallery-item:nth-child(1),
#galeria-uno-dormitorio .gallery-item:nth-child(1),
#galeria-dos-dormitorios .gallery-item:nth-child(1) {
  grid-column: span 5;
  height: 320px;
}

#galeria .gallery-item:nth-child(2),
#galeria-uno-dormitorio .gallery-item:nth-child(2),
#galeria-dos-dormitorios .gallery-item:nth-child(2) {
  grid-column: span 3;
  height: 320px;
}

#galeria .gallery-item:nth-child(3),
#galeria-uno-dormitorio .gallery-item:nth-child(3),
#galeria-dos-dormitorios .gallery-item:nth-child(3) {
  grid-column: span 4;
  height: 320px;
}

#galeria .gallery-item:nth-child(4),
#galeria-uno-dormitorio .gallery-item:nth-child(4),
#galeria-dos-dormitorios .gallery-item:nth-child(4) {
  grid-column: span 4;
  height: 240px;
}

#galeria .gallery-item:nth-child(5),
#galeria-uno-dormitorio .gallery-item:nth-child(5),
#galeria-dos-dormitorios .gallery-item:nth-child(5) {
  grid-column: span 4;
  height: 240px;
}

#galeria .gallery-item:nth-child(6),
#galeria-uno-dormitorio .gallery-item:nth-child(6),
#galeria-dos-dormitorios .gallery-item:nth-child(6) {
  grid-column: span 4;
  height: 240px;
}

.gallery-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  font-size: 0.9rem;
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.gallery-label:empty {
  display: none;
}

#casas > .container > .reviews-pills,
.reviews-eyebrow,
.reviews-pills,
.reviews-note,
.reviews-widget-head {
  display: none;
}

.reviews-widget-wrap {
  position: relative;
  z-index: 2;
  margin-top: 42px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.52), rgba(10, 10, 10, 0.34));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


#resenas {
  --section-accent: rgba(133, 169, 196, 0.6);
  background:
    radial-gradient(circle at top center, rgba(61, 97, 121, 0.18), transparent 36%),
    linear-gradient(180deg, #101214 0%, #0c0d0f 100%);
}

#resenas .container > .section-title,
#resenas .container > .section-text,
#resenas .reviews-intro > .section-title,
#resenas .reviews-intro > .section-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#resenas .container > .section-title::before,
#resenas .reviews-intro > .section-title::before {
  left: 50%;
  background: linear-gradient(90deg, transparent, var(--section-accent), transparent);
  transform: translateX(-50%);
}

#resenas .container > .section-title + .section-text,
#resenas .reviews-intro > .section-title + .section-text {
  max-width: 44rem;
  padding-left: 0;
  border-left: 0;
}

.pre-contact-cta {
  padding-top: 26px;
  padding-bottom: 8px;
}

.pre-contact-cta .cta-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 22px;
  align-items: center;
  overflow: hidden;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top left, rgba(48, 132, 158, 0.18), transparent 42%),
    linear-gradient(180deg, #131313 0%, #101010 100%);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

.pre-contact-cta .cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0) 38%
  );
  pointer-events: none;
}

.pre-contact-cta .cta-copy,
.pre-contact-cta .cta-actions {
  position: relative;
  z-index: 1;
}

.pre-contact-cta .cta-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: var(--tracking-ui);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.pre-contact-cta h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 0.95;
  color: #fff;
}

.pre-contact-cta p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: var(--tracking-soft);
}

.pre-contact-cta .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.pre-contact-cta .btn-primary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #fff;
  color: #111 !important;
}

.pre-contact-cta .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  color: #111 !important;
}

.pre-contact-cta .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff !important;
}

.pre-contact-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

#ubicacion,
#contacto {
  background: linear-gradient(180deg, #101010 0%, #0d0d0d 100%);
}

#ubicacion {
  --section-accent: rgba(120, 168, 182, 0.58);
  background:
    radial-gradient(circle at 88% 14%, rgba(71, 110, 126, 0.16), transparent 34%),
    linear-gradient(180deg, #101214 0%, #0c0d0f 100%);
}

#contacto {
  --section-accent: rgba(195, 156, 111, 0.58);
  background:
    radial-gradient(circle at 14% 18%, rgba(118, 82, 45, 0.16), transparent 36%),
    linear-gradient(180deg, #0f0f10 0%, #0b0b0c 100%);
}

#ubicacion .section-text,
#contacto .section-text {
  max-width: 760px;
}

#ubicacion .location-box,
#contacto .contact-box {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

#ubicacion .location-box {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location-chip {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: var(--tracking-ui);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.location-item {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.location-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.location-item span {
  display: block;
  font-size: 0.96rem;
  line-height: 1.6;
  letter-spacing: var(--tracking-soft);
  color: rgba(255, 255, 255, 0.8);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

#ubicacion .map-frame {
  width: 100%;
  height: 100%;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

#ubicacion .map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

#contacto .contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.contact-main {
  padding: 4px 2px;
}

.contact-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: var(--tracking-ui);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.contact-main h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 2.6vw, 2.9rem);
  font-weight: 500;
  line-height: 0.95;
  color: #fff;
}

.contact-main p {
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: var(--tracking-soft);
  color: rgba(255, 255, 255, 0.82);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-note strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
}

.contact-note span {
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.contact-pet-badge {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  grid-column: 1;
  grid-row: 4;
  justify-self: start;
  margin-top: auto;
  padding-top: 4px;
}

.contact-pet-badge img {
  display: block;
  width: 118px;
  height: auto;
  border-radius: 18px;
}

.contact-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  align-self: stretch;
}

.contact-link-card {
  display: block;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}

.contact-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.contact-link-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 0.98;
  color: #fff;
}

.contact-link-card span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.4;
  letter-spacing: var(--tracking-soft);
  word-break: normal;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.76);
}

#contacto .contact-box a,
#contacto .contact-box .btn,
#contacto .contact-link-card {
  border-bottom: none;
  color: #fff;
  text-decoration: none;
}

#contacto .contact-actions .btn-primary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #fff;
  color: #111 !important;
}

#contacto .contact-actions .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  color: #111 !important;
}

#contacto .contact-side .contact-link-card:last-of-type {
  grid-column: 1 / -1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.84);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  max-width: 92vw;
  max-height: 88vh;
}

.lightbox-img {
  display: block;
  width: auto;
  max-width: 92vw;
  max-height: 82vh;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: transparent;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
  margin-top: 12px;
  font-size: 0.95rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}

.lightbox-nav,
.lightbox-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 3001;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lightbox-prev {
  left: clamp(10px, 2vw, 24px);
}

.lightbox-next {
  right: clamp(10px, 2vw, 24px);
}

.lightbox-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.lightbox-nav.is-hidden {
  display: none;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-nav:focus-visible,
.lightbox-close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 4px;
}

body.lightbox-open {
  overflow: hidden;
}

html.js .reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

html.js .reveal.fade-in {
  transform: none;
}

html.js .reveal.scale-in {
  transform: scale(0.975);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

footer {
  padding: 30px 24px 50px;
  background: #0b0b0b;
  font-size: 0.95rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@media (max-width: 980px) {
  .section-title {
    padding-top: 20px;
  }

  .section-title::before {
    width: 56px;
  }

  .container > .section-title + .section-text {
    margin-left: 0;
    padding-left: 14px;
  }

  .logo img {
    height: 34px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 280px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.96);
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-text {
    width: min(100%, 760px);
    padding: 22px 18px 24px;
    border-radius: 26px;
  }

  .hero-logo {
    width: min(320px, 100%);
    max-width: 100%;
    margin-bottom: 12px;
  }

  .hero-text p {
    margin-bottom: 24px;
  }

  .hero-buttons {
    justify-content: center;
  }

  #nosotros .about-grid,
  #nosotros .about-side,
  .grid-2,
  .includes-grid,
  .include-card,
  .activity-grid,
  #ubicacion .location-box,
  #contacto .contact-box,
  .contact-side {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  #nosotros .about-grid {
    margin-top: 28px;
  }

  #nosotros .about-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
  }

  #nosotros .about-award-link {
    width: 100%;
    max-width: 140px;
  }

  .contact-side {
    grid-template-rows: auto;
    align-self: auto;
  }

  .contact-pet-badge {
    justify-content: flex-start;
    grid-column: auto;
    grid-row: auto;
    margin-top: 4px;
    padding-top: 0;
  }

  .contact-pet-badge img {
    width: 100px;
  }

  .include-image {
    height: 180px;
  }

  #casas .card-image-bg {
    height: auto;
    min-height: auto;
    padding: 20px 18px 18px;
  }

  #casas .card-image-content {
    height: auto;
    padding-bottom: 98px;
  }

  #casas .card-image-bg h3 {
    font-size: 1.85rem;
  }

  .unit-description {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .feature-item {
    gap: 7px;
    font-size: 0.84rem;
    line-height: 1.25;
  }

  #casas .card-image-bg .btn-outline {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: 0.9rem;
  }

  #casas .includes-inline {
    margin-top: 46px;
    padding-top: 32px;
  }

  #galeria .gallery-grid,
  #galeria-uno-dormitorio .gallery-grid,
  #galeria-dos-dormitorios .gallery-grid {
    grid-template-columns: 1fr;
  }

  #galeria .gallery-item,
  #galeria-uno-dormitorio .gallery-item,
  #galeria-dos-dormitorios .gallery-item {
    grid-column: auto !important;
    height: 250px;
  }

  .mini-card {
    min-height: 240px;
  }

  #ubicacion .map-frame iframe {
    min-height: 300px;
  }

  .contact-main h3 {
    font-size: 2rem;
  }

  .pre-contact-cta .cta-box {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .pre-contact-cta h2 {
    font-size: 2.1rem;
  }

  .pre-contact-cta .cta-actions {
    justify-content: flex-start;
  }

  #resenas .container > .section-title::before,
  #resenas .reviews-intro > .section-title::before {
    left: 50%;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-inner {
    width: 100%;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.8rem;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-close {
    top: -8px;
    right: -4px;
  }

  .lightbox-img {
    max-height: 74vh;
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-logo,
  .hero-text p,
  .hero-buttons,
  html.js .reveal {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ============================================
   DISPONIBILIDAD — Lunalba Casas de Montaña
   Sección de calendario y consulta de fechas
   ============================================ */

/* Sección contenedor */
#disponibilidad {
  padding: 48px 0;
  background: #0e0e0e;
}

/* Widget principal */
.disp-widget {
  background: #181818;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
}

/* ---- Fila superior: selector de unidad + leyenda ---- */
.disp-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.disp-unit-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}

.disp-unit-btn {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 7px;
  padding: 7px 14px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  color: #fff;
  white-space: nowrap;
}

.disp-unit-btn.active {
  border-color: #c9a96e;
  background: #1e1a14;
}

.disp-unit-btn:hover:not(.active) {
  border-color: #444;
}

.disp-unit-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
}

.disp-unit-sub {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  color: #888;
}

/* ---- Leyenda ---- */
.disp-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.disp-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: #888;
}

.disp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.dot-available { background: #3a6b45; }
.dot-occupied  { background: #6b2e2e; }
.dot-selected  { background: #c9a96e; }

/* ---- Loading ---- */
.disp-loading {
  text-align: center;
  padding: 12px;
  color: #888;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  display: none;
}

.disp-loading.visible {
  display: block;
}

/* ---- Layout principal: calendarios | formulario ---- */
.disp-main {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
  align-items: start;
}

/* ---- Calendarios ---- */
.disp-calendars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.disp-month {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 10px;
}

.disp-month-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.disp-month-title {
  font-family: 'Prata', serif;
  font-size: 12px;
  color: #fff;
  text-transform: capitalize;
}

.disp-month-nav {
  background: none;
  border: 1px solid #333;
  color: #aaa;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}

.disp-month-nav:hover {
  border-color: #c9a96e;
  color: #c9a96e;
}

.disp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin-bottom: 3px;
}

.disp-weekday {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  color: #444;
  padding: 2px 0;
  font-weight: 700;
  text-transform: uppercase;
}

.disp-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

.disp-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  border-radius: 4px;
  cursor: pointer;
  color: #bbb;
  transition: background 0.12s, color 0.12s;
  border: 1px solid transparent;
}

.disp-day.empty   { cursor: default; }
.disp-day.past    { color: #2a2a2a; cursor: not-allowed; }

.disp-day.occupied {
  background: #1e1010;
  color: #4a2222;
  cursor: not-allowed;
  text-decoration: line-through;
}

.disp-day.available:hover {
  background: #1a2a1e;
  color: #5a9a6a;
  border-color: #2a5a35;
}

.disp-day.check-in {
  background: #c9a96e;
  color: #111;
  font-weight: 700;
  border-radius: 4px 0 0 4px;
}

.disp-day.check-out {
  background: #c9a96e;
  color: #111;
  font-weight: 700;
  border-radius: 0 4px 4px 0;
}

.disp-day.in-range {
  background: #221c0e;
  color: #a08040;
  border-radius: 0;
}

.disp-day.check-in.check-out { border-radius: 4px; }
.disp-day.today { border-color: rgba(201, 169, 110, 0.33); }

/* ---- Formulario lateral ---- */
.disp-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.disp-form-field label,
.disp-mascota-field label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  color: #666;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.disp-form-field select {
  width: 100%;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 7px 10px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  cursor: pointer;
  appearance: none;
}

.disp-form-field select:focus {
  outline: none;
  border-color: #c9a96e;
}

/* Toggle mascota */
.disp-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  color: #777;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  transition: border-color 0.2s;
  width: 100%;
}

.disp-toggle[aria-pressed="true"] {
  border-color: #c9a96e;
  color: #c9a96e;
}

.disp-toggle-knob {
  width: 26px;
  height: 14px;
  background: #2a2a2a;
  border-radius: 7px;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}

.disp-toggle-knob::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #555;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: left 0.2s, background 0.2s;
}

.disp-toggle[aria-pressed="true"] .disp-toggle-knob {
  background: #3a2e1a;
}

.disp-toggle[aria-pressed="true"] .disp-toggle-knob::after {
  left: 14px;
  background: #c9a96e;
}

/* Resumen de fechas */
.disp-dates-summary {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 8px 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: #666;
  line-height: 1.5;
}

.disp-dates-summary.has-dates {
  border-color: rgba(201, 169, 110, 0.25);
  color: #c9a96e;
}

/* Botón consultar */
.disp-submit {
  width: 100%;
  padding: 11px;
  font-size: 13px;
}

.disp-submit:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ---- Botones flotantes ---- */
.floating-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.floating-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Botón calendario */
.floating-btn-cal {
  background: #c9a96e;
  color: #111;
}

/* Botón WhatsApp */
.floating-btn-wa {
  background: #25d366;
  color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .disp-main {
    grid-template-columns: 1fr;
  }

  .disp-form {
    border-top: 1px solid #2a2a2a;
    padding-top: 14px;
  }

  .floating-btn span {
    display: none;
  }

  .floating-btn {
    padding: 12px;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  .disp-calendars {
    grid-template-columns: 1fr;
  }

  .disp-widget {
    padding: 14px 10px;
  }
}
