/* 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');

/* Global */
:root {
  --primary-color: #375CA1;
  --secondary-color: #CBD527;
  --primary-color-black: #33425D;
  --accent-color: #CBD527;
  --text-color: #33425D;
  --heading-color: #375CA1;
  --font-family-base: 'Barlow', 'Roboto', sans-serif;
  --font-size-base: 16px;
  --font-size-disclaimer:10px;
  --font-size-heading: clamp(clamp(22px, 2.2vw, 32px));
  --font-size-subheading: 40px;
  --font-size-button: 18px;
  --letter-spacing-base: 5px;
  --font-weight-base: 400;
  --font-weight-thin: 200;
  --font-weight-heading: 500;
  --font-weight-heading-black: 700;
}

/* 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
*/

/* 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;
  text-decoration: none !important;
}

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;
}


/* Botón primario – fondo color primario */
.btn-primary,button,
.button,
.hs-button {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  color: #ffffff;
  display: inline-block;
  font-size: var(--font-size-button);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 15px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover,
.btn-primary:focus,
button:hover,
.button:hover,
.hs-button:hover,
button:focus,
.button:focus,
.hs-button:focus {
  background-color: var(--primary-color-black);
  border-color: var(--primary-color-black);
  color: #ffffff !important;
  transform: translateY(-2px);
  text-decoration: none;
  font-weight: 600;
}

/* Botón outline – borde blanco */
.btn-outline {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  color: #ffffff !important;
  display: inline-block;
  font-size: var(--font-size-button);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 15px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn-outline:hover,
.btn-outline:focus {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff !important;
  transform: translateY(-2px);
  text-decoration: none;
  font-weight: 600;
}

/* Botón outline secundario – borde y texto blanco sobre fondos oscuros */
.btn-outline--secondary {
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 6px;
  color: #ffffff !important;
  display: inline-block;
  font-size: var(--font-size-button);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 15px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn-outline--secondary:hover,
.btn-outline--secondary:focus {
  background-color: #ffffff;
  color: var(--primary-color-black) !important;
  transform: translateY(-2px);
  text-decoration: none;
  font-weight: 600;
}
/* 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: topbar (color primario oscuro) + header__main (transparente/blur)
   Comportamiento: fixed, al hacer scroll agrega .is-scrolled con color primario
   ============================================================ */

/* ── Accesibilidad: skip link ────────────────────────────── */

.header__skip {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  top: -9999px;
  width: 1px;
}

.header__skip:focus {
  background: var(--primary-color);
  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-black);
}

.topbar__container {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 1280px;
  padding-bottom: 0.2rem;
  padding-top: 0.2rem;
}

.topbar p,
.topbar .hs_cos_wrapper p {
  align-items: center;
  color: #ffffff;
  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: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
}

.topbar a:hover,
.topbar a:focus,
.topbar a:active {
  text-decoration: none;
  font-weight: 600;
  color: var(--secondary-color);
}

/* ── Header main ─────────────────────────────────────────── */

.header__main {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  transition: background-color 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

/* Estado scrolled: color primario con transparencia */
.site-header.is-scrolled .header__main {
  background-color: rgba(55, 92, 161, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  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: 130px;
}

.header__logo img {
  display: block;
  height: auto;
  max-width: 100%;
  padding: 5px;
}

.header__logo .logo-company-name {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: var(--font-weight-heading);
}

/* ── Navegación ──────────────────────────────────────────── */

.header__nav {
  flex: 1;
}

.header__nav .menu--mobile {
  display: none;
}

.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: rgba(255, 255, 255, 0.85);
  display: block;
  font-size: 14px;
  font-weight: 500;
  padding: 0 10px;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.header__nav .menu__link:hover,
.header__nav .menu__link:focus {
  color: var(--secondary-color);
}

.header__nav .menu__link--active-link {
  color: var(--secondary-color);
}

/* Submenú dropdown */
.menu__item--depth-1{
  display:flex !important;
  gap:10px;
}
.header__nav .menu__submenu {
  background-color: rgba(55, 92, 161, 0.97) !important;
  border: none !important;
  border-top: 2px solid var(--secondary-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  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;
}

.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: 0 9px;
}

.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;
}

.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;
}

/* ── CTA del header ──────────────────────────────────────── */

.header__cta {
  flex-shrink: 0;
}

.header__cta .button-wrapper {
  text-align: right;
}

.header__cta .button {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  padding: 8px 20px;
}

/* ── 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;
}

.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) {
  .menu__item--depth-1{
    flex-direction:column;
  }
  .header__hamburger {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .header__nav {
    background-color: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    left: 0;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    transition: max-height 0.35s ease;
    width: 100%;
  }

  .header__nav.is-open {
    max-height: 80vh;
    overflow-y: auto;
  }

  .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) !important;
  }

  .header__nav .menu__submenu .menu__link {
    padding-left: 2.25rem;
  }

  .header__container {
    min-height: 60px;
    gap: 1rem;
  }

  .header__logo {
    max-width: 110px;
  }
}

/* ── 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: 115px;
  }
}
/* ── 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;
  a{
    color: #9ca3af;
  }
}

/* ── 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,
.footer__legal a {
  
  color: #9ca3af;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .footer__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .footer__address {
    text-align: left;
  }
}
/* ============================================================
   HERO SECTION – Real Lucerna
   Altura 100vh, imagen de fondo, overlay gradiente desde izquierda
   ============================================================ */

/* ── Sección: altura de viewport completo ────────────────── */

.dnd-section:has(.hero__eyebrow-module) {
  min-height: 80vh;
  position: relative;
}


/* row-fluid y contenido quedan sobre el slider (z-index: 0) */
.dnd-section:has(.hero__eyebrow-module) > .row-fluid {
  position: relative;
  z-index: 1;
}

/* ── Columna de contenido ────────────────────────────────── */

.dnd-section:has(.hero__eyebrow-module) .dnd-column {
  padding: 0;
}

/* ── Overline / Eyebrow ──────────────────────────────────── */

.hero__eyebrow-module h3 {
  color: #ffffff;
  font-size: clamp(20px, 1.9vw, 33px);
  font-weight: 200;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0;
}

.hero__eyebrow-module h3 strong {
  color: #ffffff;
  font-weight: 600;
}

/* ── Título H1 ───────────────────────────────────────────── */

.hero__title-module h1 {
  color: #ffffff;
  font-size: clamp(36px, 3.2vw, 64px);
  font-weight: 100;
  line-height: 1.1;
  margin: 0px 0px 20px;
}

/* ── Descripción y CTAs ──────────────────────────────────── */

.hero__body-module p {
color: #ffffff;
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 1rem;
  max-width: 600px;
}

/* Contenedor de botones */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.25rem;
}

/* ── Responsive – Mobile (≤ 767px) ──────────────────────── */

@media (max-width: 767px) {
  .dnd-section:has(.hero__eyebrow-module) {
    align-content: center;
    align-items: center;
    display: flex;
    min-height: 90svh;
  }

  .dnd-section:has(.hero__eyebrow-module)::before {
    background: rgba(33, 55, 100, 0.65);
  }

  .dnd-section:has(.hero__eyebrow-module) .dnd-column {
    width: 100% !important;
  }

  .hero__title-module h1 {
    font-size: 36px;
  }

  .hero__body-module p {
    max-width: 100%;
  }

  .hero__ctas {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero__ctas .btn-primary,
  .hero__ctas .btn-outline {
    text-align: center;
    width: 100%;
  }
}
/* ============================================================
   HERO PROTOTIPO – Real Lucerna
   Altura 100vh, imagen de fondo con gradiente incorporado,
   contenido alineado al fondo inferior izquierdo
   ============================================================ */

/* ── Sección: flex column para alinear contenido al fondo ── */

.dnd-section:has(.hero-prototipo__eyebrow-module) {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  position: relative;
}

/* El row-fluid ocupa todo el ancho y queda sobre la imagen */
.dnd-section:has(.hero-prototipo__eyebrow-module) > .row-fluid {
  position: relative;
  width: 100%;
  z-index: 1;
}


/* ── Eyebrow h2 ──────────────────────────────────────────── */

.hero-prototipo__eyebrow-module h2 {
  color: #ffffff;
    font-size: clamp(18px, 1.5vw, 30px);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    margin: 0 0 0.5rem;
}

/* ── Título h1 ───────────────────────────────────────────── */

.hero-prototipo__title-module h1 {
  color: #ffffff;
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 1.25rem;
}

/* ── Descripción ─────────────────────────────────────────── */

.hero-prototipo__body-module p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.65;
  margin: 0;
  max-width: 520px;
}

/* ── Responsive – Mobile (≤ 767px) ──────────────────────── */

@media (max-width: 767px) {
  .dnd-section:has(.hero-prototipo__eyebrow-module) {
    min-height: 100svh;
  }

  .dnd-section:has(.hero-prototipo__eyebrow-module) .dnd-column {
    padding: 0 1.5rem;
    width: 100% !important;
  }

  .hero-prototipo__title-module h1 {
    font-size: 36px;
  }

  .hero-prototipo__body-module p {
    max-width: 100%;
  }
}
/* ============================================================
   SECCIÓN: PATRIMONIO – 22 años construyendo
   ============================================================ */

/* ── Heading principal ───────────────────────────────────── */

.patrimonio__heading-module h2 {
  color: var(--heading-color);
  font-size: var(--font-size-heading);
  font-weight: var(--font-weight-heading);
  line-height: 1.25;
  margin: 0 0 2rem;
  max-width: 320px;
}

/* ── Tarjetas ícono + texto ──────────────────────────────── */

.patrimonio__stat {
  margin-bottom: 1.25rem;
}

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

.patrimonio__disclaimer-module p {
  color: var(--text-color);
  font-size: var(--font-size-disclaimer);
  line-height: 1.5;
  margin: 0rem 0 0;
  opacity: 0.75;
}

/* ── Sección: clip para evitar overflow horizontal ──────── */

.dnd-section:has(.patrimonio__infografia-module) {
  overflow: hidden;
}

/* ── Columna de imagen: centrada, responsive y animada ───── */

.patrimonio__infografia-module {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.patrimonio__infografia-module.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* En mobile: animación vertical para evitar overflow lateral */
@media (max-width: 767px) {
  .patrimonio__infografia-module {
    transform: translateY(40px);
  }

  .patrimonio__infografia-module.is-visible {
    transform: translateY(0);
  }
}

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

/* ── Responsive – Mobile ─────────────────────────────────── */

@media (max-width: 767px) {
  .patrimonio__heading-module h2 {
    max-width: 100%;
  }
}
/* ============================================================
   SECCIÓN: CERTIFICACIÓN EDGE
   ============================================================ */

/* ── Tarjeta del certificado ─────────────────────────────── */

.edge__cert-module {
  background-color: #ffffff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 8px 40px rgba(55, 92, 161, 0.12);
  display: block;
  overflow: hidden;
  padding: 1.6rem 2.5rem 1rem;
}

.edge__cert-module img {
  display: block;
  height: auto;
  margin: 0 auto;
}

/* ── Columna de texto ────────────────────────────────────── */

.edge__heading-module h2 {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: var(--font-weight-base);
  line-height: 1;
  margin: 0 0 0.9rem;
  max-width: 420px;
}

.edge__body-module p {
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  max-width: 480px;
}

.edge__body-module strong {
  color: var(--primary-color-black);
  font-weight: var(--font-weight-heading);
}

/* ── Responsive – Mobile ─────────────────────────────────── */

@media (max-width: 767px) {
  .edge__cert-module {
    border-radius: 16px 16px 0 0;
    margin-bottom: 2rem;
    padding: 1.5rem;
  }

  .edge__heading-module h2,
  .edge__body-module p {
    max-width: 100%;
  }
}
/* ============================================================
   SECCIÓN: AMENIDADES
   ============================================================ */

/* ── Heading e intro ─────────────────────────────────────── */

.amenidades__heading-module h2 {
  color: var(--heading-color);
  font-size: var(--font-size-heading);
  font-weight: var(--font-weight-heading);
  line-height: 1.25;
  margin: 0 0 0.2rem;
}

.amenidades__intro-module p {
  color: var(--text-color);
  font-size: var(--font-size-base);
  margin: 0 0px 20px;
}

/* ── Tarjeta de cada amenidad ────────────────────────────── */

.amenidades__card {
  background-color: #F8FAFF;
  border-radius: 6px;
  box-shadow: 0 2px 14px rgba(55, 92, 161, 0.08);
  margin-bottom: 1rem;
  padding: 10px 10px;
  transition: box-shadow 0.2s ease;
}

.amenidades__card:hover {
  box-shadow: 0 4px 20px rgba(55, 92, 161, 0.14);
}


.amenidades__card .icon-rt__content .icon-rt__desc{
    font-size: 14px;
  }

/* ── Responsive – Mobile ─────────────────────────────────── */

@media (max-width: 767px) {
  .amenidades__card {
    margin-bottom: 0.75rem;
  }
}
/* ============================================================
   SECCIÓN: ENTRADA
   ============================================================ */

.entrada__img-module img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* ============================================================
   SECCIÓN: UBICACIÓN
   ============================================================ */

.ubicacion__heading-module h2 {
  color: var(--heading-color);
  font-size: var(--font-size-heading);
  font-weight: var(--font-weight-heading);
  line-height: 1.25;
  margin: 0 0 1rem;
}

.ubicacion__intro-module p {
  color: var(--text-color);
  font-size: clamp(13px, 1vw, 15px);
  margin: 0 0 1.5rem;
}

.ubicacion__bullet {
  margin-bottom: 0.75rem;
}
.ubicacion__bullet .icon-rt__icon-wrap{
  background: transparent !important;
  padding: 0 !important;
}

.ubicacion__bullet .icon-rt {
  align-items: center;
}

.ubicacion__bullet .icon-rt__icon {
  background: transparent;
  padding: 0;
  flex-shrink: 0;
}

.ubicacion__bullet .icon-rt__title {
  font-size: clamp(13px, 1vw, 15px);
  margin: 0;
}

.ubicacion__mapa-module img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Responsive – Mobile ─────────────────────────────────── */

@media (max-width: 767px) {
  .ubicacion__mapa-module {
    margin-top: 2rem;
  }
}
/* ============================================================
   SECCIÓN: PROTOTIPOS
   ============================================================ */

.prototipos__disclaimer-module p {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--font-size-disclaimer);
  text-align: center;
  margin: 1.5rem 0 2.5rem;
}

/* ── CTA row ─────────────────────────────────────────────── */

.prototipos__cta-heading h2 {
  color: #ffffff;
  font-size: clamp(24px, 2.2vw, 38px);
  font-weight: var(--font-weight-heading);
  line-height: 1.2;
  margin: 0;
}

.prototipos__cta-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.prototipos__cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

/* Botón primario con color secundario (amarillo) en esta sección */
.prototipos__cta-actions .btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color-black) !important;
}

