@charset "UTF-8";
body {
  display: flex;
  min-height: 100vh !important;
  flex-direction: column;
  justify-content: space-between;
}

main {
  flex: 1 0 auto;
}

.margin {
  margin: 16px;
}

.margin-left {
  margin-left: 16px;
}

.margin-right {
  margin-right: 16px;
}

.margin-top {
  margin-top: 16px;
}

.margin-bottom {
  margin-bottom: 16px;
}

.no-margin-bottom {
  margin-bottom: 0px !important;
}

.padding {
  padding: 16px;
}

.padding-left {
  padding-left: 16px;
}

.padding-right {
  padding-right: 16px;
}

.padding-top {
  padding-top: 16px;
}

.padding-bottom {
  padding-bottom: 16px;
}

.no-padding-bottom {
  padding-bottom: 0px;
}

.full-width {
  width: 100%;
}

.spacer-24 {
  margin-top: 24px;
}

.cursor-pointer {
  cursor: pointer;
}

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

h1 {
  font-size: 3rem !important;
  font-weight: bold !important;
}

.proximamente {
  height: -webkit-fill-available;
  display: flex;
  transform: translateY(50%);
  flex-direction: column;
}

.white-bg {
  background-color: #fff;
}

.uppercase {
  text-transform: uppercase;
}

.primary {
  color: #DF8056;
}

.btn {
  border-radius: 32px !important;
}

.btn-primary {
  background-color: #2F6F79 !important;
  border-color: #2F6F79 !important;
}
.btn-primary:hover(.active) {
  background-color: rgb(54.1339285714, 127.8482142857, 139.3660714286) !important;
}
.btn-primary:active:not(.active) {
  background-color: rgb(35.5857142857, 84.0428571429, 91.6142857143) !important;
}

.btn-secondary {
  background-color: #DF8056 !important;
  border-color: #DF8056 !important;
}
.btn-secondary:hover(.active) {
  background-color: rgb(227.0597014925, 144.1119402985, 107.4402985075) !important;
}
.btn-secondary:active:not(.active) {
  background-color: rgb(216.5044776119, 102.2208955224, 51.6955223881) !important;
}

.btn-outline-secondary {
  color: #2F6F79 !important;
  border-color: #2F6F79 !important;
}
.btn-outline-secondary:hover, .btn-outline-secondary:active {
  color: #fff !important;
  background-color: #2F6F79 !important;
  border-color: #2F6F79 !important;
}

.button-with-icon span {
  display: flex;
}

