/* Sendaviva theme */

/* =========================
   SENDA VIVA — HEADER BASE
   (fondo, alto, spacing, logo)
   ========================= */

/* =========================================================
   SENDAVIVA — BASE THEME (Fonts + Colors + Type + Buttons)
   Fuente: guía desktop (PDF)
   ========================================================= */

/* -------------------------
   1) FONTS (self-hosted)
   Carpeta: /themes/custom/TU_TEMA/fonts/
------------------------- */

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Aplicación global */
:root {
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* -------------------------
   2) COLORES (guía)
------------------------- */
:root {
  /* Degradado general (aprox altura pantalla / 974px) */
  --grad-a: #e9fbff;
  --grad-b: #f9f4e8;
  --bg-grad: linear-gradient(180deg, var(--grad-a) 0%, var(--grad-b) 100%);

  /* Base crema */
  --cream-1: #f9f4e8;
  --cream-2: #eee6d6;
  /* color principal */

  /* Verdes */
  --green-1: #e8ebbe;
  --green-2: #d0df8b;
  --green-900: #2a4123;

  /* Celestes */
  --sky-1: #e9fbff;
  --sky-2: #c5e6ee;

  /* Naranja (ofertas / destacado) */
  --orange: #ee7744;

  /* Neutros */
  --text: #000000;
  --text-inv: #ffffff;

  /* UI */
  --radius-pill: 999px;
  --radius-lg: 24px;
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, .18);

  /* Espaciados guía */
  --gap-12: 12px;
  --gap-24: 24px;
  --gap-48: 48px;
  --gap-84: 84px;

  /* Container */
  --container-max: 1560px;
  /* en la guía aparece aprox 1559px */
  --container-pad: 48px;

  /* Tipografía: pesos unificados */
  --fw-heading: 700;
  /* Bold — peso estándar para TODOS los títulos */
  --fw-bold: 700;
  /* Sinónimo explícito para negrita de cuerpo */
  --fw-semi: 600;
  /* SemiBold */
  --fw-medium: 500;
  /* Medium */
  --fw-regular: 400;
  /* Regular */

  /* Botones */
  --btn-h: 45px;
  /* guía: 45px */
  --btn-fz: 12px;
  --btn-track: 0.10em;
  /* tracking 100 aprox */
}

/* -------------------------
   GLOBAL BOX-SIZING RESET
------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fondo global sugerido por guía */
html,
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg-grad);
  overflow-x: hidden;
}

/* -------------------------
   GLOBAL PAGE CENTERING
   Constrain the entire page to the design width
   and center it on wide screens / zoom out.
------------------------- */
#main-wrapper {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden; /* Corta cualquier overflow horizontal interno */
}

.region-full-width {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

/* Footer wrapper: full viewport width so green bg bleeds edge-to-edge */
.region-full-footer {
  width: 100%;
}

.container-fluid {
  padding: 0 !important;
}

/* -------------------------
   3) LAYOUT HELPERS (genérico)
------------------------- */
.sv-container {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

@media (max-width: 1200px) {
  :root {
    --container-pad: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-pad: 20px;
  }
}

/* Gaps genéricos */
.sv-gap-12 {
  gap: var(--gap-12);
}

.sv-gap-24 {
  gap: var(--gap-24);
}

.sv-gap-48 {
  gap: var(--gap-48);
}

/* Cards / cajas: textos a 24px del borde (guía) */
.sv-card {
  background: rgba(255, 255, 255, .35);
  border-radius: var(--radius-lg);
  padding: var(--gap-24);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
}

/* Columnas:
   - fotos: calle 12px
   - textos fuera de cajas: +12px margen derecho extra (guía) */
.sv-photos-row {
  display: grid;
  gap: var(--gap-12);
}

.sv-text-col--free {
  padding-right: var(--gap-12);
}

/* -------------------------
   4) TIPOGRAFÍA (guía)
   H1 60 / 63 / after 20 (Bold)
   H2 36 / 39.6 / after 18 (Bold)
   H3 30 / 33 / after 15 (Bold)
   H4 30 / 36 / after 15 (Bold) (cuando títulos muy largos)
   H5 18 / 24.3 / after 9 (Regular)
------------------------- */

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
  color: var(--text);
}

h1 {
  font-weight: var(--fw-heading);
  font-size: 60px;
  line-height: 63px;
  margin-bottom: 20px;
}

h2 {
  font-weight: var(--fw-heading);
  font-size: 36px;
  line-height: 39.6px;
  margin-bottom: 18px;
}

h3 {
  font-weight: var(--fw-heading);
  font-size: 30px;
  line-height: 33px;
  margin-bottom: 15px;
}

h4 {
  font-weight: var(--fw-heading);
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 15px;
}

h5 {
  font-weight: var(--fw-regular);
  font-size: 18px;
  line-height: 24.3px;
  margin-bottom: 9px;
}

/* Ajuste responsive simple */
@media (max-width: 1024px) {
  h1 {
    font-size: 46px;
    line-height: 50px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 38px;
    line-height: 42px;
  }

  h2 {
    font-size: 28px;
    line-height: 32px;
  }
}

/* -------------------------
   5) BOTONES (guía)
   Font: Regular 12
   Tracking: 100
   Interlínea: 12
   Modelo interacción: barrido crema -> verde oscuro (tipo watchhouse)
------------------------- */

.sv-btn,
a.sv-btn,
button.sv-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-h);
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .10);
  color: var(--text-inv);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--btn-fz);
  line-height: 12px;
  letter-spacing: var(--btn-track);
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease;
}

