﻿/* Reset CSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: Manrope, "Segoe UI", sans-serif;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html,
html {
  scroll-behavior: smooth !important;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

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

* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

textarea {
  resize: vertical;
  font-size: 1rem;
  min-height: 2.6rem;
  max-height: 30rem;
}

button {
  cursor: pointer;
}

.grecaptcha-badge {
  bottom: 139px !important;
}

::selection {
  background-color: var(--color-principal-variente);
  color: var(--color-texto-primario);
}

:root {
  --color-principal: #6b5b40;
  --color-principal-contraste: #241e12;
  --color-principal-variente: #e8c890;
  --color-secundario: #133a52;
  --color-secundario-variente: #8dafc2;
  --color-texto-primario: #241e12;
  --color-texto-contraste-claro: #f7efe4;
  --color-alternativo: #bda175;
  --color-recursos-medio: #e9c991;
  --color-recursos-alto: #bda275;
  --color-destacado: #d9a5d2;
  --color-destacado-hover: #c085b9;
  --color-tempo: #0B6478;
  --color-tempo-hover: #084755;
  --color-tempo-destacado: #016579;
  --color-enfasis: #6b5b40;
  --color-enfasis-hover: #463b29;
  --color-negro: #1c1c1c;
  --color-gris-claro: #ccc;
  --color-gris-oscuro: #3b3b3b;
}

.ir-link {
  position: relative;
  top: -60px;
}

/* Fin reset */

/* Header */
header#menu {
  width: 100%;
  background: linear-gradient(135deg, #ba955a, #6b5b40);
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px clamp(12px, 3vw, 42px);
}

header#menu .main-menu>li>a,
header#menu .telefono-button-header {
  font-family: Manrope, "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

header#menu .menu_smartphone {
  padding: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: none;
}

header#menu .main-menu .dropdown {
  position: relative;
}

header#menu .main-menu .drop-menu {
  position: absolute;
  left: 50%;
  top: 125%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #bda275;
  border-radius: 10px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1001;
  list-style: none;
  width: 320px;
}

header#menu .main-menu .dropdown:hover .drop-menu,
header#menu .main-menu .dropdown:focus-within .drop-menu {
  opacity: 1;
  visibility: visible;
}

header#menu .main-menu .drop-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: block;
  padding: 12px 25px;
  transition: background 0.2s, color 0.2s, padding 0.2s, border-left 0.2s;
  border-left: 3px solid transparent;
  text-align: left;
  position: relative;
}

header#menu .main-menu .drop-menu li a:hover {
  background: #f5efe3;
  border-left: 3px solid #6b5b40;
  color: #241e12;
  padding-left: 32px;
}

header#menu .main-menu .drop-menu li:first-child a {
  border-radius: 10px 10px 0 0;
}

header#menu .main-menu .drop-menu li:last-child a {
  border-radius: 0 0 10px 10px;
}

header#menu #contenedor_logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  width: clamp(170px, 21vw, 246px);
}

header#menu #contenedor_izq_header {
  display: flex;
  flex-direction: row;
  gap: clamp(10px, 2vw, 24px);
  align-items: center;
}

header#menu .telefono-button-header {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin: 0;
  height: fit-content;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 6px 12px;
  transition: background 0.3s, border 0.3s;
  cursor: pointer;
}

header#menu #contenedor_menu {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

header#menu .main-menu {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
}

header#menu .main-menu>li>a {
  color: #fff;
  text-decoration: none;
  border-radius: 28px;
  display: block;
  transition: background 0.3s, border 0.3s;
  padding: 6px 16px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1px;
}

header#menu .main-menu>li>a:hover,
header#menu .main-menu>li.active>a {
  background-color: var(--color-principal-contraste);
}

header#menu .submenu-level-2 {
  position: absolute;
  left: 0;
  top: 74px;
  right: 0;
  width: 100%;
  min-height: 400px;
  background: #bda275;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  z-index: 1001;
  padding: 20px 0;
  align-items: flex-start;
  gap: 650px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.1s ease-in-out 0.3s;
}

