/* 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: #B48F72;
  --secondary-color: #08556D;
  --primary-color-black: #936f53;
  --accent-color: #B48F72;
  --text-color: #000104;
  --text-color-blog: #8B929F;
  --heading-color: #B48F72;
  --heading-color-dark: #000104;
  --stat-backgroundcolor: #F3FEFF;
  --font-family-base: 'Barlow', 'Roboto', sans-serif;
  --font-size-base: 16px;
  --font-size-disclaimer:10px;
  --font-size-heading: clamp(52px, 2.5vw, 52px);
  --font-size-subheading: 30px;
  --font-size-third: 30px;
  --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;
}

/* Theme base styles */

/* 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: .75rem;
  font-size: var(--font-size-base);
  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.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 (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(--secondary-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);
  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: #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); */
  padding: 4px 0;
  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;

  background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 88%,rgba(0,0,0,1) 99%);

}

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

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

/* 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);
}
.hs_cos_wrapper_header_cta button{

}

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

/* Missing Template at Path: \'real-amalfi-theme\/css\/components\/_hero.css\' */
/* ============================================================
   HERO PROTOTIPO – Real Amalfi
   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: 70vh;
  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: var(--primary-color);
    font-size:var(--font-size-third);
    font-weight: var(--font-weight-heading-black);
    letter-spacing: 0.02em;
    line-height: 1;
    margin: 0 0 0.5rem;
}

/* ── Título h1 ───────────────────────────────────────────── */

.hero-prototipo__title-module h1 {
  color: var(--heading-color-dark);
  font-size: var(--font-size-heading);
  font-weight: var(--font-weight-heading-black);
  line-height: 1;
  margin: 0 0 1.25rem;
  max-width: 560px;
}

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

.hero-prototipo__body-module p {
  color: var(--heading-color-dark);
  font-size: clamp(13px, 1vw, 15px);
  font-size: var(--font-size-base);
  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: 80svh;
  }

  .dnd-section:has(.hero-prototipo__eyebrow-module) .dnd-column {
    padding: 0 1.5rem;
    width: 100% !important;
  }

  .hero-prototipo__title-module h1 {
    font-size: 36px;
    max-width: 100%;
  }

  .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-dark);
  font-size: var(--font-size-subheading); 
  font-weight: var(--font-weight-heading);
  margin: 0 0 2rem;
}

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

.patrimonio__stat {
  background: var(--stat-backgroundcolor);
  margin-bottom: .35rem;
  margin-top: .35rem;
  padding: .8rem;
}

.patrimonio__stat-amenidades {
  background: var(--stat-backgroundcolor);
  margin-bottom: 0rem;
  margin-top: 0rem;
  padding: .5rem;
}

/* ── 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;
}
p.icon-rt__subtitulo{
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.1;
}

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

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

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

@media (max-width: 767px) {
  .patrimonio__heading-module h2 {
    max-width: 100%;
  }
  .patrimonio__infografia-module img {
    margin-top: 30px
  }
}
/* ============================================================
   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-dark);
  font-size: var(--font-size-third);
  font-weight: var(--font-weight-heading-black);
  line-height: 1;
  margin: 0 0 0.9rem;
}

.edge__body-module p {
    color: var(--heading-color-dark);
  }

/* ── 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: UBICACIÓN
   ============================================================ */

.ubicacion__heading-module h2 {
  color: var(--heading-color-dark);
  font-size: var(--font-size-subheading);
  font-weight: var(--font-weight-heading-black);
  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: 1.25rem;
}
.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;
}
.icon-rt__title.icon-rt__title-dark,
.icon-rt__title.icon-rt__title-dark strong{
  color: var(--heading-color-dark) !important;
}

/* ============================================================
   Ubicación privilegiada — Mapa + Cercanías
   Valores exactos: Figma node 5972:2
   ============================================================ */

/* ── Layout dos columnas ───────────────────────────────── */

.ubicacion-content {
  align-items: center;
  display: flex;
  gap: 80px;
}

/* ── Columna izquierda: mapa ───────────────────────────── */

.ubicacion-content__left {
  /* flex: 0 0 41%;
  max-width: 41%; */
  flex: 0 0 100%;
  max-width: 96%;
}

/* Contenedor del zoom: overflow hidden para recortar la imagen ampliada */
.ubicacion-mapa__zoom {
  cursor: zoom-in;
  display: block;
  overflow: hidden;
  width: 100%;
}

/*
  Animación fade-up usa `translate` (propiedad CSS individual).
  Zoom usa `scale` (propiedad CSS individual).
  Son independientes: no se pisan en los estados de transición.
*/
.ubicacion-mapa__img {
  display: block;
  height: auto;
  opacity: 0;
  pointer-events: none;        /* evita drag de imagen */
  scale: 1;
  translate: 0 40px;           /* fade-up inicial */
  transition:
    opacity 0.85s ease,
    translate 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    scale 0.45s ease;
  width: 100%;
  will-change: opacity, translate, scale;
}