.sv-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .8);
}

.sv-btn:active {
  transform: translateY(0px);
}

/* Barrido (crema -> verde oscuro) */
.sv-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(90deg, var(--cream-2) 0%, var(--green-900) 100%);
  transition: transform .45s ease;
  z-index: 0;
  opacity: .95;
}

.sv-btn>* {
  position: relative;
  z-index: 1;
}

/* Hover: entra el barrido */
.sv-btn:hover::before {
  transform: translateX(0%);
}

/* Focus visible */
.sv-btn:focus-visible {
  outline: 2px solid rgba(233, 251, 255, .9);
  outline-offset: 3px;
}

/* Variantes útiles */
.sv-btn--dark {
  border-color: rgba(42, 65, 35, .35);
  background: rgba(42, 65, 35, .10);
  color: var(--green-900);
}

.sv-btn--orange {
  border-color: rgba(238, 119, 68, .65);
  background: rgba(238, 119, 68, .92);
  color: #fff;
}

.sv-btn--orange::before {
  background: linear-gradient(90deg, var(--cream-2) 0%, var(--orange) 100%);
}

/* -------------------------
   6) CABECERA (referencia)
   Texto y líneas en #fff o #000 según fondo (guía)
------------------------- */
.sv-header--light {
  color: #000;
}

.sv-header--light a {
  color: #000;
}

.sv-header--dark {
  color: #fff;
}

.sv-header--dark a {
  color: #fff;
}

/* -------------------------
   7) MIGAS DE PAN (guía)
   - en internas: ruta subrayada para volver
------------------------- */
.sv-breadcrumb {
  font-size: 14px;
  line-height: 18px;
}

.sv-breadcrumb a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sv-breadcrumb a:hover {
  opacity: .75;
}

aside.container-fluid.section.clearfix {
  padding: 0;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

div#main-wrapper {
  padding: 84px;
  padding-bottom: 0;
}

@media (max-width: 1200px) {
  div#main-wrapper {
    padding: 64px 48px 0;
  }
}

@media (max-width: 992px) {
  div#main-wrapper {
    padding: 48px 32px 0;
  }
}

@media (max-width: 768px) {
  div#main-wrapper {
    padding: 32px 24px 0;
  }
}

.views-row {
  padding: 0;
}

/* Wrapper */
.sv-newsletter {
  background: #f3e9da;
  /* ajustalo a tu beige */
  border-top: 1px solid rgba(0, 0, 0, .08);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.sv-newsletter__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 84px;
  display: grid;
  grid-template-columns: 5fr 3fr 2fr;
  /* 50% 30% 20% aprox */
  gap: 32px;
  align-items: center;
  /* Centrado vertical */
}

/* Columna Social: Alinear íconos (ej. al centro o derecha) */
.sv-newsletter__social-col {
  display: flex;
  justify-content: center;
  /* O flex-end si prefieren pegado a la derecha */
}

/* Ajuste Social Icons: ya no margin-top */
.sv-newsletter__social {
  margin-top: 0;
  gap: 12px;
}

