/* Theme base styles */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&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: #E0001A;
  --secondary-color: #152638;
  --accent-color: #FFEC01;
  --text-color: #737491;
  --heading-color: #171717;
  --font-family-base: 'Roboto', 'Cabin', sans-serif;
  --font-size-base: 16px;
  --font-size-disclaimer:10px;
  --font-size-heading: clamp(30px, 2.5vw, 52px);
  --font-size-subheading: 40px;
  --letter-spacing-base: 5px;
  --font-weight-base: 400;
  --font-weight-thin: 200;
  --font-weight-heading: 500;
  --font-weight-heading-black: 700;
}

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

*, *:before, *:after {
  box-sizing: border-box;
}

/* Scroll suave global — el módulo section-anchor complementa
   esto con un offset exacto del header vía --header-height */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
/*! 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;
}
/* 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;
}

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: 30px 0px 0px;
}

form .hs-richtext img {
  max-width: 100% !important;
}
.hs-fieldtype-date .input .hs-dateinput:before{
  display:none;
}
/* 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
*/


/* 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;
  }
}

/* ============================================================
   SITE HEADER
   Estructura: topbar (rojo) + 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;
}

/* ── Topbar ──────────────────────────────────────────────── */

.topbar {
  background-color: var(--primary-color);
}

.topbar__container {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 1280px;
  padding-bottom: 0.2rem;
  padding-top: 0.2rem;
}

/* Módulo rich_text dentro del topbar */
.topbar p,
.topbar .hs_cos_wrapper p {
  align-items: center;
  color: var(--secondary-color);
  display: flex;
  font-size: 14px;
  font-weight: 400;
  gap: 0.4rem;
  letter-spacing: 0.01em;
  margin: 0;
}

.topbar svg {
  flex-shrink: 0;
}

.topbar a {
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

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

.header__main {
  background-color: rgba(21, 38, 56, 0.55);
  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: #152638;
  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: #FFEC01;
}

.header__nav .menu__link--active-link {
  color: #FFEC01;
}

/* 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 ──────────────────────────────────────────────── */

.footer {
  background-color: #ffffff !important;
  border-top: 1px solid #d8dde6;
  margin-top: 0;
}

.footer__inner {
  padding-top: 28px;
  padding-bottom: 20px;
}

/* ── Row 1: Logos + Address ── */
.footer__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 20px;
}

/* Logos */
.footer__logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.footer__logo {
  display: block;
  /* Render grey by desaturating white/color logos */
  filter: grayscale(100%) opacity(0.45);
  height: auto;
  object-fit: contain;
}

.footer__logo--solare {
  width: 110px;
}

.footer__logo--vinte {
  width: 120px;
}

/* Address */
.footer__address {
  font-style: normal;
  font-size: 11px;
  line-height: 1.7;
  color: #9ca3af;
  text-align: right;
  max-width: 480px;
  font-weight: 300;
}

/* ── Row 2: Legal ── */
.footer__legal {
  border-top: 1px solid #e8ecf0;
  padding-top: 14px;
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.5;
  font-weight: 300;
}
.footer_legal span{
  
  color: #9ca3af;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .footer__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .footer__address {
    text-align: left;
  }
}
/* ── Sección: tamaño completo de viewport ────────────────── */

.dnd-section:has(.hero__title-module) {
  position: relative;
}

/* ── Overlay oscuro de izquierda a derecha ───────────────── */


/* El row-fluid debe quedar sobre el overlay */
.dnd-section:has(.hero__title-module) > .row-fluid {
  position: relative;
  z-index: 2;
}

/* ── Columna de contenido: espaciado vertical ────────────── */

.dnd-section:has(.hero__title-module) .dnd-column {
  padding:0;
}

/* ── Título H1 ───────────────────────────────────────────── */

.hero__title-module h1 {
  color: #ffffff;
  font-size: clamp(35px, 53px, 60px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

/* ── Subtítulo ───────────────────────────────────────────── */

.hero__subtitle-module p {
  color: #ffffff;
  font-size: clamp(14px, 1.3vw, 1.2rem);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
  opacity: 0.92;
}

/* ── Divisor amarillo + texto secundario ─────────────────── */

/* Línea divisora: generada con ::before en el wrapper del módulo */
.hero__divider-module::after {
  background-color: var(--accent-color, #FFEC01);
  border-radius: 2px;
  content: "";
  display: block;
  height: 3px;
  margin-bottom: 0.75rem;
  width: 100px;
}

.hero__divider-module p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--font-size-base);
  line-height: 1.65;
  margin: 0;
  max-width: 440px;
  font-weight: 200;
  padding: 40px 0px 15px;
}

/* ── Botón CTA dentro del hero ───────────────────────────── */

.hero__cta-module .button-wrapper {
  margin-top: 5px;
}

.hero__cta-module .button {
  background-color: var(--primary-color, #E0001A);
  border-radius: 4px;
  color: #ffffff !important;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.875rem 2rem;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.hero__cta-module .button:hover,
.hero__cta-module .button:focus {
  background-color: #b5001a;
  transform: translateY(-2px);
}

.hero__cta-module .button:active {
  transform: translateY(0);
}

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

@media (max-width: 767px) {
  .dnd-section:has(.hero__title-module) {
    min-height: 80svh;
    display: flex;
    align-content: center;
    align-items: center;
  }

  /* En mobile el gradiente cubre todo con opacidad uniforme */
  .dnd-section:has(.hero__title-module)::before {
    background: rgba(21, 38, 56, 0.44);
  }

  /* La columna ocupa el ancho completo en mobile */
  .dnd-section:has(.hero__title-module) .dnd-column {
    padding-bottom: 0rem;
    width: 100% !important;
  }

  .hero__title-module h1 {
    font-size: 35px;
  }

  .hero__subtitle-module p,
  .hero__divider-module p {
    max-width: 100%;
  }
}
/* ============================================================
   SECCIÓN PATRIMONIO – "Tu patrimonio en manos expertas"
/* ── Sección: padding vertical ──────────────────────────── */

.dnd-section:has(.patrimonio__text-module) {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* ── Columna de texto: alineación vertical centrada ─────── */

.dnd-section:has(.patrimonio__text-module) .dnd-column:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Título H2 ───────────────────────────────────────────── */

.patrimonio__text-module h2 {
  color: #ffffff;
  font-size: var(--font-size-heading);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

/* ── Texto introductorio ─────────────────────────────────── */

.patrimonio__intro {
  color: rgba(255, 255, 255, 0.80);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 0.8rem;
  max-width: 480px;
}

/* ── Lista de bullets ────────────────────────────────────── */

.patrimonio__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.patrimonio__list li {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--font-size-base);
  line-height: 1.4;
  max-width: 460px;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 1rem;
}

/* Bullet personalizado: punto rojo */
.patrimonio__list li::before {
  background-color: #ffffff;
  border-radius: 50%;
  content: "";
  display: block;
  height: 6px;
  left: 0;
  position: absolute;
  top: 0.55em;
  width: 6px;
}

/* ── Highlight box: plusvalía ────────────────────────────── */

.patrimonio__highlight {
  border: 1.5px solid var(--primary-color, #E0001A);
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.875rem;
  padding: 0.625rem 1.125rem;
}

/* ── Disclaimer ──────────────────────────────────────────── */

.patrimonio__disclaimer {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  line-height: 1.5;
  margin: 0;
}

/* ── Columna de imagen ───────────────────────────────────── */

.patrimonio__image-module {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}

.patrimonio__image-module img {
  border-radius: 8px;
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

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

@media (max-width: 767px) {
  .dnd-section:has(.patrimonio__text-module) {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .patrimonio__intro,
  .patrimonio__list li,
  .patrimonio__disclaimer {
    max-width: 100%;
  }

  /* La imagen va debajo del texto en mobile */
  .patrimonio__image-module {
    margin-top: 2rem;
  }

  .patrimonio__image-module img {
    border-radius: 6px;
  }
}

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

@media (min-width: 768px) and (max-width: 1023px) {
  .patrimonio__text-module h2 {
    font-size: 1.875rem;
  }
}
/* ── Ubicación ──────────────────────────────────────────── */

/* ── Mapa: imagen full-width con bordes redondeados ─────── */

.ubicacion__map-module img {
  border-radius: 12px;
  display: block;
  height: auto;
  width: 100%;
}

/* ── Columna EDGE: fondo blanco, imagen centrada ────────── */

/* El layout NO tiene max-width centrado → la columna empieza desde el borde
   del viewport, así que background-color aquí ES naturalmente full-bleed. */
.ubicacion__edge-module {
  background-color: #ffffff;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
  width: 100%;
}

.ubicacion__edge-module img {
  display: block;
  height: auto;
  max-width: 260px;
  width: 100%;
}

/* ── Columna tecnología: texto en blanco ────────────────── */

.ubicacion__tech-module {
  padding: 0rem 3rem;
}
.ubicacion__tech-module h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--font-weight-heading);
  line-height: 1.2;
  margin: 0 0 1.25rem;
}

.ubicacion__tech-module p {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--font-size-base);
  line-height: 1.7;
  margin: 0;
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 767px) {
  .dnd-column:has(.ubicacion__edge-module) {
    padding: 2.5rem 1.5rem;
  }

  .ubicacion__edge-module {
    padding: 2rem 1.5rem;
  }

  .ubicacion__tech-module {
    padding: 2rem 1.5rem;
  }
}
/* ── Sección Contacto ───────────────────────────────────── */

/* ── Columna izquierda ──────────────────────────────────── */

.contacto__heading-module h2 {
  color: var(--secondary-color, #152638);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: var(--font-weight-heading);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.contacto__heading-module p {
  color: #5a6a7a;
  font-size: var(--font-size-base);
  line-height: 1.65;
  margin: 0;
}

/* Botón outlined oscuro */
.contacto__btn-module {
  margin: 1.75rem 0 1.5rem;
  display:none !important;
}

.contacto__btn-module a,
a.btn-outline-dark {
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  color: var(--secondary-color, #152638);
  display: inline-block;
  font-size: var(--font-size-base);
  font-weight: 700 !important;
  padding: 10px 50px;
  text-decoration: none !important;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.contacto__btn-module a:hover,
a.btn-outline-dark:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* ── Columna derecha: tarjeta del formulario ────────────── */

.contacto__form-module {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.07);
  padding: 1.5rem 1.5rem;
}

/* Título del formulario ("FORMULARIO DE CONTACTO") */
.contacto__form-module .form-title,
.contacto__form-module h3 {
  color: var(--primary-color, #E0001A);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
  padding: 0px 0px 16px;
  margin-bottom: 0 !important;
}

/* ── Campos ─────────────────────────────────────────────── */

.contacto__form-module .hs-form-field {
  margin-bottom: 10px;
}

.contacto__form-module .hs-form-field > label {
  color: var(--secondary-color, #152638);
  display: block;
  font-size: var(--font-size-base);
  font-weight: 500;
  margin-bottom: 0px;
}

.contacto__form-module input.hs-input,
.contacto__form-module select.hs-input,
.contacto__form-module textarea.hs-input {
  background-color: #F4F5F7;
  border: 1px solid #F4F5F7;
  border-radius: 4px;
  color: var(--text-color, #2D2D2D);
  font-size: var(--font-size-base);
  padding: 5px 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100% !important;
}

.contacto__form-module input.hs-input:focus,
.contacto__form-module select.hs-input:focus,
.contacto__form-module textarea.hs-input:focus {
  border-color: var(--secondary-color, #152638);
  box-shadow: 0 0 0 3px rgba(21, 38, 56, 0.08);
  outline: none;
}

form .legal-consent-container .hs-richtext,
form .legal-consent-container .hs-richtext p {
    font-size: 10px;
    margin: 0px 0px 10px; 
    line-height: 1.1;
}

/* Dropdown chevron */
.contacto__form-module select.hs-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23152638' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

/* Layout 2 columnas para Nombre+Apellido y Correo+Teléfono */
.contacto__form-module .hs-form .form-columns-2 {
  display: flex;
  gap: 1rem;
}

.contacto__form-module .hs-form .form-columns-2 .hs-form-field {
  flex: 1;
  min-width: 0;
}

/* Checkbox aviso de privacidad */
.contacto__form-module .legal-consent-container,
.contacto__form-module .hs-form-field.hs-fieldtype-booleancheckbox {
  margin-bottom: 1.25rem;
}

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

.contacto__form-module .hs-form-booleancheckbox input[type="checkbox"],
.contacto__form-module .legal-consent-container input[type="checkbox"] {
  accent-color: var(--primary-color, #E0001A);
  flex-shrink: 0;
  height: 15px;
  width: 17px !important;
  margin: 0;
}
.legal-consent-container .hs-form-booleancheckbox-display>span {
  margin-left: 10px !important;
}

.contacto__form-module .hs-form-booleancheckbox label,
.contacto__form-module .legal-consent-container label,
.contacto__form-module .legal-consent-container p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1;
  margin: 0 !important;
  gap: 0;
}

/* ── Botón submit ────────────────────────────────────────── */

.contacto__form-module .hs-submit,
.contacto__form-module .hs_submit {
  margin-top: 0.25rem;
}

.contacto__form-module .hs-button,
.contacto__form-module input[type="submit"] {
  background-color: var(--primary-color, #E0001A);
  border: none;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 1.5rem;
  transition: background-color 0.2s ease;
  width: 100%;
}

.contacto__form-module .hs-button:hover,
.contacto__form-module input[type="submit"]:hover {
  background-color: #b5001a;
}

/* Mensajes de error */
.contacto__form-module .hs-error-msg {
  color: var(--primary-color, #E0001A);
  font-size:11px;
  margin-top: 0.25rem;
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 767px) {
  .contacto__form-module {
    padding: 1.5rem 1.25rem;
  }

  .contacto__form-module .hs-form .form-columns-2 {
    flex-direction: column;
    gap: 0;
  }
}
/* ── Artículos Section ───────────────────────────────────── */

/* Section heading "Artículos" */
.dnd-module:has(.articulos__heading-module) h2 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: var(--font-weight-heading);
  line-height: 1.2;
  margin: 0 0 2rem;
}
/* ── Prototipos Page ──────────────────────────────────────── */

/* ── Overflow visible en el hero para que las imágenes
   desborden hacia abajo del fondo oscuro ────────────────── */

.body-container--prototipos .dnd-section:first-child,
.body-container--prototipos .dnd-section:first-child .dnd-column,
.body-container--prototipos .dnd-section:first-child .row-fluid,
.body-container--prototipos .dnd-section:first-child [class^="span"],
.body-container--prototipos .dnd-section:first-child [class*=" span"],
.body-container--prototipos .dnd-section:first-child .dnd-row {
  overflow: visible !important;
}

/* ── H1 – Título del prototipo ────────────────────────────── */

.dnd-module:has(.protoheader__title-module) h1 {
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: var(--font-weight-heading);
  line-height: 1.1;
  margin: 0px 0px 50px;
}

/* ── Etiqueta/overline (aparece debajo del título) ────────── */

.dnd-module:has(.protoheader__label-module) p {
  color: rgb(255, 255, 255);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-thin);
  letter-spacing: 7px;
  margin: 0 0 10px;
  text-transform: uppercase;
}

/* ── Descripción / richtext ───────────────────────────────── */

.dnd-module:has(.protoheader__body-module) p {
  color: rgb(255, 255, 255);
  font-size: var(--font-size-base);
  line-height: 1.4;
  margin: 0 0 1.2rem;
  max-width: 45ch;
}

/* ── Responsive Hero ─────────────────────────────────────── */

@media (max-width: 767px) {
  .dnd-module:has(.protoheader__body-module) p {
    max-width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════
   SECCIÓN DETALLES
   ══════════════════════════════════════════════════════════ */

/* H2 – Nombre del prototipo */
.dnd-module:has(.proto-detalles__title-module) h2 {
  color: var(--heading-color, #171717);
  font-size: 1.625rem;
  font-weight: var(--font-weight-base);
  line-height: 1.2;
  margin: 0 0 0.3rem;
}

/* Etiqueta roja "DETALLES" */
.dnd-module:has(.proto-detalles__label-module) p {
  color: var(--primary-color, #E0001A);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   SECCIÓN CERTIFICACIÓN EDGE
   ══════════════════════════════════════════════════════════ */

/* Título "CERTIFICACIÓN EDGE" (etiqueta roja + hr) */
.dnd-module:has(.cert-edge__title-module) p {
  color: var(--primary-color, #E0001A);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0 0 0.875rem;
  text-transform: uppercase;
}

.dnd-module:has(.cert-edge__title-module) hr {
  border: none;
  border-top: 1px solid #E5E5E5;
  margin: 0;
}

/* Logo EDGE */
.dnd-module:has(.cert-edge__logo-module) img {
  display: block;
  height: auto;
  max-width: 200px;
  width: 100%;
  margin: 24px 0;
}

/* ══════════════════════════════════════════════════════════
   SECCIÓN OVERVIEW
   ══════════════════════════════════════════════════════════ */

/* Etiqueta "OVERVIEW" con border-top */
.overview-label {
  border-bottom: 1.5px solid #E5E5E5;
  color: var(--primary-color, #E0001A);
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: var(--letter-spacing-base);
  margin: 0px 0px 20px;
  padding: 0px 0px 15px;
  text-transform: uppercase;
}

/* Precio H2 */
.dnd-module:has(.proto-overview__content-module) h2 {
  color: var(--heading-color, #171717);
  font-size: var(--font-size-subheading);
  font-weight: var(--font-weight-heading);
  line-height: 1.2;
  margin: 0 0 1.25rem;
}

/* Texto de disclaimer */
.dnd-module:has(.proto-overview__content-module) p:not(.overview-label) {
  color: var(--text-color, #737491);
  font-size: var(--font-size-base);
  line-height: 1.7;
  margin: 0;
}

/* Floor-plan: alineación vertical centrada */
.dnd-module:has(.proto-overview__floorplan-module) {
  align-items: center;
  display: flex;
}

/* ── Responsive EDGE / Overview ──────────────────────────── */

@media (max-width: 767px) {
  .dnd-module:has(.proto-overview__content-module) p:not(.overview-label) {
    margin-bottom: 30px;
  }
}
/* ── Landing Page ─────────────────────────────────────────── */

.header--no-navigation {
  background-color: #445160 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
/* ══════════════════════════════════════════════════════════
   HERO LANDING
   ══════════════════════════════════════════════════════════ */

/* Logo */
.landing-hero__logo-module {
  margin: 0 0 1.75rem;
}

.landing-hero__logo-module img {
  display: block;
  height: auto;
  max-width: 280px;
  width: 100%;
}

/* H1 */
.landing-hero__heading-module h1 {
  color: var(--secondary-color);
  font-size: 2rem;
  font-weight: var(--font-weight-heading-black);
  line-height: 1.1;
  margin: 0 0 1rem;
}

/* Badge/pill */
.landing-hero__badge-module p {
  margin: 0 0 1.5rem;
}

.landing-badge {
  border: 2px solid #E99700;
  border-radius: 999px;
  color: var(--heading-color);
  display: inline-block;
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.35rem 1.25rem;
  text-decoration: none !important;
}

/* Body text */
.landing-hero__body-module p {
  color: var(--text-color);
  font-size: var(--font-size-base);
  line-height: 1.8;
  margin: 0 0 1rem;
  max-width: 48ch;
}

/* Imagen hero (mujer) */
.landing-hero__img-module img {
  display: block;
  height: auto;
  max-width: 380px;
  width: 100%;
}

/* ── Formulario: secciones internas del form HubSpot ─────── */
/* Etiquetas de grupo: "DATOS DEL ALIADO VINTE", "DATOS DEL REFERIDO" */

.landing-hero__form-module .hs-richtext p,
.landing-hero__form-module .hs-richtext h3,
.landing-hero__form-module .hs-richtext h4 {
  color: var(--primary-color, #E0001A);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 1.5rem 0 0.875rem;
  text-transform: uppercase;
}

/* Primera etiqueta sin margen superior */
.landing-hero__form-module .hs-richtext:first-child p,
.landing-hero__form-module .hs-richtext:first-child h3,
.landing-hero__form-module .hs-richtext:first-child h4 {
  margin-top: 0;
}

/* ── Responsive Hero ─────────────────────────────────────── */

@media (max-width: 767px) {
  .header__container {
    justify-content: center;
  }
  .landing-hero__heading-module h1{
    text-align:center;
  }
  .landing-hero__body-module p {
    max-width: 100%;
  }

  .landing-hero__img-module img {
    max-width: 260px;
    margin: 0 auto;
  }
}

/* ══════════════════════════════════════════════════════════
   SECCIÓN PASOS – ¿Cómo funciona?
   ══════════════════════════════════════════════════════════ */

/* Número rojo cuadrado */
.lp-step__num {
  align-items: center;
  background-color: var(--primary-color, #E0001A);
  color: #ffffff;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  height: 64px;
  justify-content: center;
  line-height: 1;
  margin-bottom: 1.25rem;
  width: 64px;
}

/* Texto del paso */
.lp-steps__col-module p {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.1;
  margin: 0;
  max-width: 80%;
}

.lp-steps__col-module strong {
  color: #ffffff;
}

/* Disclaimer legal */
.lp-steps__disclaimer-module p {
  color: #ffffff;
  font-size: var(--font-size-disclaimer);
  line-height: 1;
  margin: 34px auto 0;
  padding-top: 0;
  text-align: center;
}

/* ── Responsive Steps ────────────────────────────────────── */

@media (max-width: 767px) {
  /* Cada paso ocupa ancho completo y centra el contenido */
  .lp-steps__col-module {
    text-align: center;
  }

  /* Número centrado horizontalmente */
  .lp-step__num {
    margin-left: auto;
    margin-right: auto;
  }
  .lp-steps__col-module p {
    max-width: 100%;
    padding-bottom:40px;
  }


  /* Disclaimer sigue centrado en móvil */
  .lp-steps__disclaimer-module p {
    text-align: center;
  }
}
/* 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
*/

*,html,body {
  font-family: "Barlow", sans-serif !important;
}
/* scroll-behavior: smooth → definido en generic/_reset.css (con prefers-reduced-motion) */
p, ul, ol,li {
    font-size: var(--font-size-base, 16px);
    color: var(--text-color);
}
strong, b {
  color: var(--heading-color);
}
.button, .button:hover, .button:focus, .button:active {
    border: none !important;
}

.header__cta .button,
.body-container--home .button,
.body-container--prototipos .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,
.body-container--home .button:hover,
.body-container--prototipos .button:hover {
  background-color: #b5001a;
  transform: translateY(-1px);
  border: none;
}
.header__cta .button:focus,
.body-container--home .button:focus,
.body-container--prototipos .button:focus {
  background-color: #b5001a;
  transform: translateY(-1px);
  border: none;
}

.body-container--home .button:active {
  transform: translateY(0);
}

.body-container--prototipos .button{
  font-size: 1rem;
  font-weight: 700;
}


.amenidades__heading-module h2{
  color: var(--heading-color);
  font-weight: var(--font-weight-heading);
  line-height: 1.1;
}
.body-container--home .form-title,
.body-container--home.submitted-message,
.body-container--home form,
.body-container--prototipos .form-title,
.body-container--prototipos.submitted-message,
.body-container--prototipos form,
.body-container--landing-page .form-title,
.body-container--landing-page.submitted-message,
.body-container--landing-page form {
    background-color: #ffffff;
    border: none;
}

/* ══════════════════════════════════════════════════════════
   BANNER RECOMIENDA Y GANA
   ══════════════════════════════════════════════════════════ */

.dnd-module:has(.recomienda__banner-module) img {
  border-radius: 16px;
  display: block;
  height: auto;
  width: 100%;
}