/* ==========================================================================
   FERRAN ALQUILER · Menorca
   Estilo mediterráneo minimalista
   ========================================================================== */

/* ── Variables ─────────────────────────────────────────────────────────── */
:root {
  --blanco:      #FFFFFF;
  --arena:       #F5F0E8;
  --azul:        #1E6091;
  --azul-claro:  #A8C8E8;
  --azul-dark:   #154f75;
  --texto:       #2C2C2C;
  --texto-suave: #6b7280;
  --radius-sm:   6px;
  --radius-md:   12px;
  --sombra:      0 4px 20px rgba(0,0,0,.08);
  --sombra-md:   0 8px 32px rgba(0,0,0,.14);
  --trans:       0.3s ease;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--texto);
  background: var(--blanco);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: 'Raleway', sans-serif; line-height: 1.2; font-weight: 700; }
p { line-height: 1.7; }
ul { list-style: none; }

/* ── Contenedor ────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ── Botones ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--trans), color var(--trans), transform var(--trans), box-shadow var(--trans);
  letter-spacing: .02em;
  white-space: nowrap;
}
.btn--primary {
  background: var(--azul);
  color: #fff;
  border-color: var(--azul);
}
.btn--primary:hover {
  background: var(--azul-dark);
  border-color: var(--azul-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,96,145,.3);
}
.btn--outline {
  background: transparent;
  color: var(--azul);
  border-color: var(--azul);
}
.btn--outline:hover {
  background: var(--azul);
  color: #fff;
  transform: translateY(-1px);
}
.btn--outline.btn--light {
  color: #fff;
  border-color: #fff;
}
.btn--outline.btn--light:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.btn--lg { padding: .9rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ── Navbar ────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--trans), box-shadow var(--trans);
}
.navbar--scrolled {
  background: var(--blanco);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.navbar--scrolled .navbar__logo-text,
.navbar--scrolled .navbar__logo-sub { color: var(--texto); }
.navbar--scrolled .navbar__links a { color: var(--texto); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar__logo-text {
  font-family: 'Raleway', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  transition: color var(--trans);
}
.navbar__logo-accent { color: var(--azul-claro); }
.navbar__logo-sub {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color var(--trans);
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__links a {
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: color var(--trans);
}
.navbar__links a:hover { color: var(--azul-claro); }
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background var(--trans);
}
.navbar--scrolled .navbar__toggle span { background: var(--texto); }

@media (max-width: 767px) {
  .navbar__links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--blanco);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    padding: 1rem 0;
  }
  .navbar__links a {
    display: block;
    padding: .75rem 1.5rem;
    color: var(--texto);
    width: 100%;
  }
  .navbar__links--open { display: flex; }
  .navbar__toggle { display: flex; }
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,.5) 60%, rgba(0,0,0,.65) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding-top: 72px;
}
.hero__pretitle {
  font-size: .875rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--azul-claro);
  margin-bottom: .75rem;
  font-weight: 500;
}
.hero__title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── Aviso ─────────────────────────────────────────────────────────────── */
.aviso {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  font-size: .9375rem;
}
.aviso__icon {
  width: 22px;
  height: 22px;
  color: var(--azul);
  flex-shrink: 0;
  margin-top: .1rem;
}

/* ── Secciones ─────────────────────────────────────────────────────────── */
.section { padding: 4rem 0; }
.section--arena { background: var(--arena); }

@media (min-width: 1024px) { .section { padding: 5.5rem 0; } }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header__pretitle {
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azul);
  font-weight: 600;
  margin-bottom: .5rem;
}
.section-header__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--texto);
  margin-bottom: 1rem;
}
.section-header__subtitle {
  font-size: 1rem;
  color: var(--texto-suave);
  max-width: 580px;
  margin: 0 auto;
}

/* ── Cards apartamentos ────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .cards-grid { grid-template-columns: 1fr 1fr; } }

.card {
  background: var(--blanco);
  border-radius: var(--radius-md);
  box-shadow: var(--sombra);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sombra-md); }

.card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card:hover .card__img { transform: scale(1.04); }

.card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--azul);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 999px;
  letter-spacing: .04em;
}
.card__badge--alt { background: var(--azul-dark); }

.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: var(--texto);
}
.card__location {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--texto-suave);
  margin-bottom: 1rem;
}
.card__specs {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--arena);
}
.spec {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  color: var(--texto-suave);
  font-weight: 500;
}
.card__desc {
  font-size: .9375rem;
  color: var(--texto-suave);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.card__features {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.card__features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--texto);
}
.card__features svg { color: var(--azul); flex-shrink: 0; }

/* ── Equipamiento ──────────────────────────────────────────────────────── */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 480px) { .equip-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .equip-grid { grid-template-columns: repeat(4, 1fr); } }