@media (max-width: 992px) {
  .sv-newsletter__inner {
    grid-template-columns: 1fr;
    padding: 32px 18px;
  }
}

/* Left */
.sv-newsletter__title {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: #2f4a2f !important;
}

.sv-newsletter__desc {
  font-size: 16px;
  line-height: 1.5;
  opacity: .85;
  max-width: 560px;
}

/* Right / content */
.sv-newsletter__content .content {
  margin: 0;
}

.sv-newsletter__content form {
  margin: 0;
}

.sv-newsletter__content fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
}

.sv-newsletter__content .form-item {
  margin-bottom: 0;
  /* Remove default drupal margin */
}

/* Si querés ocultar el legend “Gestione sus suscripciones...” */
.sv-newsletter__content legend {
  display: none;
}

/* Acomoda checkbox/descripcion */
.sv-newsletter__content .form-check {
  margin: 0 0 10px;
}

.sv-newsletter__content .description {
  margin: 0 0 14px;
  opacity: .7;
}

/* Botón submit tipo pill */
.sv-newsletter__content .form-actions {
  margin: 0;
}

/* Inputs: Pill shape, transparente, borde fino */
.sv-newsletter__content input[type="email"],
.sv-newsletter__content input[type="text"] {
  width: 100%;
  height: 48px;
  border-radius: 999px;
  /* Pill */
  border: 1px solid #000;
  background: transparent;
  padding: 0 24px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: background .2s ease, border-color .2s ease;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sv-newsletter__content input[type="email"]::placeholder,
.sv-newsletter__content input[type="text"]::placeholder {
  color: #000;
  opacity: 0.6;
}

.sv-newsletter__content input[type="email"]:focus,
.sv-newsletter__content input[type="text"]:focus {
  background: rgba(255, 255, 255, .2);
  border-color: #000;
}

/* Botón submit: Circular con flecha */
.sv-newsletter__content input[type="submit"] {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #000;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='5' y1='12' x2='19' y2='12'%3e%3c/line%3e%3cpolyline points='12 5 19 12 12 19'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  color: transparent;
  /* Ocultar texto "Suscribirse" */
  font-size: 0;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease;
  padding: 0 !important;
  margin-left: auto;
  /* Alinear a la derecha si es necesario o ajustar layout */
}

.sv-newsletter__content input[type="submit"]:hover {
  transform: translateX(3px);
  background-color: rgba(0, 0, 0, 0.05);
}

/* Social icons */
.sv-newsletter__social {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 16px;
}

@media (max-width: 992px) {
  .sv-newsletter__social {
    justify-content: flex-start;
  }
}

.sv-social {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, .2);
  opacity: .85;
  transition: opacity .15s ease, transform .15s ease;
}

.sv-social svg {
  fill: currentColor;
}

.sv-social:hover {
  opacity: 1;
  transform: translateY(-1px);
}

div#edit-subscriptions-wrapper {
  display: none;
}

div#edit-message {
  display: none;
}

/* Floating WhatsApp Button */
.sv-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: var(--green-900);
  /* Updated to theme green */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sv-whatsapp svg {
  width: 35px;
  height: 35px;
  fill: #fff;
}

.sv-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* Floating Tickets Button */
.sv-tickets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  height: 57px;
  background-color: var(--orange);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 34px 0 20px;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 998;
  text-decoration: none;
  color: #fff;
  transition: transform .3s ease, box-shadow .3s ease, background-color .2s;
}

