@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prata&family=Quicksand:wght@300..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
:root{
  --color-1: #fff;
  --text-color: #333333;
  --accent-color: #dddddd;
  --principal-text: #353535;
  --text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  font-size: 12pt;
  font-family: 'Manrope', Segoe UI, Tahoma, sans-serif;
  scroll-behavior: smooth;
}
body {
  background-color: #f7f7f7;
}

/*//////////*/
a {
  text-decoration: none;
}

.btn-whatsapp-pulse {
  background: #29a71a;
  color: #fff;
  position: fixed;
  bottom: 50px;
  right: 20px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 35px;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  z-index: 10;
}
.btn-whatsapp-pulse img {
  border-radius: 50%;
}
@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
      box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
/*//////////*/
.go-up {
  position: fixed;
  bottom: 0;
  left: 0;
  margin: 20px;
  z-index: 1000;
}
.go-up i {
  font-size: 15px;
  color: var(--color-1);
  text-shadow: var(--text-shadow);
  background-color: var(--text-color);
  padding: 5px;
  border-radius: 4px;
}

/*//////////*/

.header-information {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  font-size: 15px;
}

.header-information section {
  display: flex;
  align-items: center;
  gap: 7px;
}

.header-information span {
  font-weight: 400;
  color: var(--text-color);
}

.header-information i {
  font-size: 20px;
}

.mini-divisor {
  height: 30px;
  background-color: #c0c0c0;
  border-radius: 50px;
  width: 2px;
  margin: 0 3em;
}

@media (max-width: 840px) {
  .header-information {
    display: none;
  }
  header {
    position: sticky;
    top: 0;
    z-index: 100;
  }
}

/*//////////*/
nav{
  height: auto;
  background-color: var(--color-1);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 2em;
  z-index: 100;
}
.links-container{
  height: 96px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.links-container a:last-child {
  display: none;
}
nav a{
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  font-size: 17px;
  transition: background-color 0.2s;
}
nav a:not(.home-link):hover{
  background-color: var(--accent-color);
  transition: background-color 0.2s;
}
nav a:not(.home-link).active {
  background-color: var(--accent-color);
  font-weight: 600;
}
nav .home-link{
  margin-right: auto;
}
nav .home-link img {
  width: 200px;
}
#sidebar-active{
  display: none;
}
.open-sidebar-button, .close-sidebar-button{
  display: none;
  cursor: pointer;
  color: var(--text-color);
  font-size: 22px;
  transition: 0.3s;
}

.open-sidebar-button:hover {
  color: var(--accent-color);
  transition: 0.3s;
}

.close-sidebar-button:hover {
  color: #ff4a4a;
  transition: 0.3s;
}

nav a:nth-child(3) {
    color: #327bf8;
    font-weight: 600;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.233);
}

@media(max-width: 770px){
  .links-container{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(150px);
    -webkit-backdrop-filter: blur(150px);
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
    transition: 0.75s ease-out;
    height: 100%;
  }
  .links-container a:last-child {
    display: flex;
    margin-top: auto;
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
    font-weight: 600;
  }
  .links-container a {
    color: #000;
  }
  .fa-instagram-fa {
    font-size: 35px;
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    background-clip: none;
    -webkit-text-fill-color: transparent;
  }
  nav a{
    box-sizing: border-box;
    height: auto;
    width: 100%;
    padding: 20px 30px;
    justify-content: flex-start;
  }
  .open-sidebar-button, .close-sidebar-button{
    padding: 30px;
    display: block;
  }
  #sidebar-active:checked ~ .links-container{
    right: 0;
  }
  #sidebar-active:checked ~ #overlay{
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }
  nav .home-link img {
    width: 140px;
  }

  .home-link, .open-sidebar-button {
    padding: 10px;
  }
  nav .home-link:last-child {
    padding: 20px;
  }
}

/*////////////////////////*/

.background-inicio h1 {
  color: #fff;
  z-index: 1;
}

.box-3 { background-color: transparent; margin-top: 50px;}