.pk-input-field {
  position: relative;
  margin: 0;
  margin-top: 24px;
  padding: 0;
  height: 40px;
  line-height: 40px;
  width: 100%;
}
.pk-input-field label {
  position: absolute;
  font-size: 1rem;
  padding: 0 16px;
  transform: translate(0, 0) scale(1);
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
.pk-input-field label span {
  color: red !important;
}
.pk-input-field label.active {
  height: 16px;
  line-height: 16px;
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  padding: 0 8px;
}
.pk-input-field input, .pk-input-field select, .pk-input-field textarea {
  width: 100%;
  position: absolute;
  padding: 0 16px;
  line-height: 40px;
  outline: none;
  border: solid 2px #F6F3E0;
  background-color: #F6F3E0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}
.pk-input-field input::-moz-placeholder, .pk-input-field select::-moz-placeholder, .pk-input-field textarea::-moz-placeholder {
  opacity: 0;
}
.pk-input-field input::placeholder, .pk-input-field select::placeholder, .pk-input-field textarea::placeholder {
  opacity: 0;
}
.pk-input-field input:valid, .pk-input-field select:valid, .pk-input-field textarea:valid {
  border-color: #E8EEE6;
  background-color: white;
}
.pk-input-field input:required:-moz-placeholder, .pk-input-field select:required:-moz-placeholder, .pk-input-field textarea:required:-moz-placeholder {
  border-color: #F6F3E0;
  background-color: #F6F3E0;
}
.pk-input-field input:required:placeholder-shown, .pk-input-field select:required:placeholder-shown, .pk-input-field textarea:required:placeholder-shown {
  border-color: #F6F3E0;
  background-color: #F6F3E0;
}
.pk-input-field input:invalid:not(:-moz-placeholder), .pk-input-field select:invalid:not(:-moz-placeholder), .pk-input-field textarea:invalid:not(:-moz-placeholder) {
  border-color: #EA5252;
}
.pk-input-field input:invalid:not(:placeholder-shown), .pk-input-field select:invalid:not(:placeholder-shown), .pk-input-field textarea:invalid:not(:placeholder-shown) {
  border-color: #EA5252;
}
.pk-input-field input:invalid:not(:-moz-placeholder) + label, .pk-input-field select:invalid:not(:-moz-placeholder) + label, .pk-input-field textarea:invalid:not(:-moz-placeholder) + label {
  color: #EA5252;
  height: 16px;
  line-height: 16px;
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  border-radius: 8px;
  padding: 0 8px;
}
.pk-input-field input:invalid:not(:placeholder-shown) + label, .pk-input-field select:invalid:not(:placeholder-shown) + label, .pk-input-field textarea:invalid:not(:placeholder-shown) + label {
  color: #EA5252;
  height: 16px;
  line-height: 16px;
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  border-radius: 8px;
  padding: 0 8px;
}
.pk-input-field input:focus, .pk-input-field select:focus, .pk-input-field textarea:focus {
  border-color: #2F6F79;
  background-color: white;
}
.pk-input-field input:required:focus, .pk-input-field select:required:focus, .pk-input-field textarea:required:focus {
  border-color: #2F6F79;
  background-color: white;
}
.pk-input-field input.error, .pk-input-field select.error, .pk-input-field textarea.error {
  border-color: #EA5252;
  background-color: white;
}
.pk-input-field input.error + label, .pk-input-field select.error + label, .pk-input-field textarea.error + label {
  color: #EA5252;
  height: 16px;
  line-height: 16px;
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  border-radius: 8px;
  padding: 0 8px;
}
.pk-input-field input[readonly] {
  border: solid 2px #E8EEE6;
  background-color: #F6F3E0;
  color: #2F6F79;
  opacity: 0.7;
}
.pk-input-field input[readonly]:focus {
  border-color: #E8EEE6;
  background-color: #F6F3E0;
}
.pk-input-field select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem top 50%;
  background-size: 0.65rem auto;
}
.pk-input-field input:focus + label, .pk-input-field input:valid + label {
  color: #2F6F79;
  height: 16px;
  line-height: 16px;
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  border-radius: 8px;
  padding: 0 8px;
}
.pk-input-field.icon-left .pk-icon-left {
  position: absolute;
  line-height: 40px;
  left: 8px;
  z-index: 0;
}
.pk-input-field.icon-left input {
  padding-left: 40px;
}
.pk-input-field.icon-left label {
  padding-left: 40px;
}
.pk-input-field.icon-left input:focus ~ .pk-icon-left, .pk-input-field.icon-left input:valid ~ .pk-icon-left {
  color: #2F6F79;
}
.pk-input-field.icon-right .pk-icon-right {
  position: absolute;
  line-height: 40px;
  right: 8px;
  z-index: 0;
}
.pk-input-field.icon-right .pk-icon-right-btn {
  position: absolute;
  line-height: 36px;
  right: 8px;
  z-index: 1;
  color: white;
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 0;
  top: 4px;
  right: 4px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.pk-input-field.icon-right .pk-icon-right-btn:hover:not(.disabled):before {
  background-color: rgb(54.1339285714, 127.8482142857, 139.3660714286) !important;
}
.pk-input-field.icon-right .pk-icon-right-btn:active:not(.disabled):before {
  background-color: rgb(35.5857142857, 84.0428571429, 91.6142857143) !important;
}
.pk-input-field.icon-right .pk-icon-right-btn.disabled {
  cursor: default;
  opacity: 0.5;
}
.pk-input-field.icon-right .pk-icon-right-btn::before {
  content: "";
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  background-color: #60B7C3;
  border-radius: 6px;
  z-index: -1;
  top: 0;
  right: 0;
}
.pk-input-field.icon-right input {
  padding-right: 40px;
}
.pk-input-field.icon-right label {
  padding-right: 40px;
}
.pk-input-field.icon-right input:focus ~ .pk-icon-left, .pk-input-field.icon-right input:valid ~ .pk-icon-left {
  color: #2F6F79;
}
.pk-input-field.select-right .pk-icon-right {
  position: absolute;
  line-height: 40px;
  right: 8px;
}
.pk-input-field.select-right input:focus ~ .pk-icon-left, .pk-input-field.select-right input:valid ~ .pk-icon-left {
  color: #2F6F79;
}
.pk-input-field textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  padding: 16px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 8px;
  border: solid 2px #F6F3E0;
  background-color: #F6F3E0;
  transition: all 0.2s ease-in-out;
  position: absolute;
}
.pk-input-field textarea::-moz-placeholder {
  opacity: 0;
}
.pk-input-field textarea::placeholder {
  opacity: 0;
}
.pk-input-field textarea:focus {
  border-color: #2F6F79;
  background-color: white;
}
.pk-input-field textarea:valid {
  border-color: #E8EEE6;
  background-color: white;
}
.pk-input-field textarea:focus + label, .pk-input-field textarea:valid + label {
  transform: translate(8px, -8px) scale(0.88);
  background-color: white;
  border-radius: 8px;
  padding: 0 8px;
  height: 16px;
  line-height: 16px;
  color: #2F6F79;
}
.pk-input-field textarea:invalid:not(:-moz-placeholder) {
  border-color: #EA5252;
}
.pk-input-field textarea:invalid:not(:placeholder-shown) {
  border-color: #EA5252;
}
.pk-input-field textarea.error {
  border-color: #EA5252;
  background-color: white;
}

.pk-textarea {
  margin-top: 24px;
}

.register__phone-container {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 16px;
}

.register__gests {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
}
.register__gests .form-check {
  margin-top: 16px;
}
@media screen and (max-width: 600px) {
  .register__gests {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-container {
  margin-top: 72px;
  display: flex;
  opacity: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .contact-container {
    margin-top: 0px;
    padding: 0;
  }
}
.contact-container .contact_form {
  background-color: #fff;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
}
@media (max-width: 768px) {
  .contact-container .contact_form {
    grid-template-columns: 1fr;
  }
}
.contact-container .contact_form__art {
  background-image: url("../assets/home/vine.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .contact-container .contact_form__art {
    display: none;
  }
}
.contact-container .contact_form__art::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.contact-container .contact_form__art::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(47, 111, 121, 0.4);
}
.contact-container .contact_form__art img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  min-width: 200px;
  max-width: 320px;
  padding-left: 16px;
  padding-right: 16px;
}
.contact-container .contact_form__content {
  padding: 48px 24px;
}
@media (max-width: 768px) {
  .contact-container .contact_form__content {
    padding: 24px 16px;
  }
}
.contact-container .contact_form__content .modal_actions {
  display: flex;
  justify-content: space-between;
}
.contact-container .contact_form__content .modal_actions .btn-outline-primary {
  border: none !important;
  color: #2F6F79;
}
.contact-container .contact_form__content .modal_actions .btn-outline-primary:hover, .contact-container .contact_form__content .modal_actions .btn-outline-primary:active, .contact-container .contact_form__content .modal_actions .btn-outline-primary:focus {
  background-color: rgb(223.05, 212.4, 144.95) !important;
}

.statement {
  margin: 0 24px;
  padding: 16px;
  background-color: #F6F3E0;
  position: relative;
}
.statement::after, .statement::before {
  content: "";
  position: absolute;
  display: block;
  aspect-ratio: 1/1;
  width: 2.6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.statement::after {
  top: -1.3rem;
  left: -1.3rem;
  background-image: url("../assets/statement/quot_start.svg");
}
.statement::before {
  bottom: -1.3rem;
  right: -1.3rem;
  background-image: url("../assets/statement/quot_end.svg");
}
.statement strong {
  color: #2F6F79;
}
.statement.home-statement {
  display: grid;
  grid-template-columns: minmax(200px, 480px) 1fr;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .statement.home-statement {
    grid-template-columns: minmax(100px, 360px) 1fr;
  }
}
@media screen and (max-width: 991px) {
  .statement.home-statement {
    grid-template-columns: 1fr;
  }
}
.statement.home-statement img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1200px) {
  .statement.home-statement img {
    height: 100%;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 991px) {
  .statement.home-statement img {
    display: none;
  }
}
.statement.home-statement h4 {
  font-weight: normal !important;
  opacity: 0.7;
}

.footer-banner {
  margin-top: 72px;
  position: relative;
  overflow: hidden;
  height: 240px;
  background-image: url(../assets/footer/tile.png);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: auto 240px;
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
}
.footer-banner .logo {
  width: 178px;
  margin-top: 16px;
}

footer {
  background-color: #2F6F79;
  color: white;
}
footer .footer {
  display: flex;
  flex-direction: column;
}
footer section {
  display: flex;
  gap: 32px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  footer section {
    flex-direction: column;
    gap: 16px;
  }
}

header {
  background-color: white;
}
header .header-menu-trigger {
  display: none;
  margin-left: 16px;
}
header .header-menu-trigger h1 {
  background-image: url(../assets/logo-header.svg);
  width: 130px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 992px) {
  header .header-menu-trigger {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  header .header-menu-trigger .menu-trigger-btn {
    color: #2F6F79;
  }
}
header .header-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
@media screen and (max-width: 992px) {
  header .header-desktop {
    display: none;
  }
}
header .header-desktop h1 {
  background-image: url(../assets/logo-web.svg);
  width: 200px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  margin: 0 0 0 16px;
  padding: 0;
}
header .header-desktop nav {
  height: 100%;
}
header .header-desktop nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
header .header-desktop nav ul li {
  position: relative;
  height: 100%;
}
header .header-desktop nav ul li.current_page_item:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #DF8056;
  height: 4px;
  width: 100%;
}
header .header-desktop nav ul li.current_page_item a {
  font-weight: bold;
}
header .header-desktop nav ul li a {
  text-decoration: none;
  color: #2F6F79;
  display: block;
  height: 100%;
  line-height: 64px;
  padding: 0 8px;
}
header .header-desktop nav ul li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  list-style: none;
  z-index: 10;
}
header .header-desktop nav ul li ul.sub-menu li a {
  line-height: normal;
  padding: 8px 16px;
  white-space: nowrap;
}
header .header-desktop nav ul li ul.sub-menu li:hover {
  background-color: #F0F0F0;
}
header .header-desktop nav ul li:hover > ul.sub-menu {
  display: block;
}

.header-mobile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  background-color: rgba(240, 240, 240, 0.8);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  transform: translateX(-100%);
  opacity: 0;
}
.header-mobile.active {
  animation: showsidemenu 0.3s ease-in-out forwards;
}
@keyframes showsidemenu {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.header-mobile.unactive {
  animation: hidesidemenu 0.3s ease-in-out forwards;
}
@keyframes hidesidemenu {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}
.header-mobile ul {
  list-style-type: none;
  margin: 16px;
  padding: 0;
}
.header-mobile ul li {
  background-color: white;
  margin-top: 16px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.header-mobile ul li.current_page_item:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #2F6F79;
  height: 100%;
  width: 8px;
}
.header-mobile ul li.current_page_item a {
  font-weight: bold;
}
.header-mobile ul li a {
  display: block;
  width: 100%;
  padding: 16px 16px;
  text-decoration: none;
  color: #333333;
}

.hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
}
.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.hero__content {
  margin-top: 72px;
  background-color: white;
  padding: 24px;
}