/* Fade-up completado */
.ubicacion-mapa__img.is-visible {
  opacity: 1;
  translate: 0 0;
}

/* Zoom: escala 2.5× al hacer hover — transform-origin cambia con el cursor (via JS) */
.ubicacion-mapa__zoom:hover .ubicacion-mapa__img.is-visible {
  scale: 3;
}

/* ── Columna derecha ───────────────────────────────────── */

.ubicacion-content__right {
  flex: 1;
  min-width: 0;
}

.ubicacion-content__titulo {
  color: var(--text-color);
  font-size: clamp(30px, 2.9vw, 42px);
  font-weight: var(--font-weight-base);
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-top: 0;
}

.ubicacion-content__cuerpo {
  color: var(--text-color);
  font-size: 20px;
  font-weight: var(--font-weight-base);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.ubicacion-content__cuerpo p {
  margin: 0;
}

/* ── Grid cercanías (compartido con cercanias-zonas.module) */

.cercanias-grid {
  column-gap: 16px;
  display: grid;
  grid-template-columns: repeat(var(--cercanias-cols, 2), 1fr);
  margin-bottom: 2rem;
  row-gap: 10px;
}

/* Zona card: ícono oscuro + cuerpo claro */
.cercanias-card {
  align-items: stretch;
  display: flex;
}

/* Caja del ícono: 47×47 fondo #1f140f */
.cercanias-card__icon {
  align-items: center;
  background-color: var(--secondary-color);
  display: flex;
  flex-shrink: 0;
  height: 47px;
  justify-content: center;
  width: 47px;
}

.cercanias-card__icon img {
  display: block;
  height: 24px;
  object-fit: contain;
  width: 24px;
}

/* Cuerpo: bg #f5f3ef con borde sutil */
.cercanias-card__body {
  align-items: center;
  background-color: #f5f3ef;
  border: 0.2px solid rgba(31, 20, 15, 0.3);
  display: flex;
  flex: 1;
  justify-content: space-between;
  min-width: 0;
  padding: 4px 12px;
}

.cercanias-card__info {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

/* Nombre: 15px Regular #1f140f */
.cercanias-card__nombre {
  color: var(--text-color);
  display: block;
  font-size: 15px;
  font-weight: var(--font-weight-base);
  line-height: 1.2;
}

/* Subtítulo: 10px Regular #1f140f */
.cercanias-card__subtitulo {
  color: var(--text-color);
  display: block;
  font-size: 10px;
  font-weight: var(--font-weight-base);
  line-height: 1.2;
  margin-top: 2px;
}

/* Tiempo: número 25px #95785e + unidad 11px */
.cercanias-card__tiempo {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin-left: 8px;
}

.cercanias-card__num {
  color: #95785e;
  display: block;
  font-size: 25px;
  font-weight: var(--font-weight-base);
  line-height: 1;
}

.cercanias-card__unidad {
  color: var(--text-color);
  display: block;
  font-size: 11px;
  font-weight: var(--font-weight-base);
  line-height: 1;
}

/* ── CTA con ícono pin ─────────────────────────────────── */

.ubicacion-cta {
  align-items: center;
  background-color: var(--primary-color);
  color: #ffffff;
  display: inline-flex;
  font-size: 17px;
  font-weight: var(--font-weight-heading-black);
  gap: 10px;
  min-width: 231px;
  padding: 12px 20px;
  text-decoration: none;
  transition: background-color 0.22s;
}

.ubicacion-cta img {
  display: block;
  flex-shrink: 0;
  height: 23px;
  object-fit: contain;
  width: 23px;
}

.ubicacion-cta:hover,
.ubicacion-cta:focus {
  background-color: var(--secondary-color);
  color: #ffffff;
  outline: none;
  font-weight: var(--font-weight-heading-black);
}

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

@media (min-width: 768px) and (max-width: 1023px) {
  .ubicacion-content {
    gap: 40px;
  }

  .ubicacion-content__left {
    flex: 0 0 46%;
    max-width: 46%;
  }

  .ubicacion-content__titulo {
    font-size: 28px;
  }

  .ubicacion-content__cuerpo {
    font-size: 17px;
  }

  .cercanias-card__nombre {
    font-size: 13px;
  }

  .cercanias-card__num {
    font-size: 20px;
  }
}

/* ── Móvil (≤ 767px) ───────────────────────────────────── */

@media (max-width: 767px) {
  .ubicacion-content {
    flex-direction: column;
    gap: 2rem;
  }

  .ubicacion-content__left {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .ubicacion-content__titulo {
    font-size: 26px;
  }

  .ubicacion-content__cuerpo {
    font-size: 17px;
  }

  /* En móvil el grid pasa a 1 columna independientemente del campo cols */
  .cercanias-grid {
    grid-template-columns: 1fr !important;
  }

  .ubicacion-cta {
    justify-content: center;
    width: 100%;
  }
}


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

/* baños */
.prototipos-grid__recamaras, .prototipos-grid__recamaras{
  width: 50%;
  float: left;
  margin:0;
  position: relative;
}
.prototipos-grid__img_recamaras{
  width: 38px;
  border: 1px solid #ffffff;
  float: left;
  margin-top: 10px;
  padding: 6px;
  }
.prototipos-grid__img_recamaras_min{
    font-size: 10px;
    float: left;
    color: #009DB0;
    margin: 10px 0 0 10px;
}
.prototipos-grid__img_recamaras_min_num{
  color: #ffffff;
  float: left;
  margin: -4px 0 0 10px;
  margin: 0px 0 0 0px;
  position: absolute;
  left: 3em;
}
.prototipos-grid__img_tipo{
  width: 25px;
  width: 30px;
} 

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

@media(min-width: 768px) and (max-width: 1080px){
  .prototipos-grid__recamaras, .prototipos-grid__recamaras{
    width: 100%;
  }
}

@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-dark);
  font-size: var(--font-size-third);
  font-weight: var(--font-weight-heading-black);
  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: 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-weight: var(--font-weight-heading-black);
  font-size: var(--font-size-subheading);
  line-height: 1.25;
  margin: 0px 0 1.25rem;
}

.contacto__desc-module p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 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(--heading-color-dark) !important;
  border: none !important;
  border-radius: 6px !important;
  color: #fff !important;
  width: 65% !important;

  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 1.5rem;
  transition: background-color 0.2s ease;
  width: 100%;
}