header#menu .main-menu>li:hover .submenu-level-2,
header#menu .main-menu>li:focus-within .submenu-level-2 {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}

header#menu .level-2-header {
  flex: 0.5;
  min-width: 266px;
  width: 364px;
  padding-left: 25px;
  display: flex;
  flex-direction: column;
}

header#menu .level-2-header h4 {
  color: #fff;
  margin-bottom: 20px;
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
}

header#menu .level-2-list {
  width: 100%;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

header#menu .level-2-list>li {
  position: relative;
}

header#menu .level-2-list>li>a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: block;
  padding: 12px 25px;
  transition: background 0.2s, color 0.2s, padding 0.2s, border-left 0.2s;
  border-left: 3px solid transparent;
  text-align: left;
  position: relative;
}

header#menu .level-2-list>li>a:hover {
  background: #f5efe3;
  border-left: 3px solid #6b5b40;
  color: #241e12;
  padding-left: 32px;
}

header#menu .level-2-list>li>a:after {
  content: ">";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 18px;
  transition: color 0.2s;
}

header#menu .level-2-list>li>a:hover::after {
  color: #241e12;
}

header#menu .submenu-company-formation,
header#menu .submenu-accounting-tax,
header#menu .submenu-payroll,
header#menu .submenu-level-3 {
  position: absolute;
  left: 100%;
  min-width: 650px;
  background: #241e12;
  border-radius: 0 20px 20px 0;
  box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.13);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1002;
  display: block;
  pointer-events: none;
}

header#menu .submenu-company-formation {
  top: -79px;
  height: 400px;
}

header#menu .submenu-accounting-tax {
  top: -141px;
  height: 400px;
}

header#menu .submenu-payroll {
  top: -202px;
  height: 400px;
}

header#menu .submenu-real-estate {
  top: -264px;
  height: 400px;
}

header#menu .submenu-immigration {
  top: -326px;
  height: 400px;
}

header#menu .level-2-list>li:hover .submenu-level-3,
header#menu .level-2-list>li:focus-within .submenu-level-3 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

header#menu .level-3-list {
  list-style: none;
  padding: 0;
  flex-direction: column;
}

header#menu .level-3-list>li {
  margin-bottom: 10px;
}

header#menu .level-3-list>li>a {
  color: #241e12;
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 8px 15px;
  border-left: 3px solid transparent;
  transition: background 0.2s, color 0.2s, padding 0.2s, border-left 0.2s;
}

header#menu .level-3-list>li>a:hover {
  background: #e7dfce;
  color: #241e12;
  border-left: 3px solid #6b5b40;
  padding-left: 20px;
}

header#menu .common-content {
  flex: 0.5;
  padding: 0 30px;
  min-width: 439px;
}

header#menu .articles-column h4 {
  color: #fff;
  margin-bottom: 20px;
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

header#menu .article {
  display: flex;
  padding: 6px;
  align-items: flex-start;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}

header#menu .article:hover {
  background-color: white;
}

header#menu .article:hover .article-title,
header#menu .article:hover .article-date {
  color: var(--color-principal-contraste);
}

header#menu .article-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  margin-right: 15px;
  flex-shrink: 0;
  object-fit: cover;
}

header#menu .article-content h5 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 600;
}

header#menu .article-content .article-title {
  margin-bottom: 0;
}

header#menu .article-content p {
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

header#menu .article-separator {
  margin: 4px 0;
  height: 2px;
  background-color: white;
}

header#menu .language-selector {
  position: relative;
  display: inline-block;
}

header#menu .selected-language {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

header#menu .language-selector:hover header#menu .selected-language {
  cursor: pointer;
  border-color: var(--color-recursos-alto);
}

header#menu .flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
}

header#menu .language-dropdown {
  position: absolute;
  top: 100%;
  right: -5px;
  background: #bda275;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 8px 5px;
  margin-top: 5px;
}