.btn {
    line-height: 50px;
    height: 50px;
    text-align: center;
    width: 250px;
    cursor: pointer;
    font-size: 1.05em;
}
.btn-three {
    color: #FFF;
    transition: all 0.5s;
    position: relative;
    padding: 15px 50px;
    text-transform: uppercase;
}
.btn-three::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255,255,255,0.15);
    transition: all 0.3s;
}
.btn-three:hover::before {
    opacity: 0 ;
    transform: scale(0.5,0.5);
}
.btn-three::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.5);
    transform: scale(1.2,1.2);
}
.btn-three:hover::after {
    opacity: 1;
    transform: scale(1,1);
}

main {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(assets/img/web-background.webp);
  background-position: right;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  z-index: 2;
  color: var(--color-1);
  text-align: center;
  padding: 0 1em;
}

.olaso {
    background: linear-gradient(to right, #2979ff, #00afff);
    -webkit-background-clip: text;
    background-clip: none;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(53, 127, 255, 0.342);
}
.main-titles {
  text-shadow: var(--text-shadow);
}
.main-titles:first-child {
  margin-bottom: 0.5em;
  font-size: 40px;
  font-weight: 600;
  max-width: 100%;
}
.main-titles:nth-child(2) {
  font-weight: 400;
}

@media (max-width: 1550px) {
  .main-titles:first-child {
    font-size: 35px;
  }
}
@media (max-width: 950px) {
  .main-titles:first-child {
    font-size: 30px;
  }
  .main-titles:nth-child(2) {
    font-size: 22px;
  }
  .btn {
    font-size: 15px;
  }
}
@media (max-width: 650px) {
  .main-titles:first-child {
    font-size: 25px;
    margin-bottom: 30px;
  }
  .main-titles:nth-child(2) {
    font-size: 18px;
  }
  .btn {
    font-size: 14px;
  }
  main {
    min-height: 70vh;
  }
}
@media (max-width: 450px) {
  .main-titles:first-child {
    font-size: 22px;
  }
  .main-titles:nth-child(2) {
    font-size: 16px;
  }
  .btn {
    font-size: 14px;
    padding: 15px 40px;
  }
  main {
    min-height: 60vh;
  }
  
}

.divisor-special {
  width: 100%;
  height: 1px;
  margin: 2em 0;
  background-color: var(--principal-text);
}

.projects-title {
  text-align: center;
  font-weight: 600;
  font-size: 32px;
  text-shadow: var(--text-shadow);
  color: var(--principal-text);
}

.services {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 2em auto;
  padding: 0 1em 4em 1em;
  color: var(--text-color);
  gap: 3em;
}
.services-section-1 {
  order: 2;
  padding-left: 4em;
}
.services-section-1 i {
  font-size: 30px;
  color: #48e;
  padding-right: 20px;
  text-shadow: var(--text-shadow);
}
.services-section-1 h2 {
  font-weight: 500;
  font-size: 25px;
  text-shadow: var(--text-shadow);
  padding-bottom: 0.9em;
}

.section-1-child {
  background-color: #e7e7e7;
  padding: 15px;
  border-radius: 10px;
  margin: 10px 0 30px 0;
  box-shadow: var(--box-shadow);
}

.fa-bell-concierge {
  padding-bottom: 0.7em;
}

.bold-text {
  font-size: 19px;
  font-weight: 600;
  text-decoration: underline;
}

.services-section-1 ul {
  padding-left: 35px;
  list-style: none;
}

.services-section-1 ul i {
  font-size: 20px;
  padding-right: 15px;
}

.services-section-1 ul li {
  padding-bottom: 8px;
}
.carousel-container {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 20px var(--principal-text);
  margin: 0 auto;
  border-radius: 15px;
}
.carousel-container:hover .prev, .carousel-container:hover .next {
  opacity: 1;
  transition: opacity 0.8s ease;
}
.carousel {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease-in-out;
}
.carousel img {
  min-width: 100%;
  height: 500px;
  object-fit: cover;
}
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 100% 5px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.prev { left: 0; }
.next { right: 0; }

.see-more {
  position: absolute;
  bottom: 0;
  right: 0;
  color: var(--color-1);
  background-color: var(--text-color);
  padding: 10px 40px;
  border-radius: 15px 0 0 0;
  z-index: 1;
}

.see-more:hover .bracket {
  transform: translateX(8px);
  transition: transform 0.3s ease;
}

.bracket {
  padding-left: 15px; 
  transition: transform 0.2s ease;
}

.all-properties {
  order: 3;
  background-color: var(--text-color);
  box-shadow: var(--box-shadow);
  padding: 9px 110px;
  width: fit-content;
  margin: 0 auto;
  color: var(--color-1);
  border-radius: 2px;
  font-size: 17px;
  font-weight: 400;
  border: 1px solid var(--text-color);
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
}

.all-properties:hover {
  background-color: var(--color-1);
  transition: background-color 0.2s ease;
  color: var(--text-color);
}

.right-arrow {
  padding-left: 15px;
  font-size: 19px;
  margin-bottom: -1px;
  transition: transform 0.4s ease;
  color: #fff !important;
}

.all-properties:hover .right-arrow {
  transform: translateX(30px);
  transition: transform 0.4s ease;
  color: var(--text-color) !important;
}

@media (max-width: 600px) {
  .services-section-1 {
    padding-left: 0;
  }
  .services-section-1 h2 {
    font-size: 21px;
  }
  .services-section-1 ul {
    padding-left: 10px;
    padding-bottom: 20px;
  }
  .prev, .next {
    color: var(--color-1);
    text-shadow: var(--text-shadow);
    background-color: transparent;
  }
  .all-properties {
    padding: 9px 30px;
    font-size: 13px;
  }
  .right-arrow {
    margin-bottom: 1px;
  }
  .projects-title {
    font-size: 21px !important;
  }
}

/*//////////////SECOND TITLE/////////////*/

.second-title {
  background-image: url(assets/img/November\ Update.png);
  background-position: center;
  background-size: cover;
  min-height: 20vh;
  position: relative;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.second-title:before, main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

main::before {
  background-color: rgba(0, 0, 0, 0.6);
}

.second-title h2 {
  color: #fff;
  text-shadow: var(--text-shadow);
  font-size: 42px;
  font-weight: 500;
  z-index: 1;
  font-family: 'DM sans';
  letter-spacing: 3px;
  transform: translateY(-40px);
  animation: appear-from-bottom 1s forwards;
}

@media (max-width: 500px) {
  .projects-title {
    font-size: 25px;
  } 
  .second-title h2 {
    font-size: 35px;
    letter-spacing: 2px;
  }
}

/*//////////////PROPIEDADES/////////////*/

.fa-arrow-right {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 20px;
  color: #fff;
  padding: 20px;
  padding-right: 50px;
  transition: transform 0.3s ease;
  opacity: 0;
}

.propiedades-grid-item:hover .fa-arrow-right {
  transform: translateX(30px);
  transition: transform 0.3s ease;
  animation: opacidad-flecha 2s forwards;
}

@keyframes opacidad-flecha {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 60%;
  }
  100% {
    opacity: 60%;
  }
}

.propiedades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em;
  max-width: 1400px;
  margin: 3em auto;
  padding: 0 1em;
  z-index: 1;
  color: var(--principal-text);
}