.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: #F3FEFF;
  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(--text-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(--heading-color-dark, #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: #ffffff;
  border: 1px solid #DADAF0;
  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%;
  margin-top: 25px;
}

.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;
}

 /* Control de posición y tamaño */
   .patrimonio__infografia-module {
     text-align: left;
     margin-top: 20px;/
     display: block;
   }
      .patrimonio__infografia-module img {
     max-width: 80%;
     height: auto;
     float: right;
   }
/* ── Responsive – Mobile ─────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) {

  form .hs-button, form input[type=submit] {
    width: 100% !important;
      border: 1px solid #fff;
      border-radius: 6px;
      display: inline-block;
      font-size: var(--font-size-button) !important;
      font-weight: 600 !important;
      letter-spacing: .01em;
      padding: 10px 15px;
      text-decoration: none;
      transition: background-color .2s ease, border-color .2s ease, transform .15s ease;
  }
}
/* ── 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;
  }

  form .hs-button, form input[type=submit] {
    width: 100% !important;
      border: 1px solid #fff;
      border-radius: 6px;
      display: inline-block;
      font-size: var(--font-size-button) !important;
      font-weight: 600 !important;
      letter-spacing: .01em;
      padding: 10px 15px;
      text-decoration: none;
      transition: background-color .2s ease, border-color .2s ease, transform .15s ease;
  }
}
/* ── 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--amalfi {
  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 !important;
  line-height: 1.5;
  font-weight: 300;
}
.footer__legal span,
.footer__legal a {
  
  color: #9ca3af !important;
}

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

  .footer__address {
    text-align: left;
  }
}
.opcion__heading-module{
    text-align: center;
}
.opcio-descripcion-1{
    text-align: right;
}
.opcio-descripcion-2{
    text-align: left;
}

/* ============================================================
   HERO PROTOTIPO – Real Amalfi
   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: 70vh;
  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: var(--primary-color);
    font-size:var(--font-size-third);
    font-weight: var(--font-weight-heading-black);
    letter-spacing: 0.02em;
    line-height: 1;
    margin: 0 0 0.5rem;
}

/* ── Título h1 ───────────────────────────────────────────── */

.hero-prototipo__title-module h1 {
  color: var(--heading-color-dark);
  font-size: var(--font-size-heading);
  font-weight: var(--font-weight-heading-black);
  line-height: 1;
  margin: 0 0 1.25rem;
  max-width: 560px;
}

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

.hero-prototipo__body-module p {
  color: var(--heading-color-dark);
  font-size: clamp(13px, 1vw, 15px);
  font-size: var(--font-size-base);
  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: 80svh;
  }

  .dnd-section:has(.hero-prototipo__eyebrow-module) .dnd-column {
    padding: 0 1.5rem;
    width: 100% !important;
  }

  .hero-prototipo__title-module h1 {
    font-size: 36px;
    max-width: 100%;
  }

  .hero-prototipo__body-module p {
    max-width: 100%;
  }
}

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