@charset "UTF-8";
/*
Theme Name: Mansel
Theme URI: https://www.mowomo.com
Description: Tema desarrollado a medida para mansel.com
Version: 1.0.0
Framework Version: 0.5.3
Design: mowomo
Author: mowomo
Author URI: https://www.mowomo.com

Text Domain: mansel
Domain Path: /languages

License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

====================================================================
	TABLE OF CONTENTS
====================================================================
	# THEME SETUP
		# TYPOGRAPHY
	# UTILITIES
	# COMPONENTS
		# MEDIA
		# IFRAME WRAPPER
		# BUTTONS
		# FORMS
		# SEARCH FORM
		# SITE HEADER
		# MENU
		# SITE FOOTER
	# LAYOUT
		# TPL FRONT-PAGE
		# TPL SINGLE
*/
/*==================================================================
	# THEME SETUP
====================================================================*/
:root {
  /* COMMON */
  --mwm--color--black: #000;
  --mwm--color--gray: #555;
  --mwm--color--gray-50: #f6f6f6;
  --mwm--color--white: #fff;
  --mwm--color--red-200: #eb5c5f;
  --mwm--color--red-400: #711423;
  --mwm--color--red-800: #1c0509;
  --mwm--accent-color: var(--mwm--color--red-200);
  /* Degular is a paid font (Colophon Foundry) — the licensed files were never
     migrated and aren't available (see _reference/pending-pdfs.md-style note:
     nobody has the license/purchase files). Substituted with Manrope (Google
     Fonts, free), a similar-feeling geometric/grotesque sans, per client
     decision 2026-09-03. Loaded via head/head.php's Google Fonts <link>. */
  --mwm--font-family: "Manrope", sans-serif;
  --mwm--font-size--h1: 1.875rem;
  --mwm--font-size--h2: 1.375rem;
  --mwm--font-size--h3: 1.25rem;
  --mwm--font-size--h4: 1.125rem;
  --mwm--line-height--headings: 1.2;
  --mwm--font-size--base: 1rem;
  --mwm--line-height--base: 1.5;
  --mwm--font-weight--regular: 400;
  --mwm--font-weight--semi-bold: 600;
  --mwm--font-weight--bold: 700;
  --mwm--max-padding: 1.25rem;
  --mwm--max-width: 75rem; /* 1200 */
  --mwm--max-width-2: 61.875rem; /* 990 */
  /* COMPONENTS */
  --mwm--selection-bg: var(--mwm--accent-color);
  --mwm--selection-color: var(--mwm--color--white);
  --mwm--body-bg: var(--mwm--color--white);
  --mwm--base-color: var(--mwm--color--black);
  --mwm--headings-color: var(--mwm--accent-color);
}

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

::-moz-selection {
  background-color: var(--mwm--selection-bg);
  color: var(--mwm--selection-color);
}

::selection {
  background-color: var(--mwm--selection-bg);
  color: var(--mwm--selection-color);
}

body {
  background-color: var(--mwm--body-bg);
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
}

.site-footer {
  margin-top: auto;
}

html #wpadminbar {
  position: fixed;
}

@media (min-width: 768px) {
  :root {
    --mwm--font-size--h1: 2.5rem;
    --mwm--font-size--h2: 1.75rem;
    --mwm--font-size--h3: 1.5rem;
    --mwm--font-size--h4: 1.25rem;
    --mwm--max-padding: 2rem;
  }
}
/*	# TYPOGRAPHY
===================================*/
body,
button,
input,
select,
textarea {
  color: var(--mwm--base-color);
  font-family: var(--mwm--font-family);
  font-size: var(--mwm--font-size--base);
  font-weight: var(--mwm--font-weight--regular);
  line-height: var(--mwm--line-height--base);
}

/* HEADINGS */
h1,
h2,
h3,
h4,
h5,
h6,
.h1-size,
.h2-size,
.h3-size,
.h4-size,
.h5-size,
.h6-size {
  color: var(--mwm--headings-color);
  font-weight: var(--mwm--font-weight--bold);
  line-height: var(--mwm--line-height--headings);
  margin: 0 0 1rem;
  word-break: break-word;
}

/* SIZES */
h1,
.h1-size {
  font-size: var(--mwm--font-size--h1);
}

h2,
.h2-size {
  font-size: var(--mwm--font-size--h2);
}

h3,
.h3-size {
  font-size: var(--mwm--font-size--h3);
}

h4,
h5,
h6,
.h4-size,
.h5-size,
.h6-size {
  font-size: var(--mwm--font-size--h4);
}

/* COPY */
hr {
  background-color: var(--mwm--base-color);
  border: none;
  height: 2px;
  margin: 1rem 0;
}

p {
  margin: 0 0 1em;
  word-break: break-word;
}

b,
strong {
  color: inherit;
  font-weight: var(--mwm--font-weight--bold);
}

dfn,
cite,
em,
i {
  font-style: italic;
}

a {
  color: var(--mwm--accent-color);
  text-decoration: underline;
}

a:hover {
  color: var(--mwm--accent-color);
  text-decoration: none;
}

/* LISTS */
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* TABLES */
table {
  border-collapse: collapse;
  margin: 0 0 1.5rem;
  width: 100%;
}

thead th {
  border-bottom: 2px solid var(--mwm--base-color);
  padding-bottom: 0.5rem;
}

th {
  padding: 0.4rem;
  text-align: left;
}

tr {
  border-bottom: 1px solid var(--mwm--base-color);
}