.page-intro {
  position: relative;
  padding: 24px;
  background-color: white;
}
.page-intro h1 {
  margin-top: 24px;
  color: #DF8056;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  gap: 8px;
}
.pagination li.active a {
  background-color: #DF8056;
  color: white;
}
.pagination li.disabled a {
  background-color: rgb(209.6571428571, 221.4857142857, 205.7142857143);
  color: rgb(131.4571428571, 163.6857142857, 120.7142857143);
}
.pagination li:not(.active-arrow-nav):hover {
  background-color: rgb(209.6571428571, 221.4857142857, 205.7142857143);
  border-radius: 8px;
}
.pagination li.active-arrow-nav a {
  background-color: #DF8056;
  color: white;
}
.pagination li a {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333333;
  font-size: 18px;
}

.not_found {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.not_found img {
  width: 100%;
  min-width: 100px;
  max-width: 560px;
}

.home-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  min-height: 45vh;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
.home-hero h1 {
  font-size: 3.4rem;
}
.home-hero h1 strong {
  display: inline-block;
  width: 120px; /* Ajusta el ancho del logo */
  height: 3.4rem; /* Establece la altura visible del logo */
  background-image: url(../assets/logo-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  text-indent: -9999px; /* Oculta el texto si lo hay */
  vertical-align: middle;
}
.home-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.home-hero__background img {
  width: 100%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-hero__background .video-bg {
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-hero .proyects_preview {
  margin-top: 124px;
  background-color: white;
  padding: 48px 16px;
  text-align: center;
}
.home-hero .swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 36px;
}
.home-hero .swiper .swiper-horizontal > .swiper-pagination-bullets, .home-hero .swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .home-hero .swiper .swiper-pagination-custom, .home-hero .swiper .swiper-pagination-fraction {
  bottom: 0 !important;
}
.home-hero .swiper .swiper-pagination-bullet-active {
  background: #DF8056 !important;
}
.home-hero .swiper .swiper-button-next, .home-hero .swiper .swiper-button-prev {
  color: white !important;
}
.home-hero .swiper .swiper-button-next::before, .home-hero .swiper .swiper-button-prev::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-color: #DF8056;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.home-hero .swiper .swiper-button-next:after, .home-hero .swiper .swiper-button-prev:after {
  font-size: 28px;
}

.swiper-slide {
  font-size: 18px;
  display: flex;
  position: relative;
  height: 100%;
}

.proyect-preview {
  width: 100%;
  height: calc(100% - 32px);
  position: relative;
}
.proyect-preview img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.proyect-preview__options {
  position: absolute;
  top: 0;
  right: 0;
  margin: 16px;
  display: flex;
  gap: 16px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  color: #DF8056;
  cursor: pointer;
}
.proyect-preview__description {
  width: 100%;
  font-size: 16px;
  padding: 16px 0;
  overflow: hidden;
}
.proyect-preview__description h3 {
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1rem !important;
  text-align: left;
}

.home-services {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  grid-auto-rows: 1fr;
}
@media screen and (max-width: 800px) {
  .home-services {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .home-services {
    grid-template-columns: 1fr;
  }
}
.home-services__service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: #E8EEE6;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  color: #333333;
}
.home-services__service img {
  width: 64px;
  height: auto;
}

.hero-about {
  position: relative;
  min-height: 50vh;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
  color: white;
}
.hero-about h1 {
  margin-top: 24px;
  font-size: 3.6rem !important;
}
@media screen and (max-width: 768px) {
  .hero-about h1 {
    font-size: 2.2rem !important;
  }
}
.hero-about .hero-about__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-about .hero-about__bg .swiper {
  width: 100%;
  height: 100%;
}
.hero-about .hero-about__bg .swiper-slide {
  width: 100%;
  height: 100%;
  background-color: #333333;
}
.hero-about .hero-about__bg .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}
.hero-about__content {
  padding: 24px;
  position: relative;
  z-index: 1;
  height: 37vh !important;
}
.hero-about__content.title_only {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-about__content h1 {
  font-size: 4.2rem;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.swiper_socios {
  width: 100% !important;
  height: 100%;
}
.swiper_socios .swiper-wrapper {
  width: 100% !important;
}
.swiper_socios .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0;
}
.swiper_socios .swiper-slide:hover {
  z-index: 1;
}
.swiper_socios .swiper-slide .socio {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.swiper_socios .swiper-slide .socio:hover .socio__content {
  transform: translateY(0);
}
.swiper_socios .swiper-slide .socio:hover .socio__content h5 {
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}
.swiper_socios .swiper-slide .socio:hover .socio__content small {
  opacity: 1;
}
.swiper_socios .swiper-slide .socio .country {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(223, 128, 86, 0.5);
  padding: 16px;
  color: white;
}
.swiper_socios .swiper-slide .socio__content {
  padding: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: left;
  color: white;
  background: #2F6F79;
  transition: all 0.3s ease-in-out;
  will-change: transform;
  transform: translateY(calc(100% - 5rem));
  background: #2F6F79;
  background: linear-gradient(0deg, rgb(47, 111, 121) 0%, rgb(47, 111, 121) 75%, rgba(47, 111, 121, 0) 100%);
}
.swiper_socios .swiper-slide .socio__content.internacional {
  background: #DF8056;
  background: linear-gradient(0deg, rgb(223, 128, 86) 0%, rgb(223, 128, 86) 75%, rgba(223, 128, 86, 0) 100%);
}
.swiper_socios .swiper-slide .socio__content h5 {
  border-bottom: solid 1px rgba(255, 255, 255, 0);
  transition: all 0.3s ease-in-out;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.swiper_socios .swiper-slide .socio__content small {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  font-size: 0.8rem;
  line-height: 0.64rem !important;
}
.swiper_socios .swiper-slide .socio img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.socios-principales {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.socios-principales__socio {
  position: relative;
  overflow: hidden;
}
.socios-principales__socio img {
  width: calc(100% - 64px);
  margin: 32px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.socios-principales__socio:hover img, .socios-principales__socio:active img {
  filter: grayscale(0%);
}
.socios-principales__socio__content {
  position: relative;
  padding: 16px;
}
.socios-principales__socio__content__title {
  padding: 16px 0;
}
.socios-principales__socio__content__title.lastname {
  color: #DF8056;
}
.socios-principales__socio__content__full {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 16px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
  pointer-events: none;
  border-radius: 0 0 16px 16px;
}
.socios-principales__socio:hover .socios-principales__socio__content__full, .socios-principales__socio:active .socios-principales__socio__content__full {
  opacity: 1;
  transform: translateY(0%);
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .socios-principales {
    grid-template-columns: repeat(1, 1fr);
  }
}

.socios_container {
  position: relative;
  margin-top: 48px;
}
.socios_container .mask {
  overflow-x: auto;
  padding-bottom: 16px;
  flex-shrink: 0;
}
.socios_container .mask .socios {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  width: -moz-max-content;
  width: max-content;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .socios_container .mask .socios {
    gap: 16px;
  }
}
.socios_container .mask .socios__socio {
  position: relative;
  cursor: pointer;
  width: calc(12vw - 24px);
  height: 200px;
  border: solid 1px orange;
  transition: all 0.6s ease-in-out;
  will-change: transform;
  overflow: hidden;
  transition: transform 0.5s ease, opacity 0.3s;
  will-change: transform;
}
@media screen and (max-width: 1399px) {
  .socios_container .mask .socios__socio {
    width: calc(15vw - 24px);
    border: solid 1px green;
  }
}
@media screen and (max-width: 1199px) {
  .socios_container .mask .socios__socio {
    width: calc(20vw - 24px);
    border: solid 1px blue;
  }
}
@media screen and (max-width: 1024px) {
  .socios_container .mask .socios__socio {
    width: calc(25vw - 24px);
    border: solid 1px red;
  }
}
@media screen and (max-width: 768px) {
  .socios_container .mask .socios__socio {
    width: calc(30vw - 16px);
    border: solid 1px purple;
  }
}
.socios_container .mask .socios__socio.active {
  height: 450px;
}
.socios_container .mask .socios__socio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.socios_container .socios_description {
  position: absolute;
  top: 0;
  padding: 0 24px;
  left: 15vw;
}
@media screen and (max-width: 1999px) {
  .socios_container .socios_description {
    left: 15vw;
  }
}
@media screen and (max-width: 1399px) {
  .socios_container .socios_description {
    left: 15vw;
  }
}
.socios_container .socios_description .nombre {
  font-size: 2rem;
  margin-bottom: 12px;
  animation: socio_intro 0.3s ease-in 0.2s forwards;
  opacity: 0;
  transform: translateY(20px);
  color: #2F6F79;
}
@media screen and (max-width: 768px) {
  .socios_container .socios_description .nombre {
    font-size: 1.2rem;
    font-weight: bold;
  }
}
.socios_container .socios_description .competencias {
  color: #444;
  animation: socio_intro 0.3s ease-in 0.6s forwards;
  opacity: 0;
  transform: translateY(20px);
}
@keyframes socio_intro {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.home-intro {
  padding: 0;
  position: relative;
  color: white;
  background-color: #2F6F79;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 48px 0 72px 0;
  background-image: url(../assets/art.svg);
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
}
.home-intro__intro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.home-intro__intro__text {
  padding: 24px;
}
.home-intro__intro__text h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.home-intro__intro__text p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .home-intro__intro__text {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .home-intro__intro {
    grid-template-columns: repeat(1, 1fr);
    padding: 72px 0;
  }
}
.home-intro__intro img {
  margin-left: auto;
  margin-right: auto;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .home-intro__intro img {
    display: none;
  }
}

.protectos {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.protectos__proyecto {
  background-color: #E8EEE6;
  padding: 16px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
}
@media screen and (max-width: 991px) {
  .protectos__proyecto {
    grid-template-columns: 80px 1fr;
  }
}
.protectos__proyecto__logo {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: white;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.protectos__proyecto__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.protectos__proyecto__content__more {
  display: flex;
  gap: 24px;
  align-items: center;
  color: #2F6F79;
  flex-wrap: wrap;
}
.protectos__proyecto__content__more div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.publicaciones {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1200px) {
  .publicaciones {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .publicaciones {
    grid-template-columns: repeat(1, 1fr);
  }
}
.publicaciones__publicacion {
  background-color: #E8EEE6;
  padding: 16px;
  border-radius: 8px;
}
.publicaciones__publicacion__content__more {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}
.publicaciones__publicacion__content__more a {
  color: #2F6F79 !important;
  display: flex;
  text-decoration: none;
  gap: 8px;
}

.search-ui {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.search-ui input[type=text] {
  border-radius: 32px;
  padding-right: 32px;
}
.search-ui .clear-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  color: #333333;
}
.search-ui .clear-btn.disabled {
  opacity: 0.5;
  cursor: none;
}

.empresas {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}
.empresas__empresa {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: center;
  background-color: #E8EEE6;
}
@media screen and (max-width: 991px) {
  .empresas__empresa {
    grid-template-columns: 1fr;
    gap: 16px;
    grid-template-rows: 200px 1fr;
  }
}
.empresas__empresa__content {
  padding: 16px;
}
.empresas__empresa__banner {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #2F6F79;
  overflow: hidden;
  align-items: center;
  height: auto;
}
@media screen and (max-width: 991px) {
  .empresas__empresa__banner {
    height: 200px;
  }
}
.empresas__empresa__banner img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991px) {
  .empresas__empresa__banner img {
    width: 100%;
    height: auto;
  }
}

.galleria .swiper {
  width: 100%;
  height: 340px;
}
.galleria .swiper-container {
  height: 340px; /* Altura deseada */
}
.galleria .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.galleria .swiper-slide::after {
  content: "Copyright ©️ FOREVER-CHILE. All Rights Reserved.";
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 8px;
  width: 100%;
  opacity: 0.7;
  font-size: 0.9rem;
}
.galleria .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */