@charset "UTF-8";
/*Fonts*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
}

ul[class],
ol[class] {
  list-style: none;
  padding: 0;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: inherit;
  text-decoration: none;
}

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

hr {
  border: 0;
  border-top: 1px solid #ddd;
  display: block;
  margin-top: 20px;
  width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  color: #111;
  font-size: 1rem;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

b, strong, .bold {
  font-weight: bold;
}

.heading {
  margin-top: 0;
  line-height: 120%;
  margin-bottom: 30px;
  font-weight: 700;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: 2rem;
}

.h1 {
  font-size: 64px;
  letter-spacing: -2px;
  line-height: 80%;
}
.h1 .line-2 {
  display: block;
  margin-left: 4rem;
}
@media (max-width: 767px) {
  .h1 .line-2 {
    margin-left: auto;
    display: inline;
  }
}
.h1 .line-3 {
  display: block;
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .h1 .line-3 {
    margin-left: auto;
    display: inline;
  }
}
@media (max-width: 991px) {
  .h1 {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .h1 {
    font-size: 42px;
  }
}

.h2 {
  font-size: 52px;
  letter-spacing: -2px;
  line-height: 80%;
}
@media (max-width: 991px) {
  .h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .h2 {
    font-size: 32px;
  }
}
.h2 .line-2 {
  display: block;
  margin-left: 4rem;
}
@media (max-width: 767px) {
  .h2 .line-2 {
    margin-left: auto;
    display: inline;
  }
}
.h2 .line-3 {
  display: block;
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .h2 .line-3 {
    margin-left: auto;
    display: inline;
  }
}

.h3 {
  font-size: 38px;
  letter-spacing: -1px;
  line-height: 80%;
}
@media (max-width: 991px) {
  .h3 {
    font-size: 32px;
  }
}

.h4 {
  font-size: 24px;
  letter-spacing: -1px;
}
@media (max-width: 991px) {
  .h4 {
    font-size: 20px;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 130%;
  font-size: 18px;
}
@media (max-width: 767px) {
  p {
    font-size: 1rem;
  }
}
p.sm {
  font-size: 0.875rem;
}

.text-large {
  font-size: 20px;
}

.text-center {
  text-align: center;
}

.color-blue {
  color: #032D54;
}

.color-lightblue {
  color: #06B8BC;
}

.color-green {
  color: #99CC66;
}

.color-white {
  color: #fff;
}

.bg-blue {
  background-color: #032D54;
}

.bg-lightblue {
  background-color: #06B8BC;
}

.bg-green {
  background-color: #99CC66;
}

.button {
  padding: 0.85rem 1.5rem;
  background-color: transparent;
  color: #fff;
  border: 0;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 576px) {
  .button {
    padding: 0.85rem 1.5rem;
  }
}
.button:hover {
  background-color: #fff;
}
.button.outline {
  border: 2px solid #fff;
}
.button.outline:hover {
  background-color: #fff;
  color: #032D54;
}

.herobtn {
  border: 2px solid #032D54 !important;
  color: #032D54;
}

.button.dark {
  border-color: #032D54;
  color: #032D54;
}
.button.dark:hover {
  color: #fff;
  background-color: #032D54;
}

.leaf-list {
  font-size: 18px;
  margin-top: 5px;
  margin-bottom: 2rem;
}
.leaf-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.leaf-list li img {
  height: 12px;
  position: relative;
  top: 4px;
}

.container {
  width: 100%;
  max-width: 1280px;
  padding: 0 1rem;
  display: flex;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.row {
  display: flex;
  gap: 2rem;
}
@media (max-width: 991px) {
  .row {
    flex-direction: column;
  }
}
.row .column {
  width: 50%;
}
@media (max-width: 991px) {
  .row .column {
    width: 100%;
  }
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 100;
}
.header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem;
}
@media (max-width: 991px) {
  .header .header-inner {
    padding: 1rem 2rem;
  }
}
@media (max-width: 767px) {
  .header .header-inner {
    padding: 1rem;
  }
}
.header .header-inner .logo {
  display: inline-block;
  position: relative;
}
.header .header-inner .logo .brand-scroll {
  opacity: 0;
  height: 0;
}
.header .header-inner .logo img {
  display: block;
  height: 2rem;
}
@media (max-width: 991px) {
  .header .header-inner .logo img {
    height: 1.5rem;
  }
}
.header .header-inner .main-nav {
  display: flex;
  align-items: center;
}
.header .header-inner .main-nav .menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  padding: 0;
  margin: 0;
  align-items: center;
}
@media (max-width: 1199px) {
  .header .header-inner .main-nav .menu {
    gap: 2rem;
  }
}
@media (max-width: 991px) {
  .header .header-inner .main-nav .menu {
    display: none;
  }
}
.header .header-inner .main-nav .menu .menu-link {
  position: relative;
  display: flex;
  align-items: center;
}
.header .header-inner .main-nav .menu .menu-link a {
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  font-weight: bold;
  font-size: 16px;
  border-bottom: 2px solid transparent;
}
.header .header-inner .main-nav .menu .menu-link a:hover {
  border-color: #032D54;
}
.header .header-inner .main-nav .menu .menu-link.active a {
  color: #032D54;
}
.header .header-inner .main-nav .menu .whatsapp {
  background-color: transparent;
  width: 48px;
  height: 48px;
  padding: 0;
  display: block;
  border-radius: 100%;
  border: 1px solid #fff;
}
.header .header-inner .main-nav .menu .whatsapp:hover {
  background-color: transparent;
}
.header .header-inner .main-nav .hamburger {
  display: none;
  background: none;
  border: none;
}
.header .header-inner .main-nav .hamburger svg {
  width: 32px;
  height: 32px;
}
@media (max-width: 991px) {
  .header .header-inner .main-nav .hamburger {
    display: block;
  }
}
.header.scroll {
  background-color: #032D54;
  border-bottom-color: transparent;
  z-index: 9;
}
.header.scroll .header-inner {
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .header.scroll .header-inner {
    padding: 1rem;
  }
}
.header.scroll .header-inner .brand-logo {
  opacity: 0;
  top: 0;
  height: 0;
}
.header.scroll .header-inner .brand-logo img {
  height: 1.5rem;
}
.header.scroll .header-inner .brand-scroll {
  opacity: 1;
  top: 0;
  height: 1.5rem;
}
.header.scroll .header-inner .main-nav .menu .menu-link a:hover {
  color: #fff !important;
  border-color: #fff;
}

.page-internal {
  position: relative;
}
.page-internal .bg-top-internal {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  max-width: 1100px;
  object-fit: cover;
  z-index: 0;
}
.page-internal .header .header-inner .main-nav .hamburger svg path {
  fill: #111;
}
@media (max-width: 991px) {
  .page-internal .header .header-inner .main-nav .menu {
    display: none;
  }
  .page-internal .header .header-inner .main-nav .hamburger {
    display: block;
  }
}
.page-internal .header .header-inner .main-nav .menu .button {
  border-color: #032D54;
  color: #032D54;
}
.page-internal .header.scroll .header-inner .main-nav .menu .menu-link a {
  color: #fff;
}
.page-internal .header.scroll .header-inner .main-nav .menu .menu-link.active a {
  color: #fff;
}
.page-internal .header.scroll .header-inner .main-nav .menu .button {
  border-color: #fff;
  color: #fff;
}
.page-internal .header.scroll .header-inner .main-nav .hamburger svg path {
  fill: #fff;
}

.page-home .header .header-inner .main-nav .menu .menu-link a {
  color: #fff;
}
.page-home .header .header-inner .main-nav .menu .menu-link a:hover {
  color: #032D54;
}
.page-home .header .header-inner .main-nav .hamburger svg path {
  fill: #fff;
}
@media (max-width: 991px) {
  .page-home .header .header-inner .main-nav .menu {
    display: none;
  }
  .page-home .header .header-inner .main-nav .hamburger {
    display: block;
  }
}

.hero {
  /*background: #333;*/
  color: #fff;
  position: relative;
  height: 100vh;
}
@media (max-width: 991px) {
  .hero {
    padding: 12rem 0 8rem;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 8rem 0;
  }
}
.hero .hero-ring {
  width: 75%;
  max-width: 1100px;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .hero .hero-ring {
    width: 100%;
  }
}
.hero picture {
  display: contents;
}
.hero .hero-bg {
  position: absolute;
  object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: 0;
  left: 0;
  top: 0;
  object-fit: cover;
}
.hero .container {
  height: 100%;
  display: flex;
  margin: auto;
  position: relative;
  z-index: 2;
}
.hero .container .caption {
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 4rem 0 2rem;
  max-width: 1000px;
  top: -6rem;
}
@media (max-width: 767px) {
  .hero .container .caption {
    padding: 1rem;
    top: auto;
  }
}
.hero .container .caption .h1 {
  line-height: 0.8 !important;
  margin-bottom: 4rem;
  margin-top: 4rem;
}
.hero .container .caption .h1 span {
  display: block;
  color: #032d54;
}
.separacionhero{
  margin-left: 4rem;
}
@media (max-width: 767px) {
  .hero .container .caption .h1 span {
    /*display: inline;*/
  }
}
.hero .container .caption .h1 span.line-2 {
  margin-left: 0;
  color: #06B8BC;
  margin-left: 0;
  color: #06B8BC;
  FONT-SIZE: 34PX;
  line-height: 1 !important;
  MARGIN-TOP: 20PX;

}