.prototipos__cta-actions .btn-primary:hover,
.prototipos__cta-actions .btn-primary:focus {
  background-color: #b8bc20;
  border-color: #b8bc20;
  color: var(--primary-color-black) !important;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 767px) {
  .prototipos__cta-buttons {
    justify-content: center;
  }
  .prototipos__cta-actions {
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 1.5rem;
  }

  .prototipos__cta-actions a {
    width: 100%;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════════
   PÁGINA PROTOTIPOS - ESTILOS GENERALES
   ══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   SECCIÓN OVERVIEW
   ══════════════════════════════════════════════════════════ */

/* Precio H2 */
.dnd-module:has(.proto-overview__content-module) h2 {
  color: var(--heading-color);
  font-size: var(--font-size-subheading);
  font-weight: var(--font-weight-thin);
  line-height: 1.1;
  padding-bottom: 1rem;
  margin: 0 0 1rem;
  border-bottom: 1.5px solid #E5E5E5;
}

/* Texto de disclaimer */
.dnd-module:has(.proto-overview__content-module) p:not(.overview-label),
.dnd-module:has(.proto-overview__content-module) ul,
.dnd-module:has(.proto-overview__content-module) li {
  color: var(--text-color);
  font-size: var(--font-size-base);
  line-height: 1.4;
  margin: 0;
}
.dnd-module:has(.proto-overview__content-module) ul{
  padding-top:13px;
  padding-bottom:13px;
}

.dnd-module:has(.proto-overview__content-module) li {
  margin-bottom: 8px;
}

/* Floor-plan: alineación vertical centrada */
.dnd-module:has(.proto-overview__floorplan-module) {
  align-items: center;
  display: flex;
}


.galeria__prototipos-amenidades{
  margin-top: 2rem;
}
/* ============================================================
   SECCIÓN: FAQ
   ============================================================ */

.faq__heading-module h2 {
  color: var(--heading-color);
  font-size: var(--font-size-heading);
  font-weight: var(--font-weight-heading);
  margin: 0 0 2rem;
}

.faq__module-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
/* ── Artículos Section ───────────────────────────────────── */

/* Section heading "Artículos" */
.articulos__heading-module h2 {
  color: var(--heading-color);
  font-size: var(--font-size-heading);
  font-weight: var(--font-weight-heading);
  line-height: 1.2;
  margin: 0 0 2rem;
}
/* ============================================================
   SECCIÓN: CONTACTO
   ============================================================ */

/* ── Overlay sobre imagen de fondo ──────────────────────────── */

.dnd-section:has(.contacto__heading-module) {
  position: relative;
}

.dnd-section:has(.contacto__heading-module) .row-fluid {
  position: relative;
  z-index: 1;
}
.form-title, .submitted-message, form {
    background-color: transparent !important;
    border: none !important;
}
/* ── Columna izquierda ────────────────────────────────────── */

.contacto__heading-module h2 {
  color: #ffffff;
  font-size: var(--font-size-heading);
  font-weight: var(--font-weight-heading);
  line-height: 1.25;
  margin: 0 0 1.25rem;
}

.contacto__desc-module p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.6;
  margin: 0 0 1.75rem;
}

/* ── Columna derecha: contenedor del formulario ──────────── */

.contacto__form-label {
  color: var(--primary-color);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0px 0px  15px;
}
.form-title, form label, form legend {
  color: var(--primary-color);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-heading);
  margin: 0px 0px 5px;
}
.hs-form-field {
    margin-bottom: 0.6rem;
}
form .hs-button, form input[type=submit] {
  background-color: var(--primary-color) !important;
  border: none !important;
  border-radius: 0 !important;
  color: #fff !important;
}