header#menu .language-selector:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


header#menu .language-option {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 6px 10px;
  transition: background-color 0.2s ease;
}

header#menu .language-option:last-child {
  border-bottom: none;
}

header#menu .language-option:hover {
  background-color: #f5efe3;
}

header#menu .main-menu.open {
  display: flex !important;
  flex-direction: column;
  width: 100%;
  background: linear-gradient(135deg, #ba955a, #6b5b40);
}

header#menu .language-desktop {
  display: inline-block;
}

header#menu .language-mobile {
  display: none;
}

header#menu .main-menu li a {
  color: white;
  font-size: 16px;
}


header#menu .main-menu.active {
  display: flex;
}

header#menu #contenedor_logo svg {
  width: 100%;
  height: auto;
}

header#menu .telefono-button-header:hover {
  background-color: #000;
  border: 1px solid #000;
}

header#menu .submenu-level-2,
header#menu .submenu-level-3,
header#menu .submenu-company-formation,
header#menu .submenu-accounting-tax,
header#menu .submenu-payroll,
header#menu .submenu-real-estate,
header#menu .submenu-immigration,
header#menu .common-content,
header#menu .level-2-header {
  max-width: 100vw;
  box-sizing: border-box;
}

@media (max-width: 1600px) {
  header#menu .submenu-level-2 {
    gap: 500px;
  }

  header#menu .submenu-company-formation,
  header#menu .submenu-accounting-tax,
  header#menu .submenu-payroll,
  header#menu .submenu-level-3 {
    min-width: 504px;
  }
}

@media (max-width: 1500px) {
  header#menu .submenu-level-2 {
    gap: 400px;
  }

  header#menu .submenu-company-formation,
  header#menu .submenu-accounting-tax,
  header#menu .submenu-payroll,
  header#menu .submenu-level-3 {
    min-width: 400px;
  }
}

@media (max-width: 1366px) {

  header#menu .submenu-level-2 {
    top: 118px;
  }
}

@media (max-width: 1349px) {

  header#menu .submenu-company-formation,
  header#menu .submenu-accounting-tax,
  header#menu .submenu-payroll,
  header#menu .submenu-level-3 {
    min-height: 415px;
  }
}

@media (max-width: 1300px) {
  header#menu .submenu-level-2 {
    gap: 390px;
  }
}

@media (max-width: 1200px) {
  header#menu .submenu-level-2 {
    gap: 394px;
  }

  header#menu #contenedor_menu {
    position: relative;
  }

  header#menu #contenedor_izq_header {
    flex-direction: row;
    gap: 30px;
  }

  header#menu .main-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 64px;
    width: 100%;
    right: 0;
    background: var(--color-principal);
    border-radius: 0 0 12px 12px;
    z-index: 1000;
    gap: 0;
  }

  header#menu .main-menu>li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  header#menu .main-menu>li:last-child {
    border-bottom: 0;
  }

  header#menu .main-menu>li>a {
    width: 100%;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 0;
    text-align: center;
    position: relative;
  }

  header#menu .main-menu>li:last-child>a {
    border-radius: 0 0 12px 12px;
  }

  header#menu .menu_smartphone {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }

  header#menu .submenu-level-2 {
    position: static;
    width: 100%;
    min-width: unset;
    box-shadow: none;
    border-radius: 0 0 10px 10px;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    flex-direction: column;
    padding: 0;
  }

  header#menu .main-menu>li.open>.submenu-level-2 {
    display: flex;
  }

  header#menu .submenu-level-3 {
    position: static;
    min-width: unset;
    background: #e5d7ba;
    border-radius: 8px;
    box-shadow: none;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
  }

  header#menu .level-2-header h4 {
    display: none;
  }

  header#menu .common-content {
    display: none;
  }

  header#menu .main-menu .drop-menu {
    position: relative;
    left: 50%;
    top: 125%;
    min-width: 220px;
    opacity: 1;
    visibility: inherit;
    width: 100%;
  }

  header#menu .submenu-level-2 {
    display: inherit;
    padding: 0px !important;
    border-radius: 10px !important;
    min-height: inherit;
  }

  header#menu .level-2-list {
    gap: 0px !important;
  }

  header#menu .level-2-list>li>a {
    padding: 10px 25px !important;
  }

  header#menu .level-2-list>li>a:after {
    content: none;
    position: inherit;
    right: inherit;
    top: inherit;
    transform: inherit;
  }

  header#menu .level-2-header,
  header#menu .common-content {
    padding-inline: 0px !important;
  }

  header#menu .level-2-header li:first-child a {
    border-radius: 10px 10px 0 0 !important;
  }

  header#menu .level-2-header li:last-child a {
    border-radius: 0 0 10px 10px!important;
  }

}