td {
  padding: 0.4rem;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

/*==================================================================
	# UTILITIES
====================================================================*/
.max,
.alignfull .wp-block-group__inner-container {
  margin: 0 auto;
  max-width: calc(var(--mwm--max-width) + var(--mwm--max-padding) * 2);
  padding: 0 var(--mwm--max-padding);
}

.wp-block-group__inner-container:after,
.wp-block-group__inner-container:before {
  content: "";
  display: table;
  width: 100%;
}

.max--2 {
  max-width: calc(var(--mwm--max-width-2) + var(--mwm--max-padding) * 2);
}

/*==================================================================
	# COMPONENTS
====================================================================*/
/*	# MEDIA
===================================*/
figure {
  margin: 0;
}

img,
svg,
video {
  display: block;
  height: auto;
  max-width: 100%;
}

figcaption {
  font-size: 80%;
}

/*	ALIGNMENTS */
.alignleft {
  display: inline;
  float: left;
  margin: 0 1rem 1rem 0;
}

.alignright {
  display: inline;
  float: right;
  margin: 0 0 1rem 1rem;
}

.aligncenter {
  clear: both;
  display: block;
  margin-bottom: 1rem;
}

.alignfull {
  margin: 1em calc(50% - 50vw) 1em;
  max-width: 100vw;
  width: 100vw;
}

.alignfull:first-child {
  margin-top: 0;
}

.alignfull:last-child {
  margin-bottom: 0;
}

/*	# IFRAME WRAPPER
===================================*/
.iframe-wrapper {
  margin-bottom: 1rem;
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}

.iframe-wrapper iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/*	# BUTTONS
===================================*/
button,
input[type=button],
input[type=submit],
.btn a,
.wp-block-button .wp-block-button__link {
  align-items: center;
  background: var(--mwm--color--red-200);
  border: 0;
  border-radius: 0.25rem;
  color: var(--mwm--color--white);
  cursor: pointer;
  display: inline-block;
  display: flex;
  font-size: 1rem;
  font-weight: var(--mwm--font-weight--semi-bold);
  gap: 1.25rem;
  padding: 1rem 2.5rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
  user-select: none;
}

.btn {
  /* Bare div, no width rule anywhere in the original stylesheet — as a plain
     block it stretched to 100% of its parent (cta-contacto's white card,
     etc). Invisible on .btn--3 (transparent, padding:0, used inline after
     headings) but visible on the filled default/.btn--2 variants as a wide
     red/white box with the label+icon pushed apart. Shrink-wrap instead. */
  display: inline-flex;
}
.btn--2 a {
  background-color: var(--mwm--color--white);
  color: var(--mwm--color--red-200);
}

.btn--3 a {
  background-color: transparent;
  color: var(--mwm--color--red-400);
  font-size: 1.25rem;
  padding: 0;
  text-transform: none;
}
.btn--3 a svg {
  color: var(--mwm--color--red-200);
}

/*	# FORMS
===================================*/
label {
  cursor: pointer;
  display: block;
  margin-bottom: 0.5em;
}

/* FIELDSET */
fieldset {
  background: #fafafa;
  border: 0;
  margin: 2rem 0;
  padding: 2rem;
}

fieldset input[type=password] {
  background: #fff;
}

fieldset legend {
  float: left;
  font-size: 1.875rem;
  font-weight: var(--mwm--font-weight--bold);
  margin-bottom: 1.5rem;
}

/* FIELDS */
input:not([type=checkbox], [type=radio]),
textarea,
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 0;
  color: #222;
  display: block;
  font-size: 1rem;
  padding: 0.75rem;
  width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  border-color: #333;
  color: #222;
}

/* SELECT */
select {
  appearance: none;
  background-clip: border-box;
  -moz-background-clip: border-box;
  -webkit-background-clip: border-box;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23eeeeee' d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'%3E%3C/path%3E%3C/svg%3E");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 2em 1em;
  border-radius: 0;
  max-width: 100%;
  padding-right: 1.25em;
  position: relative;
}

/* CHECKBOXES & RADIO BUTTONS */
input[type=radio],
input[type=checkbox] {
  margin-right: 0.5rem;
}

/* Fix para que el label no salga en 700 si tiene un checkbox al lado */
input[type=radio] + label,
input[type=checkbox] + label {
  font-weight: var(--mwm--font-weight--regular);
}

/*	GPRD */
.gdpr button {
  width: unset;
}

/* PLADEHOLDER */
::-webkit-input-placeholder {
  color: #9a9a9a;
  font-family: var(--mwm--font-family);
}

:-moz-placeholder {
  color: #9a9a9a;
  font-family: var(--mwm--font-family);
}

::-moz-placeholder {
  color: #9a9a9a;
  font-family: var(--mwm--font-family);
  opacity: 1;
  /* Desde FF19, Firefox baja la opacidad de los placeholder por defecto */
}

:-ms-input-placeholder {
  color: #9a9a9a;
  font-family: var(--mwm--font-family);
}

/*	# SEARCH FORM
===================================*/
.search-form form {
  position: relative;
}