.equip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 1.5rem 1rem;
  background: var(--blanco);
  border-radius: var(--radius-md);
  box-shadow: var(--sombra);
  text-align: center;
  font-size: .875rem;
  font-weight: 500;
  color: var(--texto);
  transition: transform var(--trans), box-shadow var(--trans);
}
.equip-item:hover { transform: translateY(-2px); box-shadow: var(--sombra-md); }
.equip-item svg { color: var(--azul); }

/* ── Entorno ───────────────────────────────────────────────────────────── */
.entorno-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .entorno-layout { grid-template-columns: 1fr 1fr; } }

.entorno-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.entorno-img { border-radius: var(--radius-md); object-fit: cover; width: 100%; }
.entorno-img--main { grid-column: 1 / -1; height: 260px; }
.entorno-img--sec  { height: 180px; }

.entorno-desc {
  color: var(--texto-suave);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.entorno-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.entorno-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .9375rem;
}
.entorno-list svg { color: var(--azul); flex-shrink: 0; margin-top: .15rem; }
.entorno-content .section-header__pretitle { text-align: left; }
.entorno-content .section-header__title { text-align: left; }

/* ── Ubicación & calendarios ───────────────────────────────────────────── */
.ubicacion-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) { .ubicacion-layout { grid-template-columns: 1fr 1fr; } }

.mapa-wrap iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: var(--radius-md);
  display: block;
}
.calendarios { display: flex; flex-direction: column; gap: 1.5rem; }
.calendarios__intro { color: var(--texto-suave); margin-bottom: .5rem; font-size: .9375rem; }
.calendario-item {
  background: var(--blanco);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.calendario-item h4 {
  font-size: 1rem;
  margin-bottom: .75rem;
  color: var(--azul);
}
.calendario-placeholder {
  color: var(--texto-suave);
  font-size: .9rem;
  font-style: italic;
  padding: 2rem;
  text-align: center;
}

.calendario-wrapper {
  position: relative;
  padding-bottom: 80%; /* Altura responsiva móvil */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .calendario-wrapper {
    padding-bottom: 60%; /* Altura responsiva escritorio */
  }
}
.calendario-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Contacto ──────────────────────────────────────────────────────────── */
.contacto-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) { .contacto-layout { grid-template-columns: 1fr 1.2fr; } }

.contacto-info .section-header__pretitle,
.contacto-info .section-header__title { text-align: left; }
.contacto-desc { color: var(--texto-suave); margin-bottom: 1.5rem; }
.contacto-datos { display: flex; flex-direction: column; gap: .85rem; }
.contacto-datos li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9375rem;
}
.contacto-datos svg { color: var(--azul); flex-shrink: 0; }
.contacto-datos a { color: var(--texto); font-weight: 500; }
.contacto-datos a:hover { color: var(--azul); }

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .9rem;
  font-weight: 500;
  color: var(--texto);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #e0d9cc;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: var(--texto);
  background: var(--blanco);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9ca3af; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--azul);
  box-shadow: 0 0 0 3px rgba(30,96,145,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231E6091' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-nota { font-size: .82rem; color: var(--texto-suave); text-align: center; }

/* ── Cierre emocional ──────────────────────────────────────────────────── */
.cierre {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cierre__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 1;
}
.cierre__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cierre__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.cierre__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: .75rem;
}
.cierre__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2rem;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: #1a1a2e;
  color: #9ca3af;
}
.footer__inner {
  display: grid;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) { .footer__inner { grid-template-columns: 2fr 1fr 1fr; } }

.footer__logo {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: .5rem;
}
.footer__logo-accent { color: var(--azul-claro); }
.footer__brand p { font-size: .9rem; line-height: 1.6; }
.footer__links h4 {
  font-family: 'Raleway', sans-serif;
  color: #fff;
  font-size: .9375rem;
  margin-bottom: .75rem;
}
.footer__links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a {
  font-size: .875rem;
  color: #9ca3af;
  transition: color var(--trans);
}
.footer__links a:hover { color: var(--azul-claro); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: .82rem;
}

/* ── Animación entrada ─────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }



/* =========================================================================
   CALENDARIO DE DISPONIBILIDAD Y PRECIOS 2026 — Mobile First
   ========================================================================= */

/* Nota pie */
.cal-nota { margin-top: 1rem; font-size: 0.875rem; color: #6b7280; text-align: center; }
.cal-nota a { color: var(--azul); }

/* ── Pestañas apartamento ─────────────────────────────────────────────── */
.cal2-tabs {
  display: flex;
  border-bottom: 2px solid #e5eaf0;
  margin-bottom: 1rem;
}
.cal2-tab {
  flex: 1;
  padding: 0.65rem 0.5rem;
  border: none;
  background: none;
  font-family: var(--font-titulo, 'Raleway', sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: #9ca3af;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.cal2-tab:hover       { color: var(--azul); }
.cal2-tab--activo     { color: var(--azul); border-bottom-color: var(--azul); }

/* ── Selector de mes ─────────────────────────────────────────────────── */
.cal2-meses-nav {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  justify-content: center;
}
.cal2-mes-btn {
  padding: 0.35rem 0.75rem;
  border: 1.5px solid #d1dae6;
  background: #fff;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.cal2-mes-btn:hover        { border-color: var(--azul); color: var(--azul); }
.cal2-mes-btn--activo      { background: var(--azul); border-color: var(--azul); color: #fff; }

/* ── Título del mes activo ───────────────────────────────────────────── */
.cal2-mes-titulo {
  text-align: center;
  font-family: var(--font-titulo, 'Raleway', sans-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--azul);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

/* ── Contenedor del mes ──────────────────────────────────────────────── */
.cal2-mes {
  border: 1px solid #e5eaf0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  max-width: 420px;
  margin: 0 auto;
}

/* ── Cabecera días de la semana ───────────────────────────────────────── */
.cal2-semana-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #eef3f9;
  padding: 0.3rem 0;
}
.cal2-semana-header span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--azul);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Grid de días ────────────────────────────────────────────────────── */
.cal2-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #e5eaf0;
}

/* ── Celda de día ────────────────────────────────────────────────────── */
.cal2-dia {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.1rem;
  min-height: 54px;
  gap: 0.12rem;
}
.cal2-dia--vacio  { background: #fafafa; min-height: 54px; }
.cal2-dia--fuera  { background: #f5f5f5; }
.cal2-dia--fuera .cal2-num { color: #d1d5db; }
.cal2-dia--disponible:hover { background: #f0faf3; }
.cal2-dia--bloqueado { background: #fff5f5; position: relative; overflow: hidden; }
.cal2-dia--bloqueado::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent 0, transparent 4px,
    rgba(185,28,28,0.09) 4px, rgba(185,28,28,0.09) 5px
  );
  pointer-events: none;
}

.cal2-num {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  line-height: 1;
}
.cal2-dia--bloqueado .cal2-num { color: #b91c1c; }

.cal2-precio {
  font-size: 0.67rem;
  font-weight: 700;
  color: #166534;
  line-height: 1;
}
.cal2-estado {
  font-size: 0.58rem;
  font-weight: 700;
  color: #b91c1c;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* ── Leyenda ─────────────────────────────────────────────────────────── */
.cal2-leyenda {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #4b5563;
}
.cal2-ley-item { display: flex; align-items: center; gap: 0.35rem; font-weight: 500; }
.cal2-ley-dot  { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.cal2-ley--disp  .cal2-ley-dot { background: #dcfce7; border: 1.5px solid #166534; }
.cal2-ley--res   .cal2-ley-dot { background: #fde8e8; border: 1.5px solid #b91c1c; }
.cal2-ley--fuera .cal2-ley-dot { background: #f5f5f5; border: 1.5px solid #d1d5db; }

/* ── Responsive desktop ─────────────────────────────────────────────── */
@media (min-width: 640px) {
  .cal2-mes-btn { font-size: 0.875rem; padding: 0.4rem 1rem; }
  .cal2-dia { min-height: 60px; }
  .cal2-num  { font-size: 0.875rem; }
  .cal2-precio { font-size: 0.72rem; }
}
