/* Theme base styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/
:root {
  --primary-color: #0D2754;
  --secondary-color: #B8A050;
  --accent-color: #C8102E;
  --primary-color-black: #071730;
  --text-color: #72706A;
  --heading-color: #161616;
  --legal-color: #455164;
  --font-family-base: 'Playfair Display', 'Roboto', sans-serif;
  --font-family-secondary: 'Plus Jakarta Sans', 'Roboto', sans-serif;
  --font-size-base: 16px;
  --font-size-button: 18px;
  --font-size-disclaimer:10px;
  --font-size-heading: clamp(30px, 1.9vw, 40px);
  --font-size-heading-big: clamp(1.75rem, 2.5vw, 2.2rem);
  --font-size-subheading: 40px;
  --letter-spacing-base: 3px;
  --font-weight-base: 400;
  --font-weight-thin: 200;
  --font-weight-heading: 500;
  --font-weight-heading-black: 700;
  --padding-btn: 10px 20px;
}

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HTML elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

.cta__bordered .button {
  font-family: var(--font-family-secondary);
  align-items: center;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 999px;
  color: var(--primary-color);
  display: inline-flex;
  font-size: 0.9375rem;
  font-weight: 600;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  margin-top:30px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cta__bordered .button:hover,
.cta__bordered .button:focus {
  background-color: #ffffff;
  border-color: #000000;
  color: #000000;
  border-radius: 999px;
  transform: translateY(-1px);

}
.form-title, .submitted-message, form {
    background-color: #ffffff !important;
    border: 1px #ffffff !important;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* ============================================================
   SITE HEADER
   Estructura: header__main (transparente/blur)
   Comportamiento: fixed, sticky al hacer scroll agrega .is-scrolled
   ============================================================ */

/* ── Accesibilidad: skip link ────────────────────────────── */

.header__skip {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  top: -9999px;
  width: 1px;
}

.header__skip:focus {
  background: #E0001A;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  height: auto;
  left: 0;
  overflow: visible;
  padding: 0.5rem 1rem;
  top: 0;
  width: auto;
  z-index: 9999;
}

/* ── Wrapper principal fijo ──────────────────────────────── */