.propiedades-grid-item {
  border-radius: 10px 10px 0 0;
  background-color: #f8f8f8;
  transition: transform 0.2s;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--box-shadow);
}

.propiedades-grid-item img {
  width: 100%;
  height: auto;
}

.text-bottom {
  padding: 10px 20px 20px 20px;
}

.text-bottom h4 {
  font-size: 26px;
  font-weight: 500;
  text-shadow: var(--text-shadow);
}

.bottom-div-flex {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  gap: 10px;
}

.img-top {
  position: relative;
}

.img-top img {
  border-radius: 7px 7px 0 0;
}

.bottom-div {
    display: flex;
    align-items: center;
    gap: 7px;
}

.bottom-div i {
  font-size: 19px;
} 

.bottom-div p {
  font-size: 18px;
  font-weight: 700;
}

.bottom-div:first-child {
  transform: translateX(7px);
}

.bottom-div:last-child {
  background-color: #c5c5c5;
  border: solid 1px var(--accent-color);
  padding: 5px 10px;
  border-radius: 5px;
  width: fit-content;
  box-shadow: var(--box-shadow);
}

.last-icons {
  display: flex;
  background-color: var(--accent-color);
  color: var(--green-text);
  align-items: center;
  text-align: center;
  justify-content: space-evenly;
  padding: 10px;
  font-size: 14px;
}