.sv-tickets:hover {
  background-color: #ff8855;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.sv-tickets__text {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.sv-tickets svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

@media (max-width: 768px) {
  .sv-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .sv-whatsapp svg {
    width: 28px;
    height: 28px;
  }

  .sv-tickets {
    bottom: 17px;
    /* Align with 16px bottom + (50-48)/2 = 1px? No, 48px height vs 50px. */
    /* Let's center it vertically relative to whatsapp button */
    /* Whatsapp: bottom 16, height 50. Center at 16+25 = 41px from bottom. */
    /* Tickets: height 48. Center at 24.  bottom = 41 - 24 = 17px. Correct. */
    right: 78px;
    /* 16px + 50px + 12px gap = 78px */
    height: 48px;
    padding: 0 16px;
    /* Hide text on very small screens if needed, but "Comprar Entradas" is important. */
  }

  .sv-tickets__text {
    font-size: 13px;
  }
}

.field.field--name-field-enlace.field--type-link.field--label-hidden.field__item a {
  --bg: transparent;
  --hover-bg: #2f4a2f;
  --border: #2f4a2f;
  --text: #1f1f1f;
  --hover-text: #ffffff;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid var(--border);

  background: linear-gradient(to right, var(--bg) 50%, var(--hover-bg) 50%);
  background-size: 200% 100%;
  background-position: left bottom;

  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;

  transition:
    background-position .35s ease,
    color .25s ease,
    transform .15s ease;
}

/* Hover + focus */
.field.field--name-field-enlace.field--type-link.field--label-hidden.field__item a:hover,
.field.field--name-field-enlace.field--type-link.field--label-hidden.field__item a:focus {
  background-position: right bottom;
  color: var(--hover-text);
  transform: translateY(-1px);
}

/* Active */
.field.field--name-field-enlace.field--type-link.field--label-hidden.field__item a:active {
  transform: scale(.96);
}


.view.view-noticias-home-2.view-id-noticias_home_2 {
  margin-bottom: 48px;
}

.page-node-11 #main-wrapper {
  background: #e8eec8;
}

div#block-sendaviva-faqs a {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: #111;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faqs .paragraph.paragraph--type--custom-block.paragraph--view-mode--default {
  margin-top: 0;
}

.atraccion-full {
  display: flex;
}

.atraccion-full__contenido,
.atraccion-full__imagen {
  width: 50%;
}

.tabs-atracciones {
  border-top: 1px solid #ccc;
}

.tabs-nav {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #ccc;
}

.tab-btn {
  background: none;
  border: none;
  padding: 15px 0;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  position: relative;
  color: #555;
}

.tab-btn.active {
  color: #000;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: black;
}

.tabs-content {
  padding-top: 20px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

input#edit-submit {
  max-width: max-content;
  background: #2f4a2f;
  border: 0;
}

ol.list-group.node_search-results .list-group-item {
  background: #f3e9da;
  padding: 20px;
  margin-bottom: 24px;
}

a#edit-help-link {
  display: none;
}

ol.list-group.node_search-results .list-group-item h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  margin-bottom: 15px;
}

ol.list-group.node_search-results .list-group-item a {
  color: #2a4123;
  text-decoration: none;
}

ol.list-group.node_search-results .list-group-item a:hover {
  color: #2f4a2f;
  text-decoration: underline;
}

.path-search h2 {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 33px;
  line-height: 1.1;
  color: #2f4a2f !important;
}

.view.view-noticias-home-3.view-id-noticias_home_3 {
  background: #e8eec8;
}

.view-content.row {
  margin: 0;
}

div#views-bootstrap-alojamientos-block-1 {
  padding: 0;
}

div#views-bootstrap-autocaravanas-block-1 {
  padding: 0;
}

.node--view-mode-teaser {
  border-bottom: none;
}

div#views-bootstrap-escolares-cards-block-1 {
  padding: 0;
}

.paragraph--type--simple-card img {
  max-height: 290px;
}

a.btn-sendaviva:hover {
  color: white !important;
  background: #2f4a2f;
}

.clearfix.text-formatted.field.field--name-field-descripcion-libre h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--text);
}

div#block-sendaviva-webform {
    display: none;
}

div#block-sendaviva-webform-2 {
    display: none;
}

.field.field--name-field-enlace.field--type-link.field--label-hidden.field__item button
 {
    --bg: transparent;
    --hover-bg: #2f4a2f;
    --border: #2f4a2f;
    --text: #1f1f1f;
    --hover-text: #ffffff;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: linear-gradient(to right, var(--bg) 50%, var(--hover-bg) 50%);
    background-size: 200% 100%;
    background-position: left bottom;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: background-position .35s ease, color .25s ease, transform .15s ease;
}

.clearfix.text-formatted.field.field--name-field-descripcion-libre.field--type-text-long.field--label-hidden.field__item {
    font-size: 1rem;
}

.clearfix.text-formatted.field.field--name-field-descripcion-popup.field--type-text-long.field--label-hidden.field__item {
    display: none;
}

.card-full-color .field--name-field-descripcion-libre a.btn-sendaviva {
    background: white;
    border: none;
}

.accordion {
    margin-bottom: 20px;
}

.accordion-item:first-of-type .accordion-button {
    background: #f9f4e8;
    color: #2f4a2f;
}

.bienestar-class .paragraph.paragraph--type--media.paragraph--view-mode--default {
    display: block;
}

.clearfix.text-formatted.field.field--name-field-texto-suelto.field--type-text-long.field--label-hidden.field__items {
    font-size: 1rem;
}

.bienestar-class .field--name-field-media-image img {
    max-width: 100%;
    height: 290px;
    border-radius: 17px;
}

.section-container.two-col.bienestar-class.second-place {
    margin-top: -150px !important;
}

.bienestar-class.second-place .field--name-field-media-image img {
    max-width: 100%;
    height: auto;
    border-radius: 17px;
}

.section-container.three-col.container-links-cards {
    /* padding: 160px; */
    width: 75%;
    padding: 20px;
    display: flex;
    justify-self: anchor-center;
}

.section-container.two-col.container-links-cards {
    width: 50%;
    display: flex;
    justify-self: anchor-center;
}

.content.block-especial-inner.verano {
    background: #b4ddec;
}

.card-full-color a.btn-sendaviva:hover
 {
    color: #000000 !important;
}

.pop-up-cumple {
    margin-bottom: 40px;
}

/* ============================================
   Block Header Special
   ============================================ */

.block-header-special {
  position: relative;
  width: 100%;
  height: 560px; /* Ajustá este valor al alto deseado */
  overflow: hidden;
}

/* Imagen/video de fondo */
.block-header-special .sv-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.block-header-special .sv-bg-img img,
.block-header-special .sv-bg-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Overlay oscuro para legibilidad del texto */
.block-header-special .sv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 60%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
}

/* Contenedor del texto */
.block-header-special .sv-content
 {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--sv-pad-x);
    padding-right: var(--sv-pad-x);
    padding-top: var(--sv-hero-pad-top);
    display: flex;
    align-items: flex-start;
}

/* Título principal */
.block-header-special .sv-titular {
  color: #ffffff;
}

.block-header-special .sv-titular,
.block-header-special .sv-titular * {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 0.75rem;
  width: 800px;
}

/* Subtítulo (opcional) */
.block-header-special .sv-subtitular,
.block-header-special .sv-subtitular * {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

/* CTA / botón (opcional) */
.block-header-special .sv-cta a {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.block-header-special .sv-cta a:hover {
  background: #ffffff;
  color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
  .block-header-special {
    height: 420px;
  }

  .block-header-special .sv-content {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .block-header-special {
    height: 320px;
  }
}

.sv-titular .field.field--name-field-titular.field--type-string.field--label-hidden.field__item {
    color: #fff !important;
}

article.paragraph.paragraph--type--green-card.paragraph--view-mode--default {
    padding-bottom: 84px !important;
}

.card-description.green {
    display: -webkit-box;
    -webkit-line-clamp: none;
}

.page-node-503 #header.header {
    position: relative;
    z-index: 100;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

div#block-sendaviva-webformbrevo {
    background: #e7decc;
}

.section-container.bienestar-class.third-place {
    margin-top: -170px !important;
    width: 46%;
}

@media (max-width: 768px) {
    .section-container.bienestar-class.third-place {
        width: 100%;
    }
}

.section-container.bienestar-class.third-place img {
    height: 300px !important;
}

.card-full-color.campamentos a {
    color: white !important;
    text-decoration: none;
    font-weight: 700;
}

.custom-modal img {
    width: 300px;
    height: auto;
    display: flex;
    align-content: center;
}

.content.block-especial-inner.verde_medio {
    background: #D0DF8B;
}

.bienestar-cards .card-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 20px 20px 0 0;
}

.bienestar-cards .card-footer {
    display: none;
}

.link-cards .card-image-atracciones.card-image-atracciones--overlay {
    border-radius: 20px;
}

.page-node-502 #header.header {
    position: relative;
    z-index: 100;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.container-links-cards .card-image-atracciones.card-image-atracciones--overlay {
    border-radius: 20px;
}

.field.field--name-field-subtitular.field--type-string-long.field--label-hidden.field__item {
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: var(--sv-body-size);
    line-height: var(--sv-body-line);
    font-weight: 500;
    margin: 0;
    color: #fff !important;
}

.card-description.green {
    height: 250px;
}

.card-footer.activo {
    display: none;
}