.legal-consent-container .hs-richtext {
    font-size: var(--font-size-disclaimer);
    margin: 0px 0px 10px;
}
/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 767px) {
  .dnd-column:has(.contacto__form-module) {
    padding: 1rem;
    margin-top: 2rem;
  }
  .contacto__heading-module h2 {
    margin: 0 0 .25rem;
  }
  .contacto__desc-module p {
    margin: 0 0 .75rem;
  }
}


/* ── Columna derecha: tarjeta del formulario ────────────── */

.contacto__form-module {
  background-color: #F8FAFF;
  border: 1px solid #DADAF0;
  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;
}

form .inputs-list > li{margin:0px}

/* ── 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;
  }
}
/* ============================================================
   PROTOTIPO – EDGE
   Sección certificación: logo + heading + descripción centrados
   ============================================================ */

/* ── Logo ────────────────────────────────────────────────── */

.proto-edge__logo-module {
  text-align: center;
  margin-bottom: 1.5rem;
}

.proto-edge__logo-module img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: inline-block;
}

/* ── Heading ─────────────────────────────────────────────── */

.proto-edge__heading-module h2 {
  color: var(--heading-color);
  font-size: var(--font-size-subheading);
  font-weight: var(--font-weight-thin);
  line-height: 1.2;
  margin: 0 0 1rem;
  text-align: center;
}