.last-icons section {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.last-icons i {
  font-size: 20px;
}

.last-icons span {
  font-weight: 500;
  color: var(--text-color);
}

.check {
  padding: 0 !important;
  color: #29a71a !important;
}

@media (max-width: 1100px) {
  .propiedades-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 910px) {
  .propiedades-grid {
      gap: 1.5em;
  }
}
@media (max-width: 690px) {
  .propiedades-grid {
      grid-template-columns: 1fr;
      gap: 2.5em;
  }
  propiedades-grid-item:hover .fa-arrow-right {
    transform: none;
    animation: none;
  }
}

/*ABOUT*/

.about-us {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 1200px;
  margin: 1em auto;
  padding: 0 1.3em;
  text-align: justify;
  font-size: 18px;
  font-weight: 300;
}

.about-us-child:not(.about-us-child:last-child) {
  display: flex;
}

.about-us-child span {
    font-size: 26px;
    font-weight: 600;
    color: #48e;
    text-shadow: var(--text-shadow);
}

.about-us-child ul {
  padding-left: 10px;
  padding-top: 15px;
}
.about-us-child li {
  list-style: none;
  margin-bottom: 15px;
}

.about-us-child p {
  padding: 10px 0;
}

.fa-arrow-right-long {
  color: #48e;
  padding-right: 15px;
}

.flip-card {
  width: 100%;
  height: 500px;
  perspective: 1200px;
  padding-left: 35px;
}

.flip-card-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.4s;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.flip-card-front img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card-back {
  background-color: lightcoral;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1050px) {
  .flip-card {
    display: none;
  }
}
@media (max-width: 500px) {
  .about-us {
    text-align: left;
    font-size: 17px;
  }
}

/*FORM*/

.contact-container {
  margin: 0 auto;
  font-family: "Poppins";
  justify-content: center;
  align-items: center;
  min-height: 40vh;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.contact-info {
  background-color: var(--principal-text);
  color: #fff;
  padding: 130px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  font-size: 1.2rem;
  flex: 1;
  padding-left: 140px;
}

.contact-info h2 {
  margin-bottom: 40px;
  font-size: 1.8em;
  text-align: center;
  border-bottom: solid 2px #fff;
  padding-bottom: 1em;
  font-weight: 600;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.info-item svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.info-item svg:hover {
  transition: transform 0.3s;
  transform: translateY(-4px);
}

.info-item:last-child {
  margin-left: -5px;
}

.info-item p {
  margin: 0;
  line-height: 1.5;
  font-size: 1rem;
}

.contact-form {
  padding: 60px;
  flex: 1;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  font-family: "Poppins";
  margin-bottom: 20px;
  padding: 15px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--principal-text);
}

.contact-form textarea {
  resize: vertical;
  max-height: 110px;
  scrollbar-width: none;
  margin-bottom: 20px;
  height: 60px
}

.contact-form .buttons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.contact-form button {
  font-family: "Poppins";
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  background-color: var(--principal-text);
  color: white;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #6e6e6e;
}

.contact-form .clear-button {
  background-color: #e0e0e0;
  color: #333;
}

.contact-form .clear-button:hover {
  background-color: #d6d6d6;
}

input:hover,
select:hover,
textarea:hover {
  border-bottom: 2px solid #a0a0a0;
}

input:invalid:not(:placeholder-shown),
select:invalid {
  border-bottom: solid 1.5px #db0c0c;
}

.contact-form h2 {
  font-size: 27px;
  margin-bottom: 10px;
}

.contact-form p {
  font-size: 17px;
  margin-bottom: 20px;
}

@media (max-width: 1210px) {
  .contact-info {
      padding-left: 6em;
  }
}

@media (max-width: 1150px) {
  .contact-info {
      padding-left: 3.6em;
  }
}

@media (max-width: 1070px) {
  .contact-container {
      flex-direction: column;
      margin: 4em auto;
  }

  .contact-info {
      text-align: center;
      padding: 30px 100%;
  }

  .contact-info h2 {
      margin: 1em auto;
      font-size: 1.2em;
      text-align: center;
  }

  .contact-form {
      width: 95%;
      padding: 20px;
  }

  .info-item {
      margin: 0 0 23px 0;
      width: 95%;
      gap: 15px;
  }

  .info-item p {
      font-size: 0.9rem;
  }

  .contact-form input,
  .contact-form textarea {
      font-size: 14px;
      padding: 10px;
      height: 46px;
  }

  .contact-form .buttons {
      gap: 10px;
      align-items: center;
      margin: 0 auto;
  }

  .contact-form button {
      width: 120px;
      padding: 11px 0;
  }
}

@media (max-width: 500px) {
  .contact-info h2 {
    font-size: 19px;
  }
}

/*DIVISOR*/

.divisor {
  width: 100%;
  height: 1px;
  background-color: var(--principal-text);
  margin: 3em 0;
}

/*/////////////FOOTER///////////////////*/
.copy p {
  font-family: Arial, Helvetica, sans-serif;
  color: #3f4b5e;
  text-align: center;
  padding: 2em;
  border-top: solid 0.5px #7c7c7c;
  margin: 0 auto;
  max-width: 700px;
}

.copy a, .copy a:active {
  text-decoration: underline;
  color: var(--text-color) !important;
}

footer {
  background-color: #fff;
}

.footer-flex {
  padding: 3em;
  display: flex;
  justify-content: center;
  gap: 10em;
  font-family: 'Poppins';
  flex: 1;
  flex-wrap: wrap;
}

.footer-flex a {
  color: #09285b;
  position: relative;
}

.footer-flex a::after {
      content: ''; 
      position: absolute;
      left: 0; 
      bottom: 0;
      width: 0; 
      height: 2px; 
      background-color: var(--text-color); 
      transition: width 0.4s ease; 
}

.footer-flex a:hover::after{
  width: 100%;
}

.footer-flex-item-item:last-child a:hover:after {
  width: 0;
}

.footer-flex li {
  list-style: none;
}

.footer-flex h2 {
  font-weight: 600;
  font-size: 1.5em;
  color: #09285b;
  padding-left: 1em;
  border-left: solid 3px var(--text-color);
  margin-bottom: 1em;
}

.footer-flex-item-item:last-child {
  border-top: solid 0.5px #7c7c7c;
  display: flex;
  align-items: center;
  padding: 1em;
}

.fa-footer {
  background-color: #d1d1d1;
  padding: 10px;
  font-size: 1em;
  margin-right: 0.3em;
  border-radius: 100px;
  transition: background-color 0.2s ease;
}

.fa-footer:hover {
  background-color: var(--text-color);
  transition: background-color 0.2s ease;
  color: #fff;
}

.fa-check {
  padding-right: 1em;
  padding-bottom: 0.8em;
  color: var(--text-color);
}

.footer-flex h3 {
  font-weight: 600;
  color: #09285b;
  font-size: 1.1em;
  padding: 15px 0;
  padding-right: 1em;
}

.footer-flex-item-item:first-child {
  padding-bottom: 1em;
}

/* ANIMATIONS */

main div {
  transform: translateY(80px);
  animation: appear-from-bottom 1s forwards;
}

/*.propiedades-grid-item {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.2s ease; 
}

.propiedades-grid-item.appear {
  animation: appear-from-bottom-2 0.7s forwards;
}*/


.propiedades-grid-item:hover {
  transform: translateY(0) scale(1.03); 
}

@keyframes appear-from-bottom-2 {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  80%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes appear-from-bottom {
  0% {
    opacity: 0;
  }
  80%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*////////////////////////*/

@media (max-width: 750px) {
  .footer-flex {
    gap: 4em;
  }

  .copy p {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .footer-flex {
    gap: 1em;
    justify-content: left;
  }

  .footer-flex h3 {
    font-size: 0.9em;
  }
}