@media (max-width: 1110px) {
  header#menu {
    padding: 10px 14px;
  }

  header#menu #contenedor_izq_header {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  header#menu #contenedor_menu {
    width: auto;
    margin-left: auto;
    position: relative;
  }

  header#menu .menu_smartphone {
    position: static;
    transform: none;
    width: 39px;
    height: 39px;
    padding: 6px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header#menu .main-menu>li>a {
    text-align: left;
    padding: 12px 16px;
    font-size: 15px;
  }

  header#menu .submenu-level-2,
  header#menu .submenu-company-formation,
  header#menu .submenu-accounting-tax,
  header#menu .submenu-payroll,
  header#menu .submenu-real-estate,
  header#menu .submenu-immigration,
  header#menu .submenu-level-3,
  header#menu .level-2-header,
  header#menu .common-content {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    left: auto;
    top: auto;
    height: auto;
    padding-inline: 12px;
    box-shadow: none;
    border-radius: 0;
  }

  header#menu .language-mobile .language-dropdown {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: none;
    margin-top: 6px;
  }
}

@media (max-width: 1100px) {
  header#menu .common-content {
    padding: 0 26px;
    min-width: 373px;
  }

  header#menu .main-menu>li>a {
    padding: 10px 20px;
    font-size: 12px;
  }

  header#menu .submenu-level-2 {
    left: calc(50% - 320px);
    gap: 0;
    padding: 20px;
  }

  header#menu .submenu-company-formation,
  header#menu .submenu-accounting-tax,
  header#menu .submenu-payroll,
  header#menu .submenu-real-estate,
  header#menu .submenu-immigration,
  header#menu .submenu-level-3 {
    min-width: 375px;
    pointer-events: auto;
  }

  header#menu .level-2-header {
    padding-left: 0px;
  }
}

@media (max-width: 1000px) {
  header#menu #contenedor_menu {
    justify-content: flex-end;
  }
}

@media (max-width: 900px) {
  header#menu #contenedor_menu {
    flex-direction: column;
    margin-left: 0;
  }

  header#menu #contenedor_izq_header {
    gap: 8px;
    align-items: start;
  }

  header#menu .level-2-list>li.open>.submenu-level-3 {
    display: block;
  }

  header#menu .level-2-list>li>a {
    font-size: 16px;
    padding: 10px 16px;
  }

  header#menu .common-content {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 15px 12px;
    min-width: unset;
  }
}

@media (max-width: 580px) {
  header#menu .main-menu {
    top: 59px;
  }
}

@media (max-width: 484px) {

  header#menu .main-menu>li>a {
    padding: 11px 12px;
  }

  header#menu .menu_smartphone {
    right: 16px;
  }

  header#menu .language-mobile {
    position: static;
  }

  header#menu .language-mobile .language-dropdown {
    position: absolute;
    top: -236px;
    left: -80px;
    max-width: 72px;
    height: fit-content;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  header#menu .telefono-button-header span {
    display: none;
  }
}

@media (max-width: 375px) {
  header#menu #contenedor_logo {
    width: 100%;
  }

  header#menu #contenedor_izq_header {
        align-items: center;
  }
}

@media (max-width: 350px) {
  header#menu #contenedor_menu {
    width: 60px;
  }
}

/* END HEADER */

/* Footer */
#footer {
  background-color: #19150c;
  color: white;
  font-family: sans-serif;
  padding-top: 34px;
  padding-left: 34px;
  padding-right: 34px;
  padding-bottom: 10px;
  overflow: hidden;
}

#footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 18px;
}

#footer .footer-section {
  margin-bottom: 30px;
}

#footer .footer-logo {
  margin-bottom: 20px;
  height: auto;
}

#footer .client-area-button-container {
  display: flex;
  justify-content: end;
  margin-bottom: 10px;
}

#footer .client-area-button {
  align-items: center;
  background-color: var(--color-tempo);
  color: #fff;
  padding-right: 18px;
  border-radius: 50px;
  transition: background-color .3s;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  white-space: nowrap;
}

#footer .client-area-button svg {
  position: relative;
  top: 5px;
  left: 10px;
  width: 42px;
  height: 42px;
}

#footer .client-area-button:hover {
  background-color: var(--color-tempo-hover);
}

#footer .client-area-button svg linearGradient#degradado stop {
  transition: stop-color .3s;
}

#footer .client-area-button:hover svg linearGradient#degradado stop:first-child {
  stop-color: #000000
}

#footer .client-area-button:hover svg linearGradient#degradado stop:last-child {
  stop-color: #084755
}


#footer .footer-section h4 {
  font-weight: bold;
  margin-bottom: 10px;
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: 1.1rem;
  line-height: 1.3;
}

#footer .footer-section ul {
  list-style: none;
  padding: 0;
}

#footer .footer-section ul li {
  margin: 5px 0;
}

#footer .footer-section ul li a {
  color: white;
  text-decoration: none;
}

#footer .footer-section p {
  margin: 6px 0;
}

#footer .footer-section .email {
  padding-left: 6px;
}


#footer .social-icons a {
  margin-right: 0;
  font-size: 18px;
  color: white;
  text-decoration: none;
}

#footer .footer-line {
  height: 1px;
  width: 100%;
  background: #F8F0E4;
}

#footer .footer-bottom {
  text-align: center;
  font-size: 14px;
}

#footer .footer-bottom .copyright {
  text-align: center;
}

#footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  list-style: none;
  padding: 0;
  row-gap: 8px;
  column-gap: 12px;
}

#footer .footer-links a {
  color: white;
  text-decoration: none;
}

#footer .footer-links li::before {
  content: "\2022";
  margin-right: 10px;
}

#footer .footer-links li:first-child::before {
  content: none;
}

#footer .footer-section p,
#footer .footer-section ul li a,
#footer .footer-links a,
#footer .footer-links p {
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  line-height: 1.68;
  letter-spacing: 0.004em;
}

#footer .client-area-button,
#footer .telefono-button {
  font-family: Manrope, "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

#footer .correo-button-container {
  position: fixed;
  bottom: 87px;
  right: 10px;
  z-index: 999;
}

#footer .correo-button-container svg {
  margin-right: 10px;
}

#footer .telefono-button-container {
  position: fixed;
  bottom: 87px;
  right: 10px;
  z-index: 999;
}

#footer .telefono-button {
  display: flex;
  align-items: center;
  background-color: var(--color-negro);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
  transition: background-color .3s, box-shadow .3s;
}

#footer .telefono-button:hover {
  background-color: var(--color-enfasis-hover);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
  color: #fff !important;
}

#footer .telefono-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

#footer .whatsapp-button-container {
  position: fixed;
  bottom: 36px;
  right: 10px;
  z-index: 999;
}

#footer .whatsapp-button {
  display: flex;
  align-items: center;
  background-color: #058936;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
  transition: background-color .3s, box-shadow .3s;
  cursor: pointer;
  font-family: Manrope, "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

#footer .whatsapp-button:hover {
  background-color: #128c7e;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
  color: #fff !important;
}

#footer .whatsapp-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

#footer .footer-container,
#footer .footer-section {
  min-width: 0;
}

#footer .footer-section p,
#footer .footer-links a,
#footer .footer-links p {
  overflow-wrap: anywhere;
}

#footer .footer-section p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

#footer .footer-section p svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

#footer .footer-links li p {
  display: inline;
  margin: 0;
}

#footer .social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 10px;
}

#footer .footer-links li {
  min-width: 0;
}

#footer .footer-logo svg {
  width: min(160px, 100%);
  height: auto;
  display: block;
}

@media only screen and (max-width: 1024px) {
  #footer {
    padding: 28px 24px 14px;
  }

  #footer .client-area-button-container {
    justify-content: center;
  }

  #footer .client-area-button {
    max-width: 100%;
    gap: 8px;
    font-size: 0.95rem;
  }

  #footer .client-area-button svg {
    width: 36px;
    height: 36px;
    top: 5px;
    left: 8px;
  }

  #footer .footer-container {
    gap: 16px;
  }

  #footer .footer-section {
    margin-bottom: 18px;
  }

  #footer .footer-links {
    justify-content: flex-start;
  }

  #footer .footer-bottom {
    font-size: 13px;
  }

  #footer .footer-bottom .copyright {
    margin-top: 20px;
  }

  #footer .correo-button-container {
    display: none;
  }

  #footer .telefono-button-container,
  #footer .whatsapp-button-container {
    right: 12px;
  }

  #footer .telefono-button,
  #footer .whatsapp-button {
    max-width: calc(100vw - 24px);
    padding: 9px 14px;
    font-size: 0.88rem;
    white-space: nowrap;
  }
}

@media only screen and (min-width: 1025px) {
  #footer .telefono-button-container {
    display: none;
  }

}

@media (max-width: 850px) {

  #footer .footer-section:nth-child(4) {
    width: 100%;
    display: flex;
    align-content: flex-start;
    align-items: center;
    justify-content: space-between;
  }

  #footer .footer-section:nth-child(4) h4 {
    display: none;
  }

}

@media (max-width: 768px) {
  #footer {
    padding: 24px 18px 14px;
  }

  #footer .footer-container {
    gap: 12px;
  }

  #footer .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
  }

  #footer .footer-logo svg {
    width: min(140px, 60vw);
  }

  #footer .footer-section {
    margin-bottom: 14px;
  }

  #footer .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  #footer .footer-section p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  #footer .footer-section .email {
    padding-left: 0;
  }

  #footer .social-icons {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 8px;
  }

  #footer .footer-bottom {
    text-align: left;
  }

  #footer .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 12px;
  }

  #footer .footer-links li {
    width: 100%;
  }

  #footer .footer-links li::before {
    content: none;
    margin-right: 0;
  }

  #footer .telefono-button-container,
  #footer .whatsapp-button-container {
    right: 10px;
  }

  #footer .telefono-button,
  #footer .whatsapp-button {
    padding: 8px 12px;
    font-size: 0.82rem;
  }

}

@media (max-width: 620px) {

  #footer .footer-container {
    gap: 27px;
  }

  #footer .footer-section:nth-child(4) {
    width: initial;
    display: initial;
  }

  #footer .footer-section:nth-child(4) h4 {
    display: block;
  }

  #footer .footer-section {
    width: 45% !important;
  }

  #footer .footer-logo {
    display: initial;
  }
}