/* ── Descripción ─────────────────────────────────────────── */

.proto-edge__desc-module p {
  color: var(--text-color);
  font-size: var(--font-size-base);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 520px;
  text-align: center;
}

.proto-edge__desc-module strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* ── Responsive – Mobile (≤ 767px) ──────────────────────── */

@media (max-width: 767px) {
  .dnd-section:has(.proto-edge__logo-module) .dnd-column {
    width: 100% !important;
  }

  .proto-edge__logo-module img {
    max-width: 180px;
  }

  .proto-edge__heading-module h2 {
    font-size: 28px;
  }
}
/* ── Fila con imagen de fondo: esquinas redondeadas ─────── */

.dnd-row:has(.call-to-action-section) {
  border-radius: 20px;
  overflow: hidden;
}

/* ── Contenido centrado ──────────────────────────────────── */

.call-to-action-section h2 {
  color: #ffffff;
    font-weight: var(--font-weight-thin);
    margin: 0px 0px 5px;
}

.call-to-action-section p {
  color: rgb(255 255 255);
  font-size: var(--font-size-button);
  line-height: 1.1;
  margin: 0px 0px 15px;
}
.call-to-action-section__button .button {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color-black) !important;
  font-weight: var(--font-weight-heading);
}

.call-to-action-section__button .button:hover,
.call-to-action-section__button .button:focus {
  background-color: #b8bc20;
  border-color: #b8bc20;
  color: var(--primary-color-black) !important;
}
/* ── Responsive – Mobile (≤ 767px) ──────────────────────── */

@media (max-width: 767px) {
  .dnd-row:has(.call-to-action-section) {
    border-radius: 12px;
  }
}
/* 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;
  }
}

*,html,body {
  font-family: "Barlow", sans-serif !important;
}