.site-header {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* ── Header main ─────────────────────────────────────────── */

.header__main {
  background-color: rgb(0 0 0 / 49%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Estado scrolled: fondo sólido */
.site-header.is-scrolled .header__main {
  background-color: rgb(0 0 0 / 85%);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

/* ── Contenedor principal del header ────────────────────── */

.header__container {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  max-width: 1280px;
  min-height: 70px;
  padding-bottom: 0;
  padding-top: 0;
}

/* ── Logo ────────────────────────────────────────────────── */

.header__logo {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  max-width: 115px;
}

.header__logo img {
  display: block;
  height: auto;
  max-width: 100%; 
  padding: 5px;
}

/* Texto del logo si no hay imagen */
.header__logo .logo-company-name {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
}

.menu .menu__link:hover, .menu .menu__link:focus, .header__language-switcher-label-current:hover, .header__language-switcher-label-current:focus, .header__language-switcher .lang_list_class li:hover a, .header__language-switcher .lang_list_class li a:focus,
.menu .menu__link:active, .header__language-switcher-label-current:active, .header__language-switcher .lang_list_class li a:active {
    color: #ffffff !important;
}

/* ── Navegación ──────────────────────────────────────────── */

.header__nav {
  flex: 1;
}

/* Ocultar nav mobile en desktop, mostrar desktop nav */
.header__nav .menu--mobile {
  display: none;
}

/* Estilos de los links del menú en el header */
.header__nav .menu__wrapper {
  align-items: center;
  display: flex;
  gap: 0;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav .menu__item {
  position: relative;
}

.header__nav .menu__link {
  color: rgb(255 255 255 / 79%);
  display: block;
  font-size: 14px;
  font-weight: 500;
  padding: 0px 10px;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.header__nav .menu__link:hover,
.header__nav .menu__link:focus {
  color: var(--accent-color);
}

.header__nav .menu__link--active-link {
  color: var(--accent-color);
}


.header__cta .button{
  background-color: var(--primary-color);
  border-radius: 0px;
  color: #ffffff !important;
  display: inline-block;
  font-size: var(--font-size-base);
  letter-spacing: 0.01em;
  padding: 8px 30px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  border: none;
}

.header__cta .button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-1px);
  border: none;
}
.header__cta .button:focus {
  background-color: var(--secondary-color);
  transform: translateY(-1px);
  border: none;
}


/* Submenú dropdown */
.header__nav .menu__submenu {
  background-color: transparent !important;
  border: none !important;
  border-top: 2px solid #E0001A;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  left: 0;
  list-style: none;
  min-width: 200px;
  opacity: 0;
  padding: 0.5rem 0 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-4px);
  z-index: 100;
}
.menu__submenu .menu__link:hover, .menu__submenu .menu__link:focus, .header__language-switcher .lang_list_class li:hover, .menu__submenu--level-2 > .menu__item:first-child:hover:before, .menu__submenu--level-2 > .menu__item:first-child.focus:before {
    background-color: var(--secondary-color) !important;
}

.header__nav .menu__item--has-submenu:hover > .menu__submenu,
.header__nav .menu__item--has-submenu:focus-within > .menu__submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header__nav .menu__submenu .menu__link {
  font-size: 14px;
  padding: 0px 9px;
}

/* ── CTA del header ──────────────────────────────────────── */

.header__cta {
  flex-shrink: 0;
}

.header__cta .button-wrapper {
  text-align: right;
}

.header__cta .button {
  font-weight: 700;
}


/* ── Hamburger (solo mobile) ─────────────────────────────── */

.header__hamburger {
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  padding: 0.5rem;
}

.hamburger__line {
  background-color: #ffffff;
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 24px;
}

/* Estado abierto: animación X */
.header__hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Responsive – Mobile (≤ 767px) ──────────────────────── */

@media (max-width: 767px) {
  .header__hamburger {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .header__nav {
    background-color: #152638;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    left: 0;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%; /* debajo del site-header completo (topbar + main) */
    transition: max-height 0.35s ease;
    width: 100%;
  }

  .header__nav.is-open {
    max-height: 80vh;
    overflow-y: auto;
  }

  /* En mobile mostrar solo el nav mobile */
  .header__nav .menu--desktop {
    display: none;
  }

  .header__nav .menu--mobile {
    display: block;
  }

  .header__nav .menu__wrapper {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  .header__nav .menu__link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 14px;
    padding: 0.75rem 1.25rem;
  }

  .header__nav .menu__submenu {
    border-top: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    position: static;
    transform: none;
    background-color: rgba(0, 0, 0, 0.2);
  }

  .header__nav .menu__submenu .menu__link {
    padding-left: 2.25rem;
  }

  .header__container {
    min-height: 60px;
    gap: 1rem;
  }

  .header__logo {
    max-width: 100px;
  }
}

/* ── Responsive – Tablet (768px – 1023px) ───────────────── */

@media (min-width: 768px) and (max-width: 1023px) {
  .header__nav .menu__link {
    font-size: 0.875rem;
    padding: 0.5rem 0.65rem;
  }

  .header__cta .button {
    font-size: 0.875rem;
    padding: 0.6rem 1rem;
  }

  .header__logo {
    max-width: 140px;
  }
}
/* ============================================================
   FOOTER
   Layout: 3 columnas (brand | oficina ventas | quejas+rrss)
   ============================================================ */

.footer {
  background-color: #071730 !important;
  border-top: 1px solid #040b15;
}

.footer__inner {
  padding-top: 40px;
  padding-bottom: 32px;
}


/* Pleca superior de certificaciones */
.footer-certifications {
  width: 100%;
  background-color: #B47F00;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.footer-certifications img {
  display: block;
  width: 100%;
  max-width: 1400px; /* ajusta según necesites */
  height: auto;
  object-fit: contain;
}


/* ── Grid de 3 columnas ───────────────────────────────────── */

.footer__row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ── Columna 1: Brand ────────────────────────────────────── */

.footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Logos lado a lado */
.footer__logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer__logos .hs_cos_wrapper {
  display: flex;
  align-items: center;
}

.footer__logos img {
  display: block;
  height: auto;
  object-fit: contain;
}

.footer__logos .footer_logo_madeira img,
.footer__logos [id*="footer_logo_madeira"] img {
  width: 110px;
}

.footer__logos .footer_logo_vinte img,
.footer__logos [id*="footer_logo_vinte"] img {
  width: 120px;
}

/* Dirección y datos legales */
.footer__address {
  font-style: normal;
}

.footer__address p,
.footer__address .hs_cos_wrapper p {
  font-family: var(--font-family-secondary);
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45) ;
  margin: 0 0 10px;
}

.footer__address p:last-child,
.footer__address .hs_cos_wrapper p:last-child {
  margin-bottom: 0;
}

.footer__address strong { font-weight: 700; }

.footer__address a,
.footer__address .hs_cos_wrapper a,
.footer__col--ventas a,
.footer__col--ventas .hs_cos_wrapper a,
.footer__col--quejas a,
.footer__col--quejas .hs_cos_wrapper a  {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-family-secondary);
  text-decoration: none;
}

.footer__address a:hover,
.footer__address .hs_cos_wrapper a:hover,
.footer__col--ventas a:hover,
.footer__col--quejas a:hover {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-weight: 600;
}
/* ── Columnas 2 y 3: Contenido ───────────────────────────── */

.footer__col--ventas,
.footer__col--quejas {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__col--ventas h4,
.footer__col--ventas .hs_cos_wrapper h4,
.footer__col--quejas h4,
.footer__col--quejas .hs_cos_wrapper h4 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  font-family: var(--font-family-secondary);
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}

.footer__col--ventas p,
.footer__col--ventas .hs_cos_wrapper p,
.footer__col--quejas p,
.footer__col--quejas .hs_cos_wrapper p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-family-secondary);;
  margin: 0 0 10px;
}

.footer__col--ventas p:last-child,
.footer__col--ventas .hs_cos_wrapper p:last-child,
.footer__col--quejas p:last-child,
.footer__col--quejas .hs_cos_wrapper p:last-child {
  margin-bottom: 0;
}


/* ── Redes sociales (@hubspot/social_follow) ─────────────── */

.footer__col--quejas .hs_cos_wrapper_type_social_follow {
  margin-top: 20px;
}

/* El módulo social_follow de HubSpot genera .hs-social-follow */
.footer__col--quejas .hs-social-follow {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__col--quejas .hs-social-follow__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.45);
  font-family: var(--font-family-secondary);
  border-radius: 50%;
  color: #ffffff;
  transition: opacity 0.2s;
  text-decoration: none;
}

.footer__col--quejas .hs-social-follow__link:hover {
  opacity: 0.75;
}

.footer__col--quejas .hs-social-follow__link img,
.footer__col--quejas .hs-social-follow__link svg {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

/* ── Responsive: tablet (2 cols) ─────────────────────────── */

@media (max-width: 1023px) {
  .footer__row {
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

/* ── Responsive: mobile (1 col) ──────────────────────────── */

@media (max-width: 599px) {
  .footer__row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
/* ============================================================
   HERO HOME
   Sección DnD (background_image nativo) + módulos default.
   Targeting de instancias vía extra_classes en cada dnd_module
   (dnd_row NO acepta class/extra_classes, solo dnd_module).
   Se extiende detrás del header fijo/transparente.
   ============================================================ */

.hero-home {
  background-color: var(--primary-color-black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  position: relative;
}

.hero-home::before {
  background: linear-gradient(90deg, rgba(7, 23, 48, 0.78) 0%, rgba(7, 23, 48, 0.55) 45%, rgba(7, 23, 48, 0.3) 100%),
              linear-gradient(0deg, rgba(7, 23, 48, 0.55) 0%, rgba(7, 23, 48, 0) 40%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-home .row-fluid {
  max-width: 780px;
  position: relative;
}

/* Eyebrow (clase escrita directo en el html del rich_text) */

.hero-home .hero-home__eyebrow {
  font-family: var(--font-family-secondary);
  color: var(--secondary-color);
  font-size: 13PX !important;
  font-weight: 100;
  letter-spacing: var(--letter-spacing-base);
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}

/* Título */

.hero-home h1 {
  color: #ffffff;
  font-size: clamp(30px,66px,70px);
  font-weight: var(--font-weight-heading-black);
  line-height: 1.15;
  margin: 0 0 1.5rem;
}

/* Descripción */

.hero-home p {
  color: rgb(255 255 255 / 65%);
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 1.5rem;
  max-width: 558px;
  font-family: var(--font-family-secondary);
  font-weight: 100;
}

/* Botones (@hubspot/button local, cada uno con su propio extra_classes) */

/* La fila de botones vive en dos columnas span6 del grid de 12; sin esto
   quedan estiradas al 50% del ancho y el segundo botón cae lejos del primero.
   :has() la colapsa a "inline-block" real, pegada al contenido.
   ":has(> div > .marca)" (no ":has(.marca)" a secas) porque HubSpot anida
   row-fluid dentro de row-fluid en cada nivel de dnd_row/dnd_column: un
   :has() sin el combinador ">" hace match en TODOS los row-fluid ancestro
   hasta el que envuelve toda la página (el marcador sigue siendo su
   descendiente), no solo en el row-fluid inmediato de los botones. */
.hero-home .row-fluid:has(> div > .hero-home__cta-primary) {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.hero-home .row-fluid:has(> div > .hero-home__cta-primary) > div {
  flex: 0 0 auto;
  padding: 0;
  width: auto;
}

.hero-home__cta-primary,
.hero-home__cta-whatsapp {
  margin-bottom: 2.5rem;
}

.hero-home__cta-primary .button-wrapper,
.hero-home__cta-whatsapp .button-wrapper {
  margin: 0;
}
 
.hero-home__cta-primary .button,
.hero-home__cta-whatsapp .button {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: var(--font-size-button);
    font-weight: 400;
    padding: 9px 20px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
    font-family: var(--font-family-secondary);
}

/* Primario: Cotizar Mi Prototipo */

.hero-home__cta-primary .button {
  background-color: var(--accent-color);
  color: #ffffff;
}

.hero-home__cta-primary .button:hover,
.hero-home__cta-primary .button:focus {
  background-color: color-mix(in srgb, var(--accent-color) 85%, #000);
  transform: translateY(-1px);
  border-radius: 999px !important;
}

/* Secundario: Hablar por WhatsApp (glass + ícono vía CSS) */

.hero-home__cta-whatsapp .button {
  background-color: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.hero-home__cta-whatsapp .button:hover,
.hero-home__cta-whatsapp .button:focus {
  background-color: rgba(255, 255, 255, 0.16);
  border-radius: 999px !important;
}

.hero-home__cta-whatsapp .button::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 16px;
  margin-right: 0.5rem;
  width: 16px;
}

/* Badges (modules/icon-text-list, extra_classes="hero-home__badges") */

.hero-home__badges {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

.hero-home__badges .icon-text-list__text {
  color: rgb(255 255 255 / 50%);
  font-family: var(--font-family-secondary);
  font-weight: 100;
  font-size: 14px;
}

/* Indicador de scroll (decorativo, CSS puro) */

.hero-home::after {
  animation: hero-home-bounce 2s ease-in-out infinite;
  bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  content: "↓";
  font-size: 1.25rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

@keyframes hero-home-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ── Responsive: mobile (≤767px) ─────────────────────────── */

@media (max-width: 767px) {
  .hero-home {
    padding-bottom: 3rem !important;
    padding-top: 7rem !important;
  }

  .hero-home::before {
    background: linear-gradient(0deg, rgba(7, 23, 48, 0.85) 20%, rgba(7, 23, 48, 0.45) 100%);
  }

  .hero-home h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero-home .row-fluid:has(> div > .hero-home__cta-primary) {
    flex-direction: column;
  }

  .hero-home .row-fluid:has(> div > .hero-home__cta-primary) > div {
    width: 100%;
  }

  .hero-home__cta-primary .button-wrapper,
  .hero-home__cta-whatsapp .button-wrapper {
    text-align: center;
  }

  .hero-home__cta-primary{
    margin-bottom: 0rem;
  }
  .hero-home__cta-whatsapp {
    margin-bottom: 40px;
  }
  .hero-home__cta-primary .button,
  .hero-home__cta-whatsapp .button {
    justify-content: center;
    width: 100%;
  }

  .hero-home__badges {
    gap: 0.75rem 1.25rem;
  }

  .hero-home::after {
    display: none;
  }
}
/* ============================================================
   HERO MODELO
   Hero de página de detalle de modelo (imagen de fondo por modelo).
   Mismo patrón que hero-home: overlay oscuro + contenido pegado abajo.
   La fila principal (texto width=8 + botones width=4) usa
   align-items:flex-end para anclar ambas columnas al mismo borde
   inferior. .row-fluid ya es flex por defecto (HubSpot), así que
   aplicarlo a TODOS los row-fluid de la sección es seguro: en filas
   de una sola columna (eyebrow/título/descripción/cada botón) no
   tiene efecto visible.
   ============================================================ */

.hero-modelo {
  background-color: var(--primary-color-black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  position: relative;
}

.hero-modelo::before {
  background: linear-gradient(0deg, rgba(7, 23, 48, 0.85) 0%, rgba(7, 23, 48, 0.35) 45%, rgba(7, 23, 48, 0.15) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-modelo .row-fluid {
  align-items: flex-end;
  position: relative;
}

/* Eyebrow (tipo de vivienda, clase escrita directo en el html del rich_text) */

.hero-modelo .hero-modelo__eyebrow {
  color: var(--secondary-color);
  font-family: var(--font-family-secondary);
  font-size: 13px !important;
  font-weight: 300;
  letter-spacing: var(--letter-spacing-base);
  margin: 0 0 1rem;
  text-transform: uppercase;
}

/* Título */

.hero-modelo h1 {
  color: #ffffff;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: var(--font-weight-heading-black);
  line-height: 1.2;
  margin: 0 0 1rem;
}

/* Descripción */

.hero-modelo p {
  color: rgb(255 255 255 / 70%);
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: 100;
  line-height: 1.5;
  margin: 0;
  max-width: 620px;
}

/* Botones (columna derecha; alineados a la derecha vía Style tab del módulo) */

.hero-modelo__cta-primary {
  margin-bottom: 0.75rem;
}

.hero-modelo__cta-primary .button,
.hero-modelo__cta-secondary .button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--font-family-secondary);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  width: 300px;
  justify-content: center;
}

/* Primario: Descargar Brochure Completo */

.hero-modelo__cta-primary .button {
  background-color: var(--accent-color);
  color: #ffffff;
}

.hero-modelo__cta-primary .button:hover,
.hero-modelo__cta-primary .button:focus {
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--accent-color) 85%, #000);
}

.hero-modelo__cta-primary .button::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 15px;
  margin-right: 0.5rem;
  width: 15px;
}

/* Secundario: Recorrido Virtual 360° (glass + ícono play vía CSS) */

.hero-modelo__cta-secondary .button {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.hero-modelo__cta-secondary .button:hover,
.hero-modelo__cta-secondary .button:focus {
  background-color: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.hero-modelo__cta-secondary .button::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpolygon points='6 4 20 12 6 20 6 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 13px;
  margin-right: 0.5rem;
  width: 13px;
}

/* ── Responsive: mobile (≤767px) ─────────────────────────── */

@media (max-width: 767px) {
  .hero-modelo {
    padding-bottom: 3rem !important;
    padding-top: 7rem !important;
  }

  .hero-modelo::before {
    background: linear-gradient(0deg, rgba(7, 23, 48, 0.85) 20%, rgba(7, 23, 48, 0.45) 100%);
  }

  .hero-modelo h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .hero-modelo .row-fluid {
    align-items: flex-start;
  }

  .hero-modelo__cta-primary {
    margin-top: 30px;
  }
  .hero-modelo__cta-primary .button,
  .hero-modelo__cta-secondary .button {
    justify-content: center;
    width: 100%;
  }
}
/* ============================================================
   DETALLE DE MODELO
   2 columnas (8/4): contenido del modelo | sidebar sticky
   (modules/modelo-datos).
   ============================================================ */

/* Sidebar sticky — por qué va en el row-fluid-wrapper y no en la columna:
   position:sticky necesita que su elemento se quede MÁS BAJO que su
   contenedor directo, para tener margen donde "moverse" al scrollear.
   La columna derecha (dnd_column offset=8 width=4) se estira con
   align-items:stretch en el .row-fluid exterior para igualar la altura
   de la columna izquierda (mucho más larga) — pero si el sticky se pone
   en ESA misma columna ya estirada, columna y contenedor miden exactamente
   lo mismo y no queda margen: se ve "pegado" desde el inicio sin rango
   de scroll real. La solución es aplicar sticky un nivel más adentro, en
   el .row-fluid-wrapper (hijo directo de la columna) que SÍ mantiene su
   alto natural (el del módulo) mientras su padre —la columna, ahora alta—
   es quien le da el margen para moverse.
   [data-x="8"][data-w="4"] identifica la columna exacta (HubSpot pone
   esos atributos en cada dnd_column según su offset/width). */

.detalle-modelo .row-fluid {
  align-items: stretch;
}

.detalle-modelo [data-x="8"][data-w="4"].dnd-column > .row-fluid-wrapper {
  position: sticky;
  top: 100px;
}

/* Mobile (≤767px, breakpoint en el que HubSpot apila las columnas):
   sin sticky (no aplica apiladas) y la columna del sidebar se muestra
   PRIMERO, antes que todo el contenido largo del modelo. */

@media (max-width: 767px) {
  .detalle-modelo [data-x="8"][data-w="4"].dnd-column > .row-fluid-wrapper {
    position: static;
  }

  .detalle-modelo [data-x="8"][data-w="4"].dnd-column {
    order: -1;
  }

  .detalle-modelo [data-x="0"][data-w="8"].dnd-column {
    order: 1;
  }
}

.detalle-modelo__eyebrow-block {
  margin-bottom: 1.5rem;
}

.detalle-modelo__intro {
  margin-bottom: 3rem;
}

.detalle-modelo__intro p {
  color: var(--text-color);
  font-size: var(--font-size-base);
  line-height: 1.65;
  margin: 0;
}

.detalle-modelo__section-break {
  margin-top: 3.5rem;
}

.detalle-modelo__gallery-caption p {
  color: var(--text-color);
  font-size: 0.9375rem;
  margin: 0;
}
.detalle-modelo__faq .faq{
  width: 100%;
  margin: 0px auto;
}

/* Amenidades — feature-grid a 1 columna (Style > Layout), solo agrega
   el borde de la card (el fondo blanco/radio ya vienen del Style tab) */

.detalle-modelo__amenidades-grid .feature-grid {
  border: 1px solid rgba(13, 39, 84, 0.08);
  margin-top: 1.5rem;
}

/* Respaldo Vinte — stat-row como 2 cards separadas (gap) en vez de
   la card continua con divisor interno que usa la home. Se sobreescribe
   aquí porque es específico de esta sección; la instancia de la home
   (respaldo-vinte.html) no lleva esta clase y no se ve afectada. */

.detalle-modelo__stats .stat-row {
  background: none;
  border: none;
  border-radius: 0;
  gap: 1rem;
}

.detalle-modelo__stats .stat-row__item {
  background-color: #ffffff;
  border: 1px solid rgba(13, 39, 84, 0.08);
  border-radius: 16px;
}

/* Plusvalía e inversión — infografía */

.detalle-modelo__infografia {
  margin: 1.5rem 0;
}

.detalle-modelo__infografia img {
  border-radius: 16px;
  display: block;
  width: 100%;
}

/* Financiamiento — grid de créditos escrito directo en el HTML del
   rich_text (sin módulo aparte, es contenido estático que no se repite) */

.detalle-modelo__credit-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.5rem;
}

.detalle-modelo__credit-item {
  align-items: center;
  background-color: #ffffff;
  border: 1px solid rgba(13, 39, 84, 0.08);
  border-radius: 12px;
  color: var(--heading-color);
  display: flex;
  font-family: var(--font-family-secondary);
  font-size: 12px;
  font-weight: 600;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
}

.detalle-modelo__credit-check {
  color: var(--secondary-color);
  flex-shrink: 0;
  font-weight: 700;
}

/* ── Responsive: mobile (≤767px) ─────────────────────────── */

@media (max-width: 767px) {
  .detalle-modelo__credit-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   RESPALDO VINTE
   Imagen + badge overlay (dato destacado) + título/descripción
   + fila de estadísticas.
   ============================================================ */

/* ":has(> div > .marca)", no ":has(.marca)" a secas: la imagen vive
   anidada dentro de dos row-fluid (la fila de 2 columnas "Fila 1" Y la
   fila interna de la columna que envuelve solo la imagen). Sin el
   combinador ">" ambos hacen match — el de "Fila 1" también se volvería
   position:relative, rompiendo el contexto de posicionamiento del badge
   si esa fila alguna vez necesita overflow/transform propios. */
.respaldo-vinte .row-fluid:has(> div > .respaldo-vinte__image) {
  position: relative;
}

.respaldo-vinte__image img {
  border-radius: 4px;
  display: block;
  width: 100%;
}

/* Badge: dark box overlapping la esquina inferior derecha de la imagen */

.respaldo-vinte__badge {
  background-color: var(--primary-color);
  border-radius: 4px;
  bottom: -24px;
  padding: 1.25rem 1.5rem;
  position: absolute;
  right: 24px;
  width: 180px;
}

.respaldo-vinte__badge p {
  color: #ffffff;
  font-size: 0.8125rem;
  line-height: 1.4;
  margin: 0;
}

.respaldo-vinte__badge strong {
  color: #ffffff;
  display: block;
  font-size: 1.75rem;
  font-weight: var(--font-weight-heading-black);
  margin-bottom: 0.25rem;
}

/* Descripción de la columna derecha */

.respaldo-vinte p {
  color: var(--text-color);
  font-size: var(--font-size-base);
  line-height: 1.65;
}

/* Fila de estadísticas: separada del resto, ancho completo */

.respaldo-vinte__stats {
  margin: 10px 0px 60px;
}

/* ── Responsive: mobile (≤767px) ─────────────────────────── */

@media (max-width: 767px) {
  .respaldo-vinte__badge {
    padding: 1rem 1.25rem;
    right: 16px;
    width: 150px;
  }

  .respaldo-vinte__stats {
    margin: 10px 0px 30px;
  }
}
/* ============================================================
   AMENIDADES HOME — TOP
   Encabezado: título+subtítulo (izquierda) + descripción (derecha).
   ============================================================ */

.amenidades-home-top p {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .amenidades-home-top p {
    max-width: none;
  }
}

.amenidades__heading {
  margin-bottom: 2.5rem;
  text-align: center;
}

.amenidades__heading .title-subtitle__eyebrow {
  justify-content: center;
}
.cta_border-transparent{
  
}
/* ============================================================
   UBICACIÓN
   2 columnas: encabezado + 2 bloques info + botón | mapa con zoom.
   ============================================================ */

.ubicacion p {
  color: var(--text-color);
}

.ubicacion .feature-grid {
  margin-top: 1.75rem;
}

.ubicacion .feature-grid__title {
  font-size: 1rem;
}

/* Botón outline con ícono de pin vía CSS */
.ubicacion__cta .button::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D2754' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
}

/* Mapa */

.ubicacion .image-zoom {
  height: 100%;
  min-height: 420px;
}

.ubicacion .image-zoom__img {
  height: 100%;
  min-height: 420px;
}

/* ── Responsive: mobile (≤767px) ─────────────────────────── */

@media (max-width: 767px) {
  .ubicacion .image-zoom,
  .ubicacion .image-zoom__img {
    min-height: 260px;
  }
  .ubicacion__cta .button {
    margin-bottom: 30px;
  }
}
/* ============================================================
   MODELOS DISPONIBLES
   Encabezado (título+subtítulo | descripción) + grid de modelos.
   ============================================================ */

.modelos-disponibles__grid {
  margin-top: 3rem;
}
.modelos-disponibles__legal p {
  font-size: var(--font-size-disclaimer);
  color: var(--legal-color);
  margin-top: 1rem;
  text-align: center;
}

@media (max-width: 767px) {
  .modelos-disponibles__grid {
    margin-top: 2rem;
  }
}
/* ============================================================
   CRÉDITO HIPOTECARIO
   2 columnas: listado de pasos + CTA | panel de inversión (fondo navy).
   El panel navy se logra con :has() porque dnd_column no acepta
   class/extra_classes — se detecta por el módulo marcador
   .credito-hipotecario__info-heading que vive dentro de esa columna.
   :not(:has(.dnd-column)) es necesario para no capturar también la
   columna exterior (width=12) que envuelve ambas columnas de la fila.
   ============================================================ */

.credito-hipotecario p {
  color: var(--text-color);
}

/* Botón CTA principal (izquierda) — pill accent, mismo patrón que hero-home */

.credito-hipotecario__cta .button-wrapper {
  margin: 1rem 0 0;
}

.credito-hipotecario__cta .button {
  background-color: var(--accent-color);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-button);
  font-weight: 400;
  padding: 0.9rem 1.75rem;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.credito-hipotecario__cta .button:hover,
.credito-hipotecario__cta .button:focus {
  background-color: color-mix(in srgb, var(--accent-color) 85%, #000);
  transform: translateY(-1px);
  border-radius: 999px;
}

/* Panel derecho — fondo navy.
   :not(:has(.dnd-column)) excluye a la columna exterior (width=12): esa
   también "tiene" el marcador como descendiente (está más arriba en el
   árbol), pero además contiene columnas anidadas — la columna interna
   de la derecha (width=6) es la única sin columnas anidadas dentro. */

.credito-hipotecario .dnd-column:has(.credito-hipotecario__info-heading):not(:has(.dnd-column)) {
  background-color: #0D2754;
  border-radius: 20px;
  overflow: hidden;
  padding: 3rem 2.5rem !important;
}

.credito-hipotecario .dnd-column:has(.credito-hipotecario__info-heading):not(:has(.dnd-column)) p {
  color: rgba(255, 255, 255, 0.65);
}

.credito-hipotecario__infografia {
  margin: 1.5rem 0;
}

.credito-hipotecario__infografia img {
  display: block;
  width: 100%;
}

.credito-hipotecario__disclaimer p {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 0.6875rem;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.credito-hipotecario__cta-invest .button-wrapper {
  margin: 0;
}

.credito-hipotecario__cta-invest .button {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  display: block;
  font-family: var(--font-family-secondary);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.credito-hipotecario__cta-invest .button:hover,
.credito-hipotecario__cta-invest .button:focus {
  background-color: rgba(255, 255, 255, 0.16);
  border-radius: 10px;
}

/* ── Responsive: mobile (≤767px) ─────────────────────────── */

@media (max-width: 767px) {
  .credito-hipotecario .dnd-column:has(.credito-hipotecario__info-heading):not(:has(.dnd-column)) {
    margin-top: 3rem;
    padding: 2.5rem 1.5rem !important;
  }
}
/* ============================================================
   PREGUNTAS FRECUENTES
   Columna centrada (offset=3, width=6) con encabezado, acordeón
   (modules/faq) y CTA final. extra_classes en módulos custom cae
   en el .hs_cos_wrapper (ancestro), por eso los selectores de abajo
   son descendientes (ej. .preguntas-frecuentes__heading .title-subtitle__heading).
   ============================================================ */

.preguntas-frecuentes__heading {
  border-bottom: 1px solid rgba(13, 39, 84, 0.1);
  padding-bottom: 2.5rem;
}

.preguntas-frecuentes__heading .title-subtitle__heading {
  text-align: center;
}

/* El módulo FAQ trae su propio fondo/ancho (#F5F3EF, 85%) pensado para
   usarse suelto; aquí se integra al fondo de la sección a ancho completo. */

.preguntas-frecuentes__faq {
  border-bottom: 1px solid rgba(13, 39, 84, 0.1);
  padding-bottom: 2.5rem;
}

.preguntas-frecuentes__faq .faq {
  background-color: transparent;
  padding: 0;
  width: 100%;
}

.preguntas-frecuentes__cta-text {
  margin-top: 2.5rem;
  text-align: center;
}

.preguntas-frecuentes__cta-text p {
  color: var(--text-color);
  font-size: 0.9375rem;
  margin: 0;
}

.preguntas-frecuentes__cta-button {
  margin-top: 1rem;
  text-align: center;
}

.preguntas-frecuentes__cta-button .button-wrapper {
  display: inline-block;
}

.preguntas-frecuentes__cta-button .button {
  align-items: center;
  background-color: var(--primary-color);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-family: var(--font-family-secondary);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.preguntas-frecuentes__cta-button .button:hover,
.preguntas-frecuentes__cta-button .button:focus {
  background-color: color-mix(in srgb, var(--primary-color) 85%, #fff);
}

.preguntas-frecuentes__cta-button .button::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 15px;
  margin-right: 0.5rem;
  width: 15px;
}
/* ============================================================
   CONTACTO
   Fondo navy, 2 columnas: encabezado/imagen | card blanca con
   formulario de HubSpot. Card blanca vía :has() (mismo patrón que
   _credito-hipotecario.css): dnd_column no acepta class/extra_classes,
   así que se detecta la columna por el módulo marcador
   .contacto__form-heading, excluyendo la columna exterior (width=12)
   con :not(:has(.dnd-column)).
   ============================================================ */

.contacto p {
  color: rgba(255, 255, 255, 0.6);
}

.contacto__text p {
  margin: 0 0 2rem;
  max-width: 480px;
}

.contacto__image img {
  border-radius: 16px;
  display: block;
  width: 100%;
}

/* Card blanca con el formulario */

.contacto .dnd-column:has(.contacto__form-heading):not(:has(.dnd-column)) {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(7, 23, 48, 0.25);
  padding: 3rem !important;
}

.contacto .dnd-column:has(.contacto__form-heading):not(:has(.dnd-column)) p {
  color: var(--text-color);
}

.contacto__form-heading h3 {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: var(--font-weight-heading-black);
  margin: 0 0 1.5rem;
}

/* Formulario HubSpot (@hubspot/form) */

.contacto__form .hs-form-field {
  margin-bottom: 1.25rem;
}

.contacto__form label {
  color: var(--heading-color);
  display: block;
  font-family: var(--font-family-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contacto__form .hs-form-required {
  color: var(--accent-color);
}

.contacto__form input,
.contacto__form select,
.contacto__form textarea {
  background-color: #F9F6F0 !important;
  border: 1px solid rgb(22 22 22 / 9%) !important;
  border-radius: 13px !important;
  color: var(--heading-color) !important;
  font-family: var(--font-family-secondary);
  font-size: 14px !important;
  padding: 10px 10px !important;
}

.contacto__form input:focus,
.contacto__form select:focus,
.contacto__form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.contacto__form fieldset {
  max-width: 100% !important;
}

.contacto__form fieldset.form-columns-2 {
  display: flex;
  gap: 1rem;
}

.contacto__form fieldset.form-columns-2 .hs-form-field {
  flex: 1 1 0;
  width: auto !important;
}

.contacto__form .legal-consent-container {
  color: var(--text-color);
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.contacto__form .legal-consent-container a {
  color: var(--primary-color);
}

.contacto__form .hs-form-booleancheckbox-display {
  align-items: flex-start;
  display: flex;
  gap: 0.5rem;
}

.contacto__form .hs-form-booleancheckbox-display input {
  margin-top: 0.2rem;
  width: auto;
}

.contacto__form .hs-button {
  background-color: var(--accent-color);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-family-secondary);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
  transition: background-color 0.2s ease;
  width: 100%;
}

.contacto__form .hs-button:hover {
  background-color: color-mix(in srgb, var(--accent-color) 85%, #000);
}

.contacto__form .hs-error-msgs {
  color: var(--accent-color);
  font-size: 0.75rem;
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
}

.contacto__disclaimer p {
  color: rgba(13, 39, 84, 0.4) !important;
  font-size: 0.75rem;
  margin: 1.25rem 0 0;
  text-align: center;
}

/* ── Responsive: mobile (≤767px) ─────────────────────────── */

@media (max-width: 767px) {
  .contacto .dnd-column:has(.contacto__form-heading):not(:has(.dnd-column)) {
    margin-top: 2.5rem;
    padding: 2rem !important;
  }

  .contacto__form fieldset.form-columns-2 {
    flex-direction: column;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* Reveal-on-scroll: fade in de abajo hacia arriba, solo CSS (sin JS/módulo).
   Se aplica con extra_classes="fade-in-up" en cualquier dnd_module. */

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(48px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .fade-in-up {
    animation: fade-in-up linear both;
    animation-range: entry 0% entry 45%;
    animation-timeline: view();
  }
}

html {
  scroll-behavior: smooth;
}
body *{
  font-family: "Playfair Display", serif;
}
p {
  font-family: "Plus Jakarta Sans", sans-serif !important;
}