@media (max-width: 580px) {
  #footer {
    padding: 22px 14px 12px;
  }

  #footer .client-area-button {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
    padding: 8px 12px;
  }

  #footer .client-area-button svg {
    width: 30px;
    height: 30px;
  }

  #footer .footer-section p {
    gap: 6px;
  }

  #footer .footer-section p svg {
    width: 20px;
  }

  #footer .telefono-button-container,
  #footer .whatsapp-button-container {
    left: 10px;
    right: 10px;
  }

  #footer .telefono-button-container {
    bottom: 56px;
  }

  #footer .whatsapp-button-container {
    bottom: 8px;
  }

  #footer .telefono-button,
  #footer .whatsapp-button {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  #footer .footer-links {
    padding-bottom: 95px;
  }

}

@media (max-width: 545px) {
  #footer .footer-section {
    width: 100% !important;
  }

  #footer .footer-logo {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
  }

}

@media (max-width: 420px) {
  #footer .social-icons a svg {
    width: 30px;
    height: 30px;
  }

  #footer .telefono-icon,
  #footer .whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-right: 6px;
  }

  #footer .telefono-button,
  #footer .whatsapp-button {
    padding: 8px 10px;
  }

}

/* END footer */

/* Cookie consent */
.cookie-consent-banner-open {
  cursor: pointer;
}

#cookie-consent-banner {
  position: fixed;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  bottom: 20px;
  right: 20px;
  width: calc(100% - 40px);
  max-width: 700px;
  background: #fff 0 0 no-repeat padding-box;
  box-shadow: 0 3px 30px #00000057;
  border-radius: 10px;
  opacity: .95;
  font-family: Manrope, "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--color-negro);
  z-index: 40000;
}

#cookie-consent-banner p.titulo {
  text-align: center;
  font-size: 1.2em;
  line-height: 37px;
  font-weight: 700;
  margin-bottom: 5px;
  padding-top: 20px;
}

#cookie-consent-banner p {
  text-align: center;
  font-size: 1em;
  line-height: 26px;
  text-wrap: balance;
  margin-bottom: 0;
}

#cookie-consent-banner label {
  font-size: 1em;
  line-height: 26px;
}

#cookie-consent-banner label input {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

#cookie-consent-banner .cookie-consent-buttons,
#cookie-consent-banner .cookie-consent-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 10px;
  gap: 20px;
}

#cookie-consent-banner .cookie-consent-buttons button {
  display: block;
  padding: 10px 25px;
  border: 0;
  border-radius: 10px;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.1em;
  font-weight: 700;
  line-height: 23px;
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(3) {
  background-color: #595959;
  cursor: pointer;
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(2) {
  background-color: #595959;
  cursor: pointer;
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(1) {
  background-color: var(--color-enfasis);
  cursor: pointer;
}

#cookie-consent-banner .cookie-consent-buttons button:hover {
  background-color: var(--color-enfasis-hover);
}

#cookie-consent-banner a {
  font-weight: 700;
}

#cookie-consent-banner a:hover {
  font-weight: 700;
  color: var(--color-enfasis-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  #cookie-consent-banner {
    bottom: 12px;
    right: 12px;
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }

  #cookie-consent-banner p {
    font-size: 0.94em;
    line-height: 1.45;
  }

  #cookie-consent-banner .cookie-consent-options {
    gap: 10px;
    padding: 0 10px;
  }

  #cookie-consent-banner .cookie-consent-buttons {
    width: 100%;
    padding: 0 12px 12px;
    gap: 10px;
    margin-bottom: 0;
  }

  #cookie-consent-banner .cookie-consent-buttons button {
    width: 100%;
    font-size: 1em;
    line-height: 1.3;
    padding: 10px 12px;
  }
}

@media (max-width: 580px) {
  #cookie-consent-banner .cookie-consent-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 12px;
  }
}

@media (max-width: 420px) {
  #cookie-consent-banner {
    right: 8px;
    bottom: 8px;
    width: calc(100% - 16px);
  }
}

/* END Cookie consent */

/* CONTACT */

section.contacto {
  padding: 1px 0px;
}

section.contacto .contacto-fondo {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-principal-variente);
}


section.contacto .contacto-fondo-degradado {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-135deg, #E9C991, #6B5B40);
  z-index: 1;
}