@media (max-width: 767px) {
  .hero .container .caption .h1 span.line-2 {
    margin-left: 0;
    font-size: 24px;
  }
}
.hero .container .caption .h1 span.line-3 {
  font-size: 52px;
  margin-left: 0;
  color: #06B8BC;
}
@media (max-width: 991px) {
  .hero .container .caption .h1 span.line-3 {
    font-size: 42px;
  }
}
.hero .container .caption .button-caption {
  text-align: left;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .hero .container .caption .button-caption {
    text-align: left;
    margin-top: 2rem; 
  }
}

.section-areas {
  overflow: hidden;
  position: relative;
}
.section-areas .ring {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  object-fit: contain;
  z-index: 2;
}
@media (max-width: 1199px) {
  .section-areas .ring {
    width: 320px;
  }
}
@media (max-width: 991px) {
  .section-areas .ring {
    width: 300px;
    top: 140px;
  }
}
@media (max-width: 767px) {
  .section-areas .ring {
    width: 260px;
    top: 0;
    /*left: 155px;*/  
    right: -138px;
    position: relative;
    margin-bottom: 32px;
  }
}
.section-areas .content {
  background-color: #99CC66;
  position: relative;
  z-index: 0;
  max-width: 60%;
  z-index: 0;
}
@media (max-width: 1199px) {
  .section-areas .content {
    max-width: 85%;
  }
}
@media (max-width: 767px) {
  .section-areas .content {
    max-width: inherit;
    padding-bottom: 32px;
  }
}
.section-areas .content::before {
  content: "";
  height: 100%;
  width: 50%;
  left: -50%;
  position: absolute;
  background-color: #99CC66;
  top: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .section-areas .content::before {
    display: none;
  }
}
.section-areas .content .content-inner {
  position: relative;
  z-index: 1;
  padding: 50px 20% 50px 0;
}
@media (max-width: 1199px) {
  .section-areas .content .content-inner {
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .section-areas .content .content-inner {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .section-areas .content .content-inner p {
    padding-right: 100px;
  }
}
@media (max-width: 767px) {
  .section-areas .content .content-inner p {
    padding-right: 0;
  }
}
.section-areas .content .content-inner ul {
  margin: 40px 0 60px;
  list-style: none;
  padding: 0;
}
.section-areas .content .content-inner ul li {
  font-size: 23px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
@media (max-width: 1199px) {
  .section-areas .content .content-inner ul li {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .section-areas .content .content-inner ul li {
    font-size: 18px;
  }
}

.section-products .features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 991px) {
  .section-products .features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.section-products .features .feature {
  padding: 0 2rem 2rem;
}
.section-products .features .feature .brand-wrapper {
  padding: 1rem;
  background-color: #fff;
  width: 140px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
.section-products .features .feature .brand-wrapper img {
  width: auto;
}
.section-products .features .feature .h3 {
  margin-bottom: 8px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-products .features .feature .h3 {
    font-size: 26px;
  }
}

.section-partners {
  /* El arco del footer arranca poco despues de los logos. */
  padding-bottom: 2rem;
}
.section-partners .brand-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
@media (max-width: 1199px) {
  .section-partners .brand-list {
    flex-wrap: wrap;
    gap: 3rem;
  }
}
.section-partners .brand-list li {
  display: flex;
  align-items: center;
}
.section-partners .brand-list li img {
  width: 100%;
}

.section {
  position: relative;
  padding: 5rem 2rem;
}
@media (max-width: 991px) {
  .section {
    padding: 4rem 2rem;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 3rem 1rem;
  }
}

.section-field {
  position: relative;
}
@media (max-width: 767px) {
  .section-field {
    padding: 3rem 0;
  }
}
.section-field .decor-3 {
  position: absolute;
  left: 0;
  top: -200px;
  width: 240px;
  object-fit: contain;
  z-index: 1;
}
@media (max-width: 991px) {
  .section-field .decor-3 {
    width: 300px;
    display: none;
  }
}
@media (max-width: 767px) {
  .section-field .decor-3 {
    width: 200px;
  }
}
.section-field .background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  left: 0;
  top: 0;
  object-fit: cover;
}
.section-field .features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 767px) {
  .section-field .features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.section-field .features .feature {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .section-field .features .feature {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1882352941);
  }
}
.section-field .features .feature h3 {
  margin-top: 0;
}

.page-hero {
  position: relative;
  padding: 14rem 0 4rem;
}
@media (max-width: 1199px) {
  .page-hero {
    padding: 12rem 2rem 3rem;
  }
}
@media (max-width: 991px) {
  .page-hero {
    padding: 12rem 2rem 3rem;
  }
}
@media (max-width: 767px) {
  .page-hero {
    padding: 14rem 1rem 0;
  }
}
.page-hero .media .h1 {
  margin-bottom: 1rem;
}
.page-hero .content {
  padding-top: 4rem;
}
@media (max-width: 991px) {
  .page-hero .content {
    padding-top: 2rem;
  }
}

.page-hero-empresa {
  /* El aro de la sección Misión (35% del ancho, z-index 2) se montaba sobre el
     último párrafo: se acota el texto para que termine antes. */
}
.page-hero-empresa .content {
  max-width: 62%;
}
@media (max-width: 1199px) {
  .page-hero-empresa .content {
    max-width: 70%;
  }
}
@media (max-width: 991px) {
  .page-hero-empresa .content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .section-mission {
    padding-top: 300px;
  }
}
.section-mission .ring {
  position: absolute;
  right: 0;
  top: -250px;
  width: 35%;
  object-fit: contain;
  z-index: 2;
}
@media (max-width: 1199px) {
  .section-mission .ring {
    width: 350px;
    top: -150px;
  }
}
@media (max-width: 991px) {
  .section-mission .ring {
    width: 300px;
    top: -160px;
  }
}
@media (max-width: 767px) {
  .section-mission .ring {
    top: 3rem;
    left: 0;
  }
}
.section-mission .mission-wrapper {
  display: flex;
}
@media (max-width: 767px) {
  .section-mission .mission-wrapper {
    flex-direction: column;
  }
}
.section-mission .mission-wrapper .mission {
  width: 40%;
  padding: 3rem;
  position: relative;
}
@media (max-width: 1199px) {
  .section-mission .mission-wrapper .mission {
    padding: 3rem 2rem;
    width: 45%;
  }
}
@media (max-width: 767px) {
  .section-mission .mission-wrapper .mission {
    width: 100%;
  }
}
.section-mission .mission-wrapper .mission.bg-blue {
  padding-left: 0;
}
@media (max-width: 767px) {
  .section-mission .mission-wrapper .mission.bg-blue {
    padding-left: 2rem;
    padding-top: 6rem;
  }
}
.section-mission .mission-wrapper .mission.bg-blue::before {
  content: "";
  height: 100%;
  width: 60%;
  left: -60%;
  position: absolute;
  background-color: #032D54;
  top: 0;
  z-index: 0;
}
@media (max-width: 1199px) {
  .section-mission .mission-wrapper .mission.bg-blue::before {
    width: 35%;
    left: -35%;
  }
}
@media (max-width: 767px) {
  .section-mission .mission-wrapper .mission.bg-blue::before {
    display: none;
  }
}

.section-value .heading {
  margin-bottom: 3rem;
}

.section-cta .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 767px) {
  .section-cta .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.section-cta .cta-inner .button {
  flex: none;
}

.section-form {
  padding-top: 12rem;
}
.section-form .ring {
  position: absolute;
  right: 0;
  top: -50px;
  width: 35%;
  object-fit: contain;
  z-index: 2;
}
@media (max-width: 1199px) {
  .section-form .ring {
    width: 350px;
    top: -150px;
  }
}
@media (max-width: 991px) {
  .section-form .ring {
    width: 300px;
    top: -160px;
  }
}
@media (max-width: 767px) {
  .section-form .ring {
    top: 0;
    left: 0;
  }
}
.section-form .content {
  padding: 4rem 8rem 4rem 0;
  max-width: 80%;
  position: relative;
}
@media (max-width: 1199px) {
  .section-form .content {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .section-form .content {
    max-width: 100%;
    padding: 10rem 3rem 3rem;
  }
}
@media (max-width: 576px) {
  .section-form .content {
    max-width: 100%;
    padding: 10rem 2rem 2rem;
  }
}
.section-form .content::before {
  content: "";
  height: 100%;
  width: 80%;
  left: -80%;
  position: absolute;
  background-color: #032D54;
  top: 0;
  z-index: 0;
}
@media (max-width: 1199px) {
  .section-form .content::before {
    width: 35%;
    left: -35%;
  }
}
@media (max-width: 767px) {
  .section-form .content::before {
    display: none;
  }
}
.section-form .form-field {
  margin-bottom: 1rem;
}
.section-form .form-field .field {
  border: 0;
  background-color: #fff;
  padding: 1rem;
  color: #333;
  width: 100%;
  font-size: 1rem;
  border: 0;
}
.section-form .form-field .field:focus {
  outline: none;
  box-shadow: none;
}
.section-form .form-field .field.textarea {
  min-height: 150px;
}
.section-form .form-field textarea {
  border-bottom: 0 !important;
}
.section-form .form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.section-form .form-message {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid #fff;
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.section-form .form-message p {
  margin: 0;
  font-size: 0.95rem;
}
.section-form .form-message p + p {
  margin-top: 0.35rem;
}
.section-form .form-message.ok {
  border-left-color: #7DBE42;
}
.section-form .form-message.error {
  border-left-color: #E4572E;
}

.map {
  padding: 0;
  margin-bottom: 3rem;
}
.map iframe {
  border: 0;
  width: 100%;
  height: 500px;
}

/* Solo despues de los logos de proveedores el footer se sube: el arco trae
   ~190px transparentes arriba y ahi quedaban como un hueco blanco enorme.
   En el resto de las paginas (productos, etc.) queda aire antes del arco. */
.section-partners + .footer {
  margin-top: -5.5rem;
}
@media (max-width: 991px) {
  .section-partners + .footer {
    /* Con los logos en dos filas, -5.5rem tapaba el ultimo logo. */
    margin-top: -3rem;
  }
}

.footer {
  position: relative;
  width: 100%;
  padding: 1.5rem 0 2rem;
  /* El footer mide menos que el arco: anclado abajo, el arco sobresale por
     arriba (recortado por overflow) y su vértice sube ~32px. */
  height: 568px;
  overflow: hidden;
}
.footer .ring {
  position: absolute;
  bottom: 0;
  height: 600px;
  width: 100%;
  object-fit: cover;
  z-index: 1;
  object-position: center top;
}
.footer {
  /* El isologo salió del SVG de fondo (quedaba descentrado con object-fit:cover):
     ahora va en el flujo del documento y queda centrado en todos los dispositivos. */
}
.footer .footer-iso {
  display: block;
  width: 7rem;
  height: auto;
  margin: 0 auto 5rem;
}
@media (max-width: 767px) {
  .footer .footer-iso {
    width: 5.5rem;
    margin-bottom: 3.5rem;
  }
}
.footer .footer-logo {
  display: block;
  height: 2rem;
  width: auto;
  margin: 0 auto 2rem;
}
.footer .footer-contact {
  display: flex;
  flex-direction: column;
}
.footer .footer-contact > div {
  margin-bottom: 1rem;
}
.footer .footer-contact p {
  margin: 0;
  line-height: 1.2;
}
.footer .footer-contact a {
  text-decoration: none;
}
.footer .footer-contact a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.footer .footer-social {
  display: flex;
  margin-top: 2rem;
  margin-bottom: 1rem;
  justify-content: center;
  gap: 1rem;
}
.footer .footer-social a {
  border-radius: 100%;
  border: 2px solid transparent;
}
.footer .footer-social a img {
  height: 2.4rem;
}
.footer .footer-social a:hover {
  border-color: #fff;
}
.footer .footer-agency {
  display: block;
  margin-top: 2rem;
}
.footer .footer-agency a {
  display: inline-block;
}
.footer .footer-agency img {
  height: 9px;
  width: auto;
  margin-bottom: 1rem;
}

.mobile-panel {
  position: fixed;
  top: 0;
  /* Se desplaza con transform (no con right negativo) para no generar
     scroll horizontal en móviles. */
  right: 0;
  transform: translateX(100%);
  width: 250px;
  max-width: 80vw;
  height: 100%;
  background: #032D54;
  color: #fff;
  transition: transform 0.3s ease;
  padding: 1rem 1rem 1rem 1rem;
  z-index: 101;
}
.mobile-panel.open {
  transform: translateX(0);
}
.mobile-panel .close-panel {
  background: none;
  border: none;
  font-size: 3rem;
  color: #fff;
  position: absolute;
  top: 0;
  font-weight: 300;
  right: 2rem;
}
@media (max-width: 991px) {
  .mobile-panel .close-panel {
    right: 1rem;
  }
}
.mobile-panel .mobile-menu {
  list-style: none;
  padding: 3rem 0;
}
.mobile-panel .mobile-menu li {
  padding: 0 1rem;
}
.mobile-panel .mobile-menu li a {
  display: block;
  padding: 2rem 0 4px;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid transparent;
}
.mobile-panel .mobile-menu li a:hover {
  color: #fff;
  border-color: #fff;
}
.mobile-panel .mobile-menu li.active a {
  border-color: #fff;
  color: #fff;
}