.search-form input[type=search]::-webkit-search-decoration,
.search-form input[type=search]::-webkit-search-cancel-button,
.search-form input[type=search]::-webkit-search-results-button,
.search-form input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.search-form button {
  background: transparent;
  border: none;
  bottom: 0;
  color: #4c4c4c;
  display: inline-block;
  font-size: 1rem;
  min-width: unset;
  outline: none;
  padding: 0 1rem;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

/*	# SITE HEADER
===================================*/
.site-header {
  background-color: transparent;
  color: var(--mwm--color--white);
  left: 0;
  padding: 20px 0;
  position: fixed;
  top: var(--wp-admin--admin-bar--height, 0px);
  transition: background 0.2s, color 0.2s, transform 0.3s ease-out;
  width: 100%;
  z-index: 999;
}

.has-header-2 .site-logo {
  color: var(--mwm--color--red-400);
}
.has-header-2 .site-logo a {
  color: inherit;
}

.site-header.has-bg-white {
  background-color: var(--mwm--color--white);
  color: var(--mwm--color--red-400);
}

.site-header.is-scrolled {
  transform: translateY(-100%);
}

.site-header__wrapper {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

/* LOGO */
.site-logo {
  align-items: center;
  display: flex;
  height: 2.5rem;
}
.site-logo a {
  color: inherit;
}

.site-logo img {
  height: 100%;
  max-height: 2.5rem;
  width: auto;
}

/* BARS */
.bars {
  cursor: pointer;
}

.bars svg {
  max-width: 2.8125rem;
}

@media (min-width: 768px) {
  /* LOGO */
  .site-logo {
    height: 3rem;
  }
  .site-logo img {
    max-height: 3rem;
  }
}
@media (min-width: 1024px) {
  /* BARS */
  .bars svg {
    max-width: inherit;
  }
}
/*	# MENU
===================================*/
/* MENU CONTAINER */
.site-menu-container {
  width: 100%;
}

.site-menu-container__header {
  display: none;
}

/* MENU */
.site-menu {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  width: 100%;
}

.site-menu.is-opened {
  transition: 1s;
}

/* MENU FIRST LEVEL */
.site-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-menu li {
  margin-bottom: 0;
  position: relative;
}

.site-menu a {
  color: inherit;
  font-weight: var(--mwm--font-weight--semi-bold);
  position: relative;
  text-decoration: none;
  transition: color 0.2s;
}

.site-menu a:hover,
.site-menu > ul > li.current_page_item > a,
.site-menu > ul > li.current-menu-item > a,
.site-menu > ul > li.current-menu-ancestor > a {
  color: var(--mwm--accent-color);
}

.menu-item__btn {
  box-sizing: content-box;
  color: var(--mwm--accent-color);
  cursor: pointer;
  height: 3.5rem;
  padding: 0 0.5rem;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.2s;
  z-index: 99;
}

.menu-item__btn.rotate {
  transform: rotate(180deg);
  transition: 0.3s;
}

/* MENU SECOND LEVEL */
.site-menu ul.sub-menu,
.site-menu ul.children {
  display: none;
  flex-wrap: nowrap;
  overflow: hidden;
  padding: 0;
}

.site-menu ul.sub-menu li,
.site-menu ul.children li {
  border: none;
}

.site-menu ul.sub-menu a,
.site-menu ul.children a {
  background: var(--mwm--body-bg);
  padding-left: 2.25rem;
}

/* MENU THIRD LEVEL */
.site-menu ul.sub-menu ul.sub-menu a,
.site-menu ul.children ul.children a {
  background: var(--mwm--color--gray);
  padding-left: 3rem;
}

.site-menu ul.sub-menu ul.sub-menu .menu-item__btn,
.site-menu ul.children ul.children .menu-item__btn,
.site-menu ul.sub-menu ul.sub-menu ul.sub-menu,
.site-menu ul.children ul.children ul.children {
  display: none !important;
}

@media (max-width: 1279px) {
  /* OFFCANVAS OVERLAY */
  .site-header:after {
    background: transparent;
    content: "";
    display: block;
    height: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -100;
  }
  .offcanvas-overlay .site-header:after {
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    height: 100vh;
    transition: background 0.2s;
    z-index: 100;
  }
  /* MENU */
  .site-menu-container {
    background-color: var(--mwm--color--red-400);
    bottom: 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    right: -400px;
    top: var(--wp-admin--admin-bar--height, 0px);
    transition: transform 0.25s;
    width: 400px;
    z-index: 99999;
  }
  .site-menu-container.is-opened {
    transform: translateX(-100%);
  }
  /* MENU HEADER*/
  .site-menu-container__header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 2.5rem 1.25rem;
  }
  .site-menu-container__close {
    cursor: pointer;
  }
  /* MENU FIRST LEVEL */
  .site-menu a {
    display: block;
    margin: 0 1.25rem;
    padding: 1.25rem 0;
  }
  .site-menu li:not(:last-child) a {
    border-bottom: 1px solid var(--mwm--color--red-200);
  }
}
@media (max-width: 767px) {
  /* MENU  */
  .site-menu-container {
    right: -100%;
    width: 100%;
  }
}
@media (min-width: 768px) {
  /* MENU HEADER*/
  .site-menu-container__header {
    padding: 2.5rem 2rem;
  }
}
@media (min-width: 1280px) {
  /* BARS */
  .bars {
    display: none;
  }
  /* CLOSE */
  .site-menu-container__close {
    display: none;
  }
  /* MENU FIRST LEVEL */
  .site-menu {
    overflow: inherit;
  }
  .site-menu ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .site-menu li:first-child {
    margin-left: 0;
  }
  .site-menu a {
    align-items: center;
    border: none;
    display: flex;
    margin: 0;
    padding: 0 1.25rem;
    transition: background 0.2s, color 0.2s;
  }
  .has-header-2 .site-menu a {
    color: var(--mwm--color--red-400);
  }
  .has-header-2 .site-menu li:hover a {
    color: var(--mwm--color--red-400);
    text-decoration: underline;
  }
  .has-header-2 .site-menu li:last-child a {
    background-color: var(--mwm--color--red-200);
    border-radius: 4px;
    color: var(--mwm--color--white);
    font-weight: var(--mwm--font-weight--semi-bold);
    margin-left: 2.5rem;
    padding: 0.5rem 1.25rem;
    text-transform: uppercase;
  }
  .has-header-2 .site-menu li:last-child:hover a {
    text-decoration: none;
  }
  .has-header-2 .site-menu li:nth-last-child(2) a {
    border-right: 1px solid transparent;
    padding-right: 0;
  }
  .site-menu li:last-child a {
    padding-right: 0;
  }
  .site-menu li:not(:last-child) a {
    border-bottom: unset;
    border-right: 1px solid var(--mwm--color--red-200);
  }
  .site-menu a:hover,
  .site-menu > ul > li.current_page_item > a,
  .site-menu > ul > li.current-menu-item > a,
  .site-menu > ul > li.current-menu-ancestor > a {
    background-color: transparent;
    color: var(--mwm--accent-color);
  }
  .site-menu .menu-item-has-children > a:after,
  .site-menu .page_item_has_children > a:after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath id='PolÃ­gono_2' data-name='PolÃ­gono 2' d='M5,0l5,6H0Z' transform='translate(10 6) rotate(180)' fill='%2343899d'/%3E%3C/svg%3E%0A");
    line-height: 0;
    margin-left: 0.625rem;
  }
  .site-menu li.menu-item-has-children .menu-item__btn,
  .site-menu li.page_item_has_children .menu-item__btn {
    display: none;
  }
  /* MENU SECOND LEVEL */
  .site-menu ul.sub-menu,
  .site-menu ul.children {
    border-radius: 0.25rem;
    display: block !important;
    flex-direction: column;
    justify-content: flex-start;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    transition: opacity 0.5s;
    visibility: hidden;
    z-index: 99;
  }
  .site-menu ul.sub-menu li,
  .site-menu ul.children li {
    margin: 0;
    transition: background 0.2s;
    white-space: nowrap;
    width: 100%;
  }
  .site-menu ul.sub-menu li:first-child {
    padding-top: 0.5rem;
  }
  .site-menu ul.sub-menu li:first-child a {
    border-radius: 0.625rem 0.625rem 0 0;
  }
  .site-menu ul.sub-menu li:last-child a {
    border-radius: 0 0 0.625rem 0.625rem;
  }
  .site-menu ul.sub-menu a,
  .site-menu ul.children a {
    background-color: var(--mwm--color--gray);
    border-radius: 0;
    display: block;
    min-width: 150px;
    padding: 0.5rem 1.5rem;
    text-align: left;
    width: 100%;
  }
  .site-menu ul.sub-menu a:hover,
  .site-menu ul.sub-menu > li.current_page_item > a,
  .site-menu ul.sub-menu > li.current-menu-item > a,
  .site-menu ul.sub-menu > li.current-menu-ancestor > a {
    background-color: var(--mwm--color--gray);
    color: var(--mwm--accent-color);
  }
  .site-menu .menu-item-has-children:hover > ul.sub-menu,
  .site-menu .page_item_has_children:hover > ul.children {
    opacity: 1;
    visibility: visible;
  }
  .site-menu ul.sub-menu .menu-item-has-children > a:after,
  .site-menu ul.sub-menu .page_item_has_children > a:after {
    display: none;
  }
  /* MENU THIRD LEVEL */
  .site-menu ul.sub-menu ul.sub-menu,
  .site-menu ul.children ul.children {
    display: none !important;
  }
}
/*	# SITE FOOTER
===================================*/
.site-footer {
  /* site-footer info */
  /* site-footer legal */
}
.site-footer__info {
  background-color: var(--mwm--color--red-400);
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  margin-bottom: -0.9375rem;
  padding: 2.5rem 0 6.25rem;
}
.site-footer__logo {
  color: var(--mwm--color--white);
  max-width: 10rem;
}
.site-footer .footer-group.flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.site-footer .footer-group__title {
  color: var(--mwm--color--white);
  font-size: 1rem;
}
.site-footer .footer-group .menu a {
  color: var(--mwm--color--white);
  text-decoration: none;
}
.site-footer .footer-group p {
  color: var(--mwm--color--white);
  margin: 0;
}
.site-footer__socials {
  align-items: center;
  display: flex;
  gap: 0.625rem;
}
.site-footer__sellos {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.site-footer .footer-group.dossier .btn {
  display: flex;
}
.site-footer .footer-group.logo,
.site-footer .footer-group.dossier,
.site-footer .footer-group.sellos {
  grid-column: span 2;
}
.site-footer .footer-group.logo {
  margin-bottom: 2.5rem;
}
.site-footer .footer-group.nav,
.site-footer .footer-group.ubicacion,
.site-footer .footer-group.contacto,
.site-footer .footer-group.siguenos,
.site-footer .footer-group.dossier {
  border-bottom: 1px solid #885b5b;
  padding-bottom: 2.5rem;
}
.site-footer .footer-group.contacto,
.site-footer .footer-group.siguenos,
.site-footer .footer-group.dossier {
  padding-top: 1.25rem;
}
.site-footer .footer-group.sellos {
  padding-top: 1.25rem;
}
.site-footer__legal {
  background-color: var(--mwm--color--red-200);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  color: var(--mwm--color--white);
  padding: 1.25rem 0 1.875rem;
  text-align: center;
}
.site-footer__legal .menu {
  align-items: center;
  display: flex;
  gap: 1.75rem;
  justify-content: center;
}
.site-footer__legal .menu a {
  color: var(--mwm--color--white);
  text-decoration: none;
}
.site-footer__copy {
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .site-footer {
    /* site-footer info */
    /* site-footer legal */
  }
  .site-footer__logo {
    max-width: none;
  }
  .site-footer__info {
    padding: 7.5rem 0;
  }
  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .site-footer .footer-group {
    padding: 0 2.5rem;
  }
  .site-footer .footer-group:not(:last-child) {
    border-right: 1px solid #885b5b;
  }
  .site-footer .footer-group.ubicacion,
  .site-footer .footer-group.dossier {
    border-right: 1px solid transparent;
  }
  .site-footer .footer-group.logo,
  .site-footer .footer-group.dossier {
    grid-column: span 1;
  }
  .site-footer .footer-group.logo {
    border-bottom: 1px solid #885b5b;
    margin: 0;
    padding-bottom: 2.5rem;
  }
  .site-footer__legal {
    padding: 2.125rem 0;
  }
}
@media (min-width: 1024px) {
  .site-footer {
    /* site-footer info */
    /* site-footer legal */
  }
  .site-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .site-footer .footer-group.ubicacion {
    border-right: 1px solid #885b5b;
  }
  .site-footer .footer-group.contacto {
    border-right: 1px solid transparent;
    padding-top: 0;
  }
  .site-footer .footer-group.siguenos,
  .site-footer .footer-group.dossier {
    border-bottom: 1px solid transparent;
    border-right: 1px solid #885b5b;
    padding-bottom: 0;
    padding-top: 50px;
  }
  .site-footer .footer-group.sellos {
    padding-bottom: 0;
    padding-top: 50px;
  }
  .site-footer__legal {
    text-align: start;
  }
  .site-footer__legal-wrapper {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  .site-footer__copy {
    margin: 0;
  }
}

/*	# SECTION TEXT
===================================*/
.section-text .marker-text {
  margin-bottom: 1.25rem;
}
.section-text__title {
  color: var(--mwm--color--red-400);
  font-weight: var(--mwm--font-weight--regular);
  margin: 0;
}
.section-text__subtitle {
  color: var(--mwm--color--red-400);
}
.section-text .btn {
  display: flex;
}
.section-text__desc {
  color: var(--mwm--color--red-200);
  font-weight: var(--mwm--font-weight--semi-bold);
  margin-bottom: 0;
}
.section-text.with-desc .section-text__title, .section-text.only-text .section-text__title {
  max-width: 41.25rem;
}
.section-text.with-desc .section-text__title {
  margin-bottom: 1.875rem;
}
.section-text.with-desc .section-text__desc {
  margin-left: auto;
  max-width: 28.125rem;
}
@media (min-width: 768px) {
  .section-text.with-desc .section-text__title {
    margin-bottom: 2.5rem;
  }
}

/*	# MARKER TEXT
===================================*/
.marker-text {
  align-items: center;
  color: var(--mwm--color--red-200);
  display: flex;
  gap: 0.625rem;
}
.marker-text span {
  color: var(--mwm--color--red-200);
  font-weight: var(--mwm--font-weight--semi-bold);
  text-transform: uppercase;
}

/*	# MAIN HERO
===================================*/
.main-hero {
  margin-bottom: -1.25rem;
  position: relative;
}
.main-hero__media video, .main-hero__media img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.main-hero .gradient-bottom {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  bottom: 0;
  height: 50%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.main-hero__text {
  padding: 13.75rem 0 8.75rem;
  z-index: 2;
}
.main-hero__text-logo {
  color: var(--mwm--color--white);
  margin-bottom: 1.875rem;
  width: 50%;
}
.main-hero__title {
  color: var(--mwm--color--white);
  font-weight: var(--mwm--font-weight--regular);
  margin-bottom: 3.75rem;
  text-transform: uppercase;
}
.main-hero__button .btn {
  display: flex;
}
.main-hero .btn-scroll {
  display: none;
}
.main-hero .section-text .marker-text,
.main-hero .section-text .marker-text span, .main-hero .section-text__title {
  color: var(--mwm--color--white);
}
.main-hero.hero-2 .main-hero__text {
  padding: 25rem 0 5rem;
}
.main-hero.hero-2 .section-text__title {
  max-width: 42.5rem;
}
@media (min-width: 768px) {
  .main-hero__button {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  .main-hero__title {
    width: 40%;
  }
  .main-hero .btn-scroll {
    display: block;
  }
}
@media (min-width: 1024px) {
  .main-hero__text {
    padding: 17.5rem 0 6.25rem;
  }
  .main-hero.hero-2 .main-hero__text {
    padding: 25rem 0 6.25rem;
  }
}

/*	# SECTION COMPANIA
===================================*/
.section-compania {
  background-color: var(--mwm--color--white);
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  padding: 7.5rem 0;
}
.section-compania .section-text {
  max-width: 41.25rem;
}
.section-compania .section-text__title {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .section-compania {
    padding: 10rem 0;
  }
  .section-compania .section-text__title {
    margin-bottom: 5rem;
  }
}

/*	# SECTION IMAGE BOX
===================================*/
.section-image-box {
  background-color: var(--mwm--color--red-400);
  padding: 6.25rem 0;
}
.section-image-box__image {
  margin: 0;
  overflow: hidden;
  padding-bottom: 115.7754010695%;
  position: relative;
}
.section-image-box__image img,
.section-image-box__image video {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-image-box__image img {
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .section-image-box {
    padding: 7.5rem 0;
  }
  .section-image-box__image {
    margin: 0;
    overflow: hidden;
    padding-bottom: 54.5302013423%;
    position: relative;
  }
  .section-image-box__image img,
  .section-image-box__image video {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
  }
}

/*	# SECTION SERVICIOS
===================================*/
.section-servicios {
  background-color: var(--mwm--color--white);
  overflow: hidden;
  padding: 6.25rem 0;
  /* SLIDER */
}
.section-servicios .section-text {
  margin-bottom: 3.75rem;
}
.section-servicios .section-text h2 {
  margin: 0;
}
.section-servicios .slider__dots {
  padding-top: 3.125rem;
}
.section-servicios .slider__header {
  margin-bottom: 3.75rem;
}
.section-servicios .slider__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
.section-servicios .slider__arrows {
  align-items: center;
  display: flex;
  gap: 0.625rem;
  padding-right: 2.5rem;
}
.section-servicios .btn {
  border-left: 1px solid var(--mwm--color--red-200);
  display: flex;
  padding-left: 2.5rem;
}
.section-servicios .slick-track {
  display: flex;
}
.section-servicios .slick-slide {
  height: auto;
  margin: 0 1.25rem;
}
.section-servicios .slick-list {
  margin: 0 -1.25rem;
  overflow: visible;
}
.section-servicios .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.section-servicios .slick-dots {
  position: static;
}
.section-servicios .slick-dots li button::before {
  content: unset;
}
.section-servicios .slick-dots li {
  border: 1px solid #fe4e59;
  border-radius: 50%;
  height: 0.625rem;
  width: 0.625rem;
}
.section-servicios .slick-dots li.slick-active {
  background-color: #fe4e59;
}
.section-servicios .slick-dots button {
  height: 0.625rem;
  width: 0.625rem;
}
.section-servicios__slider {
  position: relative;
}
.section-servicios__slider::after {
  background-color: var(--mwm--color--white);
  content: "";
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .section-servicios {
    padding: 7.5rem 0;
    /* SLIDER */
  }
  .section-servicios .section-text {
    margin: 0;
    width: 46%;
  }
  .section-servicios .slider__dots {
    padding-top: 4.375rem;
  }
  .section-servicios .slider__header {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5rem;
  }
  .section-servicios .slider__controls {
    width: 50%;
  }
}

/*	# LEGAL LIST
===================================*/
/* Plain-bullet enumeration for certificaciones.php's authorization list. New
   markup (not ported from any _reference source — see that page's comment),
   so it has no WP-block-library bullet CSS to fall back on; styled to match
   the site's brand marker (small red square) instead of the browser default. */
.legal-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
  margin: 0 0 3.75rem;
  padding: 0;
}
@media (min-width: 768px) {
  .legal-list {
    margin-bottom: 6.25rem;
  }
}
.legal-list li {
  padding-left: 1.5rem;
  position: relative;
}
.legal-list li:before {
  background-color: var(--mwm--color--red-400);
  border-radius: 1px;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0.4em;
  width: 8px;
}

/*	# PAGE SERVICIOS
===================================*/
/* Ported from _reference/html/servicios.html's page-local <style
   id="mwm-mwm-servicios-hero-style-inline-css">. Migration wrongly assumed every
   mwm-* inline <style> block duplicated this stylesheet (see head/head.php's
   comment) — this one didn't, so the .page-servicios__list grid + .card-servicio
   width rules were silently dropped, leaving cards full-width/stacked instead of
   the 2-column layout on servicios.php (and the .page-servicios spacer margin
   affecting aviso-legal.php / compania.php's hero-text wrapper). */
.page-servicios {
  margin: 13.75rem 0 6.25rem;
}
.page-servicios .section-text {
  margin-bottom: 6.25rem;
}
.page-servicios__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-servicios .card-servicio {
  width: 100%;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .page-servicios .section-text {
    margin-bottom: 7.5rem;
  }
  .page-servicios .card-servicio {
    width: 49.1%;
  }
}

/*	# SERVICIO BOX
===================================*/
.card-servicio {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.card-servicio__media img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.card-servicio__info-wrapper {
  padding: 15rem 1.25rem 1.25rem;
}
.card-servicio__info {
  background-color: var(--mwm--color--white);
  border-radius: 8px;
  padding: 1.25rem;
}
.card-servicio__info-icon {
  margin-bottom: 1.25rem;
  margin-top: -3.125rem;
}
.card-servicio__title {
  color: var(--mwm--color--red-400);
  margin-bottom: 0;
  text-transform: uppercase;
}
.card-servicio.with-desc .card-servicio__title {
  margin-bottom: 1.25rem;
}
.card-servicio__desc {
  color: var(--mwm--color--red-400);
  margin: 0;
}
@media (min-width: 768px) {
  .card-servicio__info {
    padding: 2.5rem;
  }
  .card-servicio__info-icon {
    margin-bottom: 2.5rem;
    margin-top: -4.5rem;
  }
}

/*	# TPL SECTION SOLUCIONES
===================================*/
.section-soluciones {
  background-color: var(--mwm--color--gray-50);
  position: relative;
}
.section-soluciones__text {
  padding: 5rem 0 6.25rem;
}
.section-soluciones .section-text__title {
  margin-bottom: 0.5rem;
}
.section-soluciones__media {
  margin: 0 -1.25rem;
}
.section-soluciones__media img {
  height: 100%;
  max-height: 32.5rem;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 768px) {
  .section-soluciones .section-text__title {
    margin-bottom: 2.5rem;
  }
  .section-soluciones__wrapper {
    display: flex;
  }
  .section-soluciones__media {
    height: 100%;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
    width: 50%;
  }
  .section-soluciones__media img {
    max-height: unset;
  }
  .section-soluciones__text {
    margin-left: auto;
    padding-left: 2rem;
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .section-soluciones__text {
    padding: 6.25rem 0 14.375rem 5rem;
  }
}

/*	# SECTION COMPROMISO
===================================*/
.section-compromiso {
  background-color: var(--mwm--color--red-400);
  padding: 6.25rem 0;
}
.section-compromiso__wrapper {
  background-color: var(--mwm--color--white);
  border-radius: 8px;
}
.section-compromiso .section-text {
  padding: 5rem 1.25rem;
}
.section-compromiso .section-text__title {
  margin-bottom: 3.75rem;
}
.section-compromiso__media {
  padding: 1.25rem;
}
.section-compromiso__media-wrapper {
  margin: 0;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
  height: 100%;
}
.section-compromiso__media-wrapper img,
.section-compromiso__media-wrapper video {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .section-compromiso__wrapper {
    display: flex;
    justify-content: space-between;
  }
  .section-compromiso .section-text, .section-compromiso__media {
    width: 50%;
  }
  .section-compromiso .section-text {
    padding-left: 2.5rem;
    padding-right: 0;
  }
  .section-compromiso .section-text__title {
    margin-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  .section-compromiso__media {
    padding: 2.5rem;
  }
  .section-compromiso .section-text {
    padding: 6.25rem 2.5rem 12.5rem 5rem;
  }
}

/*	# CONTACTO BANNER
===================================*/
.contacto-banner {
  margin-bottom: -0.9375rem;
  padding: 3.75rem 0 5rem;
  position: relative;
}
.contacto-banner__wrapper {
  background-color: var(--mwm--color--white);
  border-radius: 0.5rem;
  padding: 3.75rem 2.5rem;
}
.contacto-banner__media img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.contacto-banner .section-text__title {
  margin-bottom: 1.25rem;
}
.contacto-banner .section-text__subtitle {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .contacto-banner {
    padding: 6.875rem 0;
  }
  .contacto-banner__wrapper {
    max-width: 41.125rem;
    padding: 5rem 7.5rem 5rem 5rem;
  }
}

/*	# SECTION PAGE DESCRIPTION
===================================*/
.section-page-description {
  background-color: var(--mwm--color--white);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 7.5rem 0;
}
@media (min-width: 768px) {
  .section-page-description {
    padding: 10rem 0;
  }
}

/*	# SECTION EQUIPO
===================================*/
.section-equipo {
  background-color: var(--mwm--color--red-400);
  padding: 6.25rem 0;
}
.section-equipo__media {
  margin-bottom: 1.25rem;
}
.section-equipo__media-wrapper {
  margin: 0;
  overflow: hidden;
  padding-bottom: 115.7754010695%;
  position: relative;
}
.section-equipo__media-wrapper img,
.section-equipo__media-wrapper video {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-equipo__media-wrapper img {
  border-radius: 0.5rem;
}
.section-equipo__text {
  background-color: var(--mwm--color--white);
  border-radius: 0.5rem;
  padding: 3.75rem 0;
}
@media (min-width: 568px) {
  .section-equipo__media-wrapper {
    margin: 0;
    overflow: hidden;
    padding-bottom: 54.5302013423%;
    position: relative;
  }
  .section-equipo__media-wrapper img,
  .section-equipo__media-wrapper video {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .section-equipo {
    padding: 7.5rem 0;
  }
  .section-equipo__text {
    padding: 80px 0;
  }
}

/*	# TPL PURA ENERGIA
===================================*/
.section-pura-energia {
  background-color: var(--mwm--color--gray-50);
  position: relative;
}
.section-pura-energia__text {
  padding: 5rem 0 5.625rem;
}
.section-pura-energia .section-text__logo {
  margin-bottom: 1.875rem;
}
.section-pura-energia__media {
  margin: 0 -1.25rem;
}
.section-pura-energia__media img {
  height: 100%;
  max-height: 32.5rem;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 768px) {
  .section-pura-energia .section-text__logo {
    margin-bottom: 2.5rem;
  }
  .section-pura-energia__wrapper {
    display: flex;
  }
  .section-pura-energia__media {
    height: 100%;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
    width: 50%;
  }
  .section-pura-energia__media img {
    max-height: unset;
  }
  .section-pura-energia__text {
    margin-left: auto;
    padding-left: 2rem;
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .section-pura-energia__text {
    padding: 6.25rem 0 14.375rem 5rem;
  }
}

/*	# SECTION CLIENTES
===================================*/
.section-clientes {
  padding: 6.25rem 0;
}
.section-clientes .section-text {
  margin-bottom: 3.75rem;
}
.section-clientes__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 1.875rem;
}
.section-clientes__logo {
  align-items: center;
  background-color: var(--mwm--color--gray-50);
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 1.875rem;
  width: 100%;
}
@media (min-width: 568px) {
  .section-clientes__logo {
    margin: 0;
    width: 48.4%;
  }
}
@media (min-width: 768px) {
  .section-clientes {
    padding: 7.5rem 0;
  }
  .section-clientes .section-text {
    margin-bottom: 5rem;
  }
  .section-clientes__logo {
    width: 31.4%;
  }
}
@media (min-width: 1024px) {
  .section-clientes__logo {
    width: 23.4%;
  }
}

/*	# SECTION SELLOS
===================================*/
.section-sellos {
  background-color: var(--mwm--color--gray-50);
  overflow: hidden;
  padding: 6.25rem 0;
  /* slider */
  /* sello box */
}
.section-sellos .section-text {
  margin-bottom: 3.75rem;
  text-align: center;
}
.section-sellos .section-text .marker-text {
  justify-content: center;
}
/* No slider library here anymore — sello-box already has a fixed width
   (16.4375rem below), and with only 3-4 cards there's nothing to scroll
   through. slick's variableWidth track kept left-aligning the row whenever a
   page had fewer sellos than slidesToShow (certificaciones.php's 3 vs
   compania.php's 4), and neither CSS margin/flex tricks on ancestors nor a
   JS-side recentering of its transform could reliably override slick's own
   positioning — simplest fix is to not fight the carousel for a row that
   never needs to slide. */
.section-sellos .slider__slider {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.section-sellos__slider {
  position: relative;
}
.section-sellos__slider::after {
  background-color: var(--mwm--color--gray-50);
  content: "";
  height: 100%;
  position: absolute;
  right: calc(100% + 1.25rem);
  top: 0;
  width: 100%;
}
.section-sellos .sello-box {
  background-color: var(--mwm--color--red-400);
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 1.25rem;
  width: 16.4375rem;
}
.section-sellos .sello-box__title {
  font-weight: var(--mwm--font-weight--semi-bold);
  margin-bottom: 1.875rem;
}
.section-sellos .sello-box__title span {
  font-weight: var(--mwm--font-weight--regular);
}
.section-sellos .sello-box .btn--3 a {
  color: var(--mwm--color--white);
}
@media (min-width: 768px) {
  .section-sellos {
    padding: 7.5rem 0;
    /* sello box */
  }
  .section-sellos .section-text {
    margin-bottom: 5rem;
  }
  .section-sellos .sello-box {
    padding: 2rem;
  }
  .section-sellos .sello-box__title {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .section-sellos {
    /* slider */
  }
  .section-sellos .slick-slide {
    max-width: 100%;
  }
}

/*	# SECTION SOLUCIONES
===================================*/
.section-controla-energia {
  background-color: var(--mwm--color--red-400);
  position: relative;
}
.section-controla-energia__text {
  padding: 5rem 0 6.25rem;
}
.section-controla-energia .section-text__title {
  color: var(--mwm--color--white);
  margin-bottom: 0.5rem;
}
.section-controla-energia .section-text__desc {
  color: var(--mwm--color--white);
  margin-bottom: 3.75rem;
}
.section-controla-energia__media {
  margin: 0 -1.25rem;
}
.section-controla-energia__media img {
  height: 100%;
  max-height: 32.5rem;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 768px) {
  .section-controla-energia .section-text__title {
    margin-bottom: 2.5rem;
  }
  .section-controla-energia .section-text__desc {
    color: var(--mwm--color--white);
    margin-bottom: 5rem;
  }
  .section-controla-energia__wrapper {
    display: flex;
  }
  .section-controla-energia__media {
    height: 100%;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
    width: 50%;
  }
  .section-controla-energia__media img {
    max-height: unset;
  }
  .section-controla-energia__text {
    margin-left: auto;
    padding-left: 2rem;
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .section-controla-energia__text {
    padding: 6.25rem 0 14.375rem 5rem;
  }
}

/*	# SECTION FTV
===================================*/
.section-ftv {
  padding: 6.25rem 0;
}
.section-ftv__wrapper {
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}
.section-ftv__media img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.section-ftv__box {
  background-color: var(--mwm--color--white);
  border-radius: 0.5rem;
  margin: 5rem 0;
  padding: 3.75rem 1.875rem;
}
.section-ftv .section-text__wrapper {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .section-ftv {
    padding: 7.5rem 0;
  }
  .section-ftv .section-text {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin: 0;
  }
  .section-ftv .section-text__title {
    max-width: 28.125rem;
  }
  .section-ftv .section-text .btn {
    flex-shrink: 0;
  }
}
@media (min-width: 1024px) {
  .section-ftv__box {
    padding: 5rem 6.25rem;
  }
}

/*	# PROYECTOS LIST
===================================*/
.proyectos-list .card-proyecto {
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .proyectos-list .card-proyecto {
    margin-bottom: 2.5rem;
  }
  .proyectos-list .card-proyecto:nth-child(even) .card-proyecto__media {
    order: 1;
  }
}

/*	# CARD PROYECTO
===================================*/
.card-proyecto {
  background-color: var(--mwm--color--gray-50);
  border-radius: 8px;
  padding: 1.25rem;
}
.card-proyecto__media {
  margin-bottom: 1.25rem;
}
.card-proyecto__media-wrapper {
  margin: 0;
  overflow: hidden;
  padding-bottom: 71.8562874251%;
  position: relative;
  border-radius: 0.5rem;
  height: 100%;
  overflow: hidden;
}
.card-proyecto__media-wrapper img,
.card-proyecto__media-wrapper video {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.card-proyecto__info {
  background-color: var(--mwm--color--white);
  border-radius: 8px;
  padding: 1.25rem;
}
.card-proyecto__headline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.875rem;
}
.card-proyecto__headline-wrapper {
  align-items: center;
  display: flex;
  gap: 1.25rem;
}
.card-proyecto__tag {
  color: var(--mwm--color--red-400);
  flex-shrink: 0;
  font-weight: var(--mwm--font-weight--bold);
  text-transform: uppercase;
}
.card-proyecto__client {
  border-right: 1px solid var(--mwm--color--red-200);
  color: var(--mwm--color--red-400);
  font-weight: var(--mwm--font-weight--semi-bold);
  padding-right: 1.25rem;
  text-transform: uppercase;
}
.card-proyecto__year {
  color: var(--mwm--color--red-400);
}
.card-proyecto__title {
  font-weight: var(--mwm--font-weight--semi-bold);
  margin-bottom: 1.875rem;
}
.card-proyecto__desc {
  color: var(--mwm--color--red-400);
}
@media (min-width: 768px) {
  .card-proyecto__wrapper {
    display: flex;
    justify-content: space-between;
  }
  .card-proyecto__headline, .card-proyecto__title {
    margin-bottom: 2.5rem;
  }
  .card-proyecto__media, .card-proyecto__info {
    margin: 0;
    width: 48.4%;
  }
  .card-proyecto__info {
    padding: 2.125rem 3.125rem 3.5rem;
  }
}
@media (min-width: 1280px) {
  .card-proyecto__headline {
    flex-direction: row;
  }
  .card-proyecto__client {
    border-left: 1px solid var(--mwm--color--red-200);
    padding-left: 1.25rem;
  }
}

/*	# PAGINATION
===================================*/
.pagination__wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: -1.25rem;
  max-width: 28.125rem;
  padding: 0 2.5rem 7.5rem;
}
.pagination__links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 1rem;
}
.pagination .page-numbers .page-btn {
  background-color: var(--mwm--color--gray-50);
  border-radius: 0.5rem;
  color: var(--mwm--color--red-400);
  display: inline-block;
  font-size: 0.875rem;
  font-weight: var(--mwm--font-weight--semi-bold);
  margin-right: 1.25rem;
  padding: 0.625rem 1.25rem;
}
.pagination .page-numbers.current .page-btn {
  background-color: var(--mwm--color--red-200);
  color: var(--mwm--color--white);
}
.pagination .page-numbers.prev {
  margin-right: 2.5rem;
}
.pagination .page-numbers.prev svg {
  transform: rotate(180deg);
}
.pagination .page-numbers.next {
  margin-left: 1.25rem;
}

/*	# PAGINATION
===================================*/
.section-compromiso-boxes {
  background-color: var(--mwm--color--gray-50);
  padding: 6.25rem 0;
}
.section-compromiso-boxes .compromiso-box {
  background-color: var(--mwm--color--white);
  border-radius: 0.5rem;
  margin-bottom: 1.875rem;
  padding: 2.25rem;
}
.section-compromiso-boxes .marker-text {
  margin-bottom: 1.25rem;
}
.section-compromiso-boxes .marker-text h3 {
  color: var(--mwm--color--red-400);
  font-size: 1.25rem;
  font-weight: var(--mwm--font-weight--semi-bold);
  margin: 0;
}
@media (min-width: 568px) {
  .section-compromiso-boxes__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .section-compromiso-boxes .compromiso-box {
    width: 48.4%;
  }
}
@media (min-width: 768px) {
  .section-compromiso-boxes {
    padding: 7.5rem 0;
  }
}
@media (min-width: 1024px) {
  .section-compromiso-boxes .compromiso-box {
    width: 31.5%;
  }
}

/*	# CONTACT FORM
===================================*/
.contact-form {
  padding-bottom: 6.25rem;
}
.contact-form__inputs {
  margin-bottom: 2.5rem;
}
.contact-form__field {
  border: 1px solid #d5d5d5;
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 1.5rem;
}
.contact-form p {
  margin: 0;
}
.contact-form__field label {
  color: var(--mwm--color--red-400);
}
.contact-form__field input {
  color: var(--mwm--color--red-800);
}
.contact-form input::-webkit-outer-spin-button,
.contact-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.contact-form input {
  -moz-appearance: textfield;
}
.contact-form ::placeholder {
  color: rgba(113, 20, 35, 0.5254901961);
}
.contact-form__field input, .contact-form__field textarea, .contact-form__field select {
  background: transparent;
  border: 0;
  outline: none;
  padding: 0;
  resize: none;
}
.contact-form__select {
  height: 100%;
  position: relative;
  width: 100%;
}
.contact-form__select label {
  position: relative;
  z-index: 1;
}
.contact-form__select label::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath id='Polígono_3' data-name='Polígono 3' d='M5,0l5,6H0Z' transform='translate(10 6) rotate(180)' fill='%23eb5c5f'/%3E%3C/svg%3E%0A");
  line-height: 1;
  position: absolute;
  right: 0;
  top: 0;
}
.contact-form__select select {
  color: rgba(113, 20, 35, 0.5254901961);
  cursor: pointer;
  margin-top: -2rem;
  padding-top: 2rem;
  z-index: 2;
}
.contact-form__checkbox {
  margin-bottom: 2.5rem;
}
.contact-form__checkbox label {
  position: relative;
}
.contact-form__checkbox span {
  color: var(--mwm--color--red-400);
}
.contact-form__checkbox input[type=checkbox] {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}
.contact-form__checkbox input[type=checkbox] ~ span {
  cursor: pointer;
  display: inline-block;
  padding-left: 1.875rem;
  position: relative;
}
.contact-form__checkbox input[type=checkbox] ~ span::before {
  border-radius: 1px;
  content: "";
  height: 1.0625rem;
  left: 0;
  outline: 2px solid var(--mwm--color--red-400);
  position: absolute;
  top: 0.25rem;
  width: 1.0625rem;
}
.contact-form__checkbox input[type=checkbox]:checked ~ span::after {
  background-color: var(--mwm--color--red-200);
  border: 2px solid var(--mwm--color--white);
  border-radius: 1px;
  content: "";
  height: 1.0625rem;
  left: 0;
  position: absolute;
  top: 0.25rem;
  width: 1.0625rem;
}
.contact-form .btn {
  display: flex;
}
@media (min-width: 768px) {
  .contact-form {
    padding-bottom: 7.5rem;
  }
  .contact-form__inputs {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form__field {
    margin: 0;
  }
  .contact-form__field.textarea {
    grid-column: span 2;
  }
}

/*	# SECTION OFICINAS
===================================*/
.section-oficinas {
  margin-bottom: -1.25rem;
  padding-bottom: 7.5rem;
}
.section-oficinas__media {
  margin-bottom: 1.25rem;
}
.section-oficinas__media-wrapper {
  margin: 0;
  overflow: hidden;
  padding-bottom: 76.4705882353%;
  position: relative;
  border-radius: 8px;
  height: 100%;
}
.section-oficinas__media-wrapper img,
.section-oficinas__media-wrapper video {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-oficinas .oficina-box {
  background-color: var(--mwm--color--gray-50);
  border-radius: 8px;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
}
.section-oficinas .oficina-box .marker-text {
  margin-bottom: 1.25rem;
}
.section-oficinas .oficina-box .marker-text span {
  color: var(--mwm--color--red-400);
  font-weight: var(--mwm--font-weight--bold);
}
.section-oficinas .oficina-box__title {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.section-oficinas .oficina-box__desc {
  color: var(--mwm--color--red-400);
}
.section-oficinas .oficina-box.resaltado {
  padding: 1.875rem 1.25rem;
}
.section-oficinas .oficina-box.resaltado .oficina-box__title {
  font-size: 1.25rem;
  margin-bottom: 1.875rem;
}
.section-oficinas .oficina-box.resaltado .oficina-box__desc {
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .section-oficinas {
    padding-bottom: 10rem;
  }
  .section-oficinas__wrapper, .section-oficinas__col {
    column-gap: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .section-oficinas__col {
    grid-column: -1/1;
  }
  .section-oficinas .oficina-box {
    padding: 2.25rem;
  }
  .section-oficinas .oficina-box.resaltado {
    padding: 2.5rem 2.5rem 3.75rem 3.75rem;
  }
  .section-oficinas .oficina-box.resaltado .oficina-box__title {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
  .section-oficinas .oficina-box.resaltado .oficina-box__desc {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .section-oficinas__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*==================================================================
	# LAYOUT
====================================================================*/
/*	# TPL ARCHIVE
===================================*/
.tpl-archive .section-text {
  padding: 13.875rem 0 6.25rem;
}
.tpl-archive .section-text__desc {
  margin-bottom: 1.875rem;
}
.tpl-archive .section-text .btn {
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .tpl-archive .section-text {
    padding: 12.5rem 0 7.5rem;
  }
  .tpl-archive .section-text__desc {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .tpl-archive .section-text {
    padding-right: 6.25rem;
  }
}

/*	# TPL CONTACTO
===================================*/
.tpl-contacto .contact-text .section-text {
  padding: 13.875rem 0 6.25rem;
}
@media (min-width: 768px) {
  .tpl-contacto .contact-text .section-text {
    padding: 13.875rem 0 7.5rem;
  }
}/*# sourceMappingURL=style.css.map */

/* # CUSTOM OVERRIDES (ported verbatim from wp-custom-css, present on all 8 source pages)
   ===================================
   Merged from assets/css/custom.css per sdd-design.md §8.2 / §0.1 — this preserves the
   'exactly 8 assets/page' success criterion instead of loading custom.css as a 9th file.
   .BulletEspacio intentionally NOT ported: zero matches for that class in any of the
   8 pages under _reference/html/, confirmed dead. */
.site-footer__logo img { filter: brightness(0) invert(1); }
.page .footer-group.flex.dossier { display: none; }
.main-hero__button .btn:nth-child(1) { display: none; }
.main-hero__text .main-hero__button { justify-content: flex-end; }

/* # CONTACT FORM A11Y/VALIDATION (ported from wpcf7 rules in assets/css/styles.css,
   remapped to the .contact-form-* namespace used by components/contact-form.php)
   ===================================
   Per sdd-design.md §8.3: styles.css contained 173 lines total; only these rules have
   real effect in a native, non-AJAX build (no CF7 JS spinner/inert/floating-tip/file
   input/reflection field). Ported, verified against /contacto/, THEN styles.css deleted.
   Source lines refer to the original assets/css/styles.css (173 lines). */
.contact-form__sr-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}
.contact-form__response {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2; /* Blue */
}
.contact-form__response.is-hidden {
  display: none;
}
.contact-form__response.is-sent {
  border-color: #46b450; /* Green */
}
.contact-form__response.is-failed {
  border-color: #dc3232; /* Red */
}
.contact-form__response.is-spam {
  border-color: #f56e28; /* Orange */
}
.contact-form__response.is-invalid {
  border-color: #ffb900; /* Yellow */
}
.contact-form__control {
  position: relative;
}
.contact-form__error {
  color: #dc3232; /* Red */
  font-size: 1em;
  font-weight: normal;
  display: block;
}
.contact-form__checkbox-item {
  display: inline-block;
  margin: 0 0 0 1em;
}
.contact-form__checkbox-label::before,
.contact-form__checkbox-label::after {
  content: " ";
}
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  direction: ltr;
}
.contact-form__submit:disabled {
  cursor: not-allowed;
}

/* Optional enhancement — native replacement for the deleted CF7 validator (sdd-design.md
   §8.3). Only styles after user interaction, so nothing turns red on page load. */
.contact-form__field:has(input:user-invalid, textarea:user-invalid, select:user-invalid) {
  border-color: #dc3232;
}
.contact-form__field :user-invalid ~ .contact-form__error { display: block; }
.contact-form__error { display: none; }