section.contacto .modelo-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80%;
  object-fit: cover;
  display: block;
  z-index: 3;
}

section.contacto .logo-superpuesto {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  z-index: 2;
}

section.contacto .container-form {
  background: #bca062;
  display: flex;
  max-width: 900px;
  margin: 50px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 8px 10px 15px rgba(0, 0, 0, 0.2);
}

section.contacto .form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

section.contacto .form-group {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

section.contacto .input-textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.3s;
  background-color: #F8F0DF;
}

section.contacto .form-panel {
  background-color: #fdf8f0;
  flex: 1;
  padding: 40px;
}

section.contacto .form-row {
  max-width: 900px;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

section.contacto input[type="text"],
section.contacto input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #f8f0df;
}


section.contacto .checkbox-container {
  display: block;
  font-size: 13px;
  margin: 10px 0;
}

section.contacto .checkbox-container input {
  margin-right: 5px;
}

section.contacto button[type="submit"] {
  background-color: var(--color-secundario);
  color: white;
  width: 100%;
  margin-top: 10px;
}

section.contacto button[type="submit"]:hover {
  color: var(--color-texto-primario);
}

section.contacto form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

section.contacto .redes-sociales {
  text-align: center;
  color: #231d12;
  margin: 40px 0;
}

section.contacto .redes-sociales h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

section.contacto .redes-sociales p {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: bold;
}

section.contacto .iconos-redes {
  display: flex;
  justify-content: center;
  gap: 20px;
}

section.contacto .iconos-redes a svg {
  width: 50px;
  height: 50px;
  padding: 8px;
  border-radius: 50%;
  transition: transform 0.2s, background-color 0.2s;
}

section.contacto .iconos-redes a svg:hover {
  transform: scale(1.1);
}

/* CONTACTO PEQUEÑO */

section.formulario-contacto {
  background-color: #c3a775;
  padding: 2rem;
  margin: 0px auto;
  font-family: sans-serif;
  color: #1c1c1c;
}

section.formulario-contacto .croma {
  max-width: 898px;
  flex-direction: column;
  margin: auto;
  align-items: center;
  justify-content: center;
}

section.formulario-contacto .croma-h3 {
  font-size: 24px;
  color: #fff8e1;
  margin-bottom: 20px;
}

section.formulario-contacto form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

section.formulario-contacto .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  max-width: 900px;
}

section.formulario-contacto .form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 200px;
}

section.formulario-contacto .form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

section.formulario-contacto input[type="text"],
section.formulario-contacto input[type="email"] {
  padding: 0.5rem;
  border-radius: 5px;
  border: none;
  background-color: #f7f0dd;
  font-size: 1rem;
  flex: 1;
}

section.formulario-contacto .input-textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.3s;
  background-color: #F8F0DF;
}

section.formulario-contacto .form-check {
  display: flex;
  align-items: flex-start;
  margin-top: 1rem;
  font-size: 0.9rem;
}

section.formulario-contacto .form-check input {
  margin-right: 0.5rem;
  margin-top: 0.2rem;
}

section.formulario-contacto .form-check a {
  text-decoration: underline;
  color: #000;
}

section.formulario-contacto button[type="submit"] {
  background-color: var(--color-secundario);
  color: white;
  width: 100%;
  margin-top: 10px;
}

section.formulario-contacto .btn-cta {
  background-color: var(--color-destacado);
  padding: 0.9rem 5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  line-height: 1;
  color: var(--color-texto-primario);
}

@media (max-width: 910px) {

  section.contacto .container-form {
    max-width: initial;
    border-radius: initial;
  }

}

@media (max-width: 730px) {

  section.contacto .contacto-fondo {
    display: none;
  }

}

@media (max-width: 520px) {
  section.contacto .form-row {
    gap: 8px;
    flex-direction: column;
    margin-bottom: 8px;
  }

  section.contacto .iconos-redes {
    gap: initial;
  }
}

/* END CONTACT */