/* Import and Apply Custom Font */
@font-face {
    font-family: 'Aeroport';
    src: url('../font/Indivisible-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  /* General Styles */
  * {
    box-sizing: border-box;
  }

  html {
    overflow-x: hidden;
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: 'Aeroport', Arial, sans-serif;
    background-color: #161616;
    overflow-x: hidden;
    width: 100%;
  }
  
  /* Navigation Bar Styles */
  .navbar {
    position: fixed; /* Makes the navbar sticky */
    top: 0; /* Sticks to the top of the viewport */
    z-index: 1000; /* Ensure it stays above other content */
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* 3 columns: logo, menu, empty */
    align-items: center; /* Vertically center content */
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #bcae9e;
    background-color:#161616; /* Initial transparent background */
    transition: background-color 0.3s ease; /* Smooth transition for background */
    overflow: visible;
  }

  .navbar.scrolled {
    background-color: rgba(22, 22, 22, 0.7); /* Slightly transparent black */
  transition: background-color 0.3s ease, border-radius 0.3s ease; /* Smooth transition */
  }

  body.scrolled .navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow effect */
  }

  .logo {
    justify-self: start; /* Align logo to the start of the first column */
    z-index: 1001;
  }
  
  .logo img {
    width: 200px;
    max-width: 100%;
    height: auto;
  }
  
  /* Navbar Menu */
  .navbar-menu {
    text-transform: uppercase;
    letter-spacing: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Flexbox for horizontal menu items */
    gap: 1.5rem;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .navbar-menu li {
    display: inline;
  }
  
  
  .navbar-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem; /* Slightly larger text for readability */
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  
  .navbar-menu a:hover {
    border-bottom:1px solid #b98f70;
  }

  /* Dropdown Menu Styles */
  .dropdown {
    position: relative;
  }

  .dropdown-toggle {
    cursor: pointer;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(22, 22, 22, 0.95);
    list-style: none;
    padding: 1rem 0;
    margin: 0.5rem 0 0 0;
    min-width: 200px;
    border: 1px solid #bcae9e;
    border-radius: 5px;
    z-index: 1001;
  }

  .dropdown-menu li {
    display: block;
    margin: 0;
  }

  .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    transition: background-color 0.3s ease;
    border-bottom: none;
  }

  .dropdown-menu a:hover {
    background-color: rgba(188, 174, 158, 0.2);
    border-bottom: none;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  /* Contact Button Styles (Desktop Only) */
  .navbar-contact-btn {
    justify-self: end;
    display: flex;
    align-items: center;
  }

  .navbar-contact-btn a {
    text-decoration: none;
  }

  .contact-button {
    background-color: #d8d2c9;
    color: #161616;
    border: 2px solid #B98A71;
    padding: 0.75rem 2rem;
    font-family: 'Aeroport', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
  }

  .contact-button:hover {
    background-color: #bcae9e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 197, 176, 0.3);
  }

  .contact-button:active {
    transform: translateY(0);
  }
  
  /* Burger Menu Styles */
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
    justify-self: end;
    z-index: 1002;
    position: relative;
  }
  
  .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: background-color 0.3s ease;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .navbar {
      grid-template-columns: auto 1fr auto; /* Burger menu appears in the third column */
      padding: 1rem 1.5rem;
      gap: 1rem;
    }

    .logo img {
      width: 150px;
    }

    /* Hide contact button on mobile */
    .navbar-contact-btn {
      display: none;
    }
  
    .navbar-menu {
      flex-direction: column;
      align-items: center;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #161616;
      transform: translateY(-200%);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.3s ease, opacity 0.3s ease;
      z-index: 999; 
    }

    .navbar-menu li {
      margin: 1rem 0; /* Add spacing between menu items */
    }
  
    .navbar-menu.active {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    /* Dropdown adjustments for mobile */
    .dropdown-menu {
      position: static;
      transform: none;
      display: none;
      background-color: rgba(22, 22, 22, 0.8);
      border: none;
      border-top: 1px solid #bcae9e;
      border-radius: 0;
      padding: 0.5rem 0;
      margin-top: 0.5rem;
    }

    .dropdown.active .dropdown-menu {
      display: block;
    }
  
    .menu-toggle {
      display: flex; /* Show the burger menu icon */
      flex-direction: column;
      gap: 0.3rem;
      cursor: pointer;
      z-index: 1002; /* Ensure it appears above the menu */
      padding: 0.5rem;
      background: transparent;
    }

    .menu-toggle span {
      display: block;
      width: 25px;
      height: 3px;
      background-color: white;
      border-radius: 2px;
      transition: background-color 0.3s ease;
    }
  
    .menu-toggle:hover span {
      background-color: #d4a58b; /* Change color on hover */
    }
    
  }

  @media (max-width: 360px) {
    .menu-toggle {
      display: flex; /* Show the burger menu icon */
      flex-direction: column;
      gap: 0.3rem;
      cursor: pointer;
      z-index: 1002; /* Ensure it appears above the menu */
      padding: 0.5rem;
    }

    .logo img {
      width: 130px;
    }
    }
  

.base-section {
    position: relative; /* Allows positioning of child elements */
    min-height: 95vh; /* Minimum height of the section */
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: flex-end; /* Align content to the bottom */
    padding: 2rem; /* Add padding */
    overflow: hidden; /* Ensure video doesn't overflow */
  }
  
  .background-video {
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the video covers the section */
    z-index: 0; /* Place video behind other content */
    filter: brightness(0.7); /* Darken the video */
  }
  
  .base-section .section-button {
    position: relative;
    z-index: 1; /* Ensure button appears above the video */
  }
  
  /* Background Image Section */
  .image-section {
    background-image: url('../imagenes/prueba.png'); /* Replace with your image path */
    background-size: cover; /* Ensure the image covers the section */
    background-position: center; /* Center the image */
    background-color: transparent; /* Override base background color */
  }

  /* Button Styling */
  .section-button {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 3px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    color: black;
    background-color: white;
    border: #bcae9e solid 1.5px;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .section-button:hover {
    background-color: #a3907e;
    transform: scale(1.05); /* Slightly enlarge the button on hover */
  }
  
  .section-button:active {
    transform: scale(0.95); /* Add a "pressed" effect */
  }

  .compartir-button {
    font-family: 'Aeroport';
    background:none;
    border:none;
    color:white;
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;

  }
  .compartir-button:hover {
    cursor: pointer;
    border-bottom: 1px solid white;
  }
  

  .centered-section {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    position: relative;
    padding: 4rem 2rem;
    background-color:#161616 ;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start slightly shifted */
    transition: opacity 3.5s ease, transform 3.5s ease; /* Smooth fade-in effect */
  }

  .centered-section.show {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Reset position */
  }
  

  
  .title-container h1 {
    font-size: 2rem; /* Adjust font size */
    font-weight: 600;
    background:  linear-gradient(90deg, rgba(234,210,197,1) 46%, rgba(255,255,255,1) 54%, rgba(235,212,200,1) 57%, rgba(226,194,176,1) 64%);
    -webkit-background-clip: text; /* Clip background to text */
    -webkit-text-fill-color: transparent; /* Make text fill transparent to show gradient */
    text-align: center; /* Center align the title */
    
  }
  
  .description-container p {
    font-size: 1rem;
    text-align: center;
    line-height: 1.8;
    max-width: 800px; 
    color: white;
  }
  
  .description-container strong {
    font-weight: bold;
  }
  
  .vertical-line-top {
    width: 1px;
    height: 180px; 
    background: linear-gradient(0deg, rgba(234,210,197,1) 60%, rgba(22,22,22,1) 96%);
    margin: 1rem 0; 
    overflow: hidden;
  }
    
  .vertical-line-bottom {
    width: 1px;
    height: 180px; 
    background: linear-gradient(0deg, rgba(22,22,22,1) 0%, rgba(234,210,197,1) 96%);
    margin: 1rem 0; 
    overflow: hidden;
  }

  .video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background-color: #161616;
    color: white;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start slightly shifted */
    transition: opacity 3.5s ease, transform 3.5s ease; /* Smooth fade-in effect */
  }

  .video-section.show{
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Reset position */
  }

  .video-container {
    max-width: 900px;
    width: 100%;
  }

  .video-container p {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white; /* Title color */
  }

  .video-container video {
    width: 100%; /* Make video responsive */
    border: 2px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Optional shadow for depth */
  }

  .send-link-container{
    text-transform: uppercase;
    letter-spacing: 6px;
    color:white;
    margin:20px;
  }

  .send-link-container a{
    color: inherit;
  }

  .send-link-container a:hover{
    opacity: 0.4;
  }

/* Info Section Styling */
.info-section {
  position: relative; /* Allows positioning of child elements */
  min-height: 95vh; /* Minimum height of the section */
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: flex-end; /* Align content to the bottom */
  padding: 2rem; /* Add padding */
  overflow: hidden; 
}

.info-section::before {
  content: ""; /* Pseudo-element for the background image */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../imagenes/casas.webp'); /* Replace with your image path */
  background-size: cover; /* Ensure the image covers the section */
  background-position: center; /* Center the image */
  background-repeat: no-repeat;
  opacity: 0.5; /* Adjust opacity for the background */
  z-index: -1; /* Place behind the content */
}


.top-right {
  position: absolute;
  letter-spacing: 5px;
  text-transform: uppercase;
  top: 2rem;
  left: 2rem;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  background:  linear-gradient(90deg, rgba(234,210,197,1) , rgba(235,212,200,1) 57%, rgba(226,194,176,1) 64%);
  -webkit-background-clip: text; /* Clip background to text */
  -webkit-text-fill-color: transparent; /* Make text fill transparent to show gradient */
  text-align: left; /* Align text to the left */
}

.bottom-right {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  color: white;
  text-align: left; /* Align text to the right */
  max-width: 500px; /* Limit width for readability */
}

.bottom-right h3 {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1.5rem;
  background:  linear-gradient(90deg, rgba(234,210,197,1) , rgba(235,212,200,1) 17%, rgba(226,194,176,1) 14%);
  -webkit-background-clip: text; /* Clip background to text */
  -webkit-text-fill-color: transparent; /* Make text fill transparent to show gradient */
  margin-bottom: 1rem;
  color: #d4a58b; /* Optional accent color */
}

.bottom-right p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Carousel Section Styling */
.carousel-section {
  position: relative;
  min-height: 100vh; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  background-color: #161616;
  overflow: visible;
}

.models-header {
  text-align: center;
  margin-bottom: 3rem;
  z-index: 2;
}

.models-title {
  font-size: 2.5rem;
  letter-spacing: 8px;
  color: #c8b5a0;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.models-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  font-weight: 300;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  overflow: visible;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.carousel {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  cursor: grab;
}

.carousel-slide {
  position: relative;
  flex-shrink: 0; 
  width: 100%; 
  height: 100%;
  user-select: none;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
  pointer-events: none;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
  z-index: 1;
  border-radius: 50px;
}

.model-label {
  position: absolute;
  top: 8%;
  left: 5%;
  z-index: 2;
}

.model-label h2 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 4px;
  background: linear-gradient(90deg, rgba(234, 210, 197, 1) 46%, rgba(255, 255, 255, 1) 54%, rgba(235, 212, 200, 1) 57%, rgba(226, 194, 176, 1) 64%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-transform: uppercase;
  margin: 0;
}

.model-label h2 span {
  font-weight: 600;
}

.slide-cta-btn {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0.75rem 2rem;
  border: 2px solid rgb(185, 138, 113);
  border-radius: 30px;
  background-color: rgb(216, 210, 201);
  color: rgb(22, 22, 22);
  font-family: Aeroport, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
  pointer-events: auto;
}

.slide-cta-btn:hover {
  background-color: rgb(185, 138, 113);
  border-color: rgb(185, 138, 113);
  color: #fff;
}

.carousel-slide-modelos {
  position: relative;
  flex-shrink: 0; 
  width: 100%; 
  height: auto;
}

.carousel-slide-modelos img {
  width: 100%;
  height: 100%;
  opacity: 0.6;
  object-fit: cover; 
}


.carousel-slide-modelos::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0 0 0), rgb(0 0 0 / 0%));
  z-index: 1;
}


/* Posiciones de texto de cada slide */
.carousel-content {
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
  top: 40%;
  left: 10%;
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 500px;
  box-sizing: border-box;
}

.carousel-content-centered {
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
  top: 15%;
  left: 33%;
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 700px;
  box-sizing: border-box;
  z-index: 2;
}

.carousel-content-centered h1{
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: normal;
  background:  linear-gradient(90deg, rgba(234,210,197,1) , rgba(235,212,200,1) 17%, rgba(226,194,176,1) 14%);
  -webkit-background-clip: text; /* Clip background to text */
  -webkit-text-fill-color: transparent; /* Make text fill transparent to show gradient */
  font-size: 6rem;
  margin-bottom: 0.5rem;
  color: #d4a58b; /* Optional accent color */
}

.carousel-content h2 {
  text-transform: uppercase;
  letter-spacing: 5px;
  background:  linear-gradient(90deg, rgba(234,210,197,1) , rgba(235,212,200,1) 17%, rgba(226,194,176,1) 14%);
  -webkit-background-clip: text; /* Clip background to text */
  -webkit-text-fill-color: transparent; /* Make text fill transparent to show gradient */
  font-size: 5rem;
  margin-bottom: 0.5rem;
  color: #d4a58b; /* Optional accent color */
}

.carousel-content p {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.section-button-modelos{
    width: 400px;
    padding: 1.2rem 2.4rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 3px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    color: black;
    background-color: white;
    border: #bcae9e solid 1.5px;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.video-thumbnail {
  position: absolute;    
  bottom: 4%;             
  right: 3%;           
  width: 500px;          
  height: auto;         
  z-index: 2;           
}

/* Style for the video itself */
.carousel-video {
  width: 100%;
  height: auto;
  border-radius: 8px;    /* Match or complement your existing design */
  object-fit: cover;     /* Scales/crops the video cleanly */
}

.carousel-content .carousel-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: white;
  background-color: #d4a58b;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}

.carousel-content .carousel-button:hover {
  background-color: #c19a7f;
}

/* Navigation Buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3.5rem;
  background-color: transparent;
  border:none;
  color: #B98A71;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-nav:hover {
  background-color: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.left {
  left: -5rem;
}

.carousel-nav.right {
  right: -5rem;
}

/* Pagination Dots */
.carousel-pagination {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 10;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.pagination-dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.pagination-dot.active {
  background-color: white;
  transform: scale(1.2);
}



@media (max-width: 768px) {
  .carousel-section {
    padding: 2rem 1rem;
    min-height: 90vh;
  }
  
  .models-title {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }
  
  .models-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .carousel-wrapper {
    width: 100%;
  }
  

  
  .model-label h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .carousel-content {
    left: 25%; /* Bring text closer to the center on smaller screens */
    max-width: 250px;
    padding: 1rem;
  }

  .carousel-content h2 {
    font-size: 1.5rem; /* Smaller text size */
  }

  .carousel-content p {
    font-size: 0.9rem; /* Smaller text size */
  }

  .carousel-nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
  }
  
  .carousel-nav.left {
    left: 0.5rem;
  }

  .carousel-nav.right {
    right: 0.5rem;
  }

  .carousel-slide img{
    height: 800px;
  }

  .carousel-content-centered {
    top: 30%;
    left: 5%;
    color: white;
    padding: 0.3rem;
    border-radius: 8px;
    max-width: 400px;
    box-sizing: border-box;
    z-index: 2;
  }

  .section-button-modelos{
    width: 200px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 3px;
    padding: 0.8rem 2rem;
    font-size: 0.6rem;
    color: black;
    background-color: white;
    border: #bcae9e solid 1.5px;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
  
  .carousel-content-centered h1{
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: normal;
    background:  linear-gradient(90deg, rgba(234,210,197,1) , rgba(235,212,200,1) 17%, rgba(226,194,176,1) 14%);
    -webkit-background-clip: text; /* Clip background to text */
    -webkit-text-fill-color: transparent; /* Make text fill transparent to show gradient */
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #d4a58b; /* Optional accent color */
  }

  .video-thumbnail {
    width: 250px; 
  }
}

@media (max-width: 480px) {
  .carousel-content {
    left: 25%; /* Further center the text */
    max-width: 200px;
    padding: 0.8rem;
  }

  .carousel-content h2 {
    font-size: 1.2rem;
  }
  .carousel-slide img{
    height: 800px;
  }
  .carousel-content p {
    font-size: 0.8rem;
  }

  .carousel-nav {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
}


/* Contacto Hero Section */
.contacto-hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow: hidden;
}

.contacto-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../imagenes/contacto.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: -1;
}

.contact-hero-text{
  color: white;
    width: 700px;
    font-size: 20px;
}

.contacto-hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 1;
  margin-top: 4rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, rgba(234,210,197,1), rgba(235,212,200,1) 57%, rgba(226,194,176,1) 64%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content h3 {
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: white;
  font-weight: 300;
  margin-top: 0;
}

@media (max-width: 768px) {
  .contacto-hero-section {
    min-height: 50vh;
  }

  .hero-content h1 {
    font-size: 2rem;
    letter-spacing: 3px;
  }

  .hero-content h3 {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
}

/* Contact Info Cards Section */
.contact-info-cards {
  background-color: #161616;
  padding: 60px 2rem;
}

.cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.info-card {
  background-color: #2a2a2a;
  border-radius: 15px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(188, 174, 158, 0.2);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 197, 176, 0.2);
}

.card-icon {
  margin-bottom: 1.5rem;
}

.card-icon i {
  font-size: 3rem;
  color: #d4c5b0;
}

.info-card h3 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.info-card p {
  color: #b8b8b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Cards */
@media (max-width: 1024px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-info-cards {
    padding: 40px 1rem;
  }

  .cards-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .info-card {
    padding: 2rem 1.5rem;
  }

  .card-icon i {
    font-size: 2.5rem;
  }

  .info-card h3 {
    font-size: 1.1rem;
  }

  .info-card p {
    font-size: 0.9rem;
  }
}

/* Contact Section Styling */
.contact-section {
  background:#1a1a1a;
  color: white;
}

.contact-title {
  margin-top: 40px;
  margin-bottom: 60px;
  text-align: center;
  font-size: 50px;
  background: linear-gradient(90deg, rgba(234, 210, 197, 1) 46%, rgba(255, 255, 255, 1) 54%, rgba(235, 212, 200, 1) 57%, rgba(226, 194, 176, 1) 64%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 1rem; /* Added side padding */
  margin-bottom:100px;
}

/* Left Section: Contact Info */
.contact-info {
  flex: 1;
  max-width: 500px;
}

.titulo-contacto {
  font-weight: normal;
  font-size: 2rem;
  background:  linear-gradient(90deg, rgba(234,210,197,1) , rgba(235,212,200,1) 17%, rgba(226,194,176,1) 14%);
  -webkit-background-clip: text; /* Clip background to text */
  -webkit-text-fill-color: transparent; /* Make text fill transparent to show gradient */
  margin-bottom: 1rem;
}

.contact-info p {
  color:white;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem; /* Reduced bottom margin */
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.contact-details li span {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

/* Right Section: Contact Form */
.contact-form {
  flex: 1;
  max-width: 900px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #1e1e1e;
  padding: 3rem; /* Increased padding for the form */
  border: 1px solid #d4a58b;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #444;
  background-color: #222;
  color: #ffffff;
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.contact-form button {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  background-color: white;
  color: #161616;
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #b98f70;
}

/* Map Section */
.contact-map {
  margin-top: 3rem;
  padding: 0 15rem; /* Added side padding for the map */
}

.contact-map iframe {
  border: 0;
  border-radius: 8px;
  width: 100%;
  height: 300px;
}

@media (max-width: 768px) {
  .contact-map {
    margin-top: 2rem;
    padding: 0 1rem; /* Added side padding for the map */
  }
}

/* Circle Carousel Styles */
.circle-carousel {
  width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 1rem;
  background-color: #161616;
  overflow: hidden; /* Prevent items outside the visible area from showing */
}

.circle-carousel .carousel-container {
  width: calc(83px * 5 + 16px * 4); /* Width to fit 5 items + gaps */
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .circle-carousel .carousel-container {
    width: calc(43px * 5 + 16px * 4); /* Width to fit 5 items + gaps */
    overflow: hidden;
    position: relative;
  }
}

.circle-carousel .carousel-items {
  display: flex;
  gap: 16px; /* Space between items */
  transition: transform 0.5s ease-in-out;
}

.circle-carousel .carousel-item {
  text-align: center;
  min-width: 80px; /* Fixed width for each item */
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.circle-carousel .circle {
  width: 80px;
  height: 80px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.circle-carousel .circle img {
  width: 40px;
  height: 40px;
}

.circle-carousel .carousel-item p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #ffffff;
}

/* Navigation Arrows */
.circle-carousel .carousel-arrow {
  background-color: transparent;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  position: absolute;
}

.circle-carousel .left-arrow {
  left: -10px;
}

.circle-carousel .right-arrow {
  right: -10px;
}

.circle-carousel .carousel-arrow:hover {
  background-color: transparent;
  color: white;
}

@media (max-width: 768px) {
  .circle-carousel {
    width: 330px;

  }

}

.image-carousel-amenidades{
  text-align: center;
  margin-top:50px;
}

.image-carousel-amenidades h2{
  font-size: 50px;
  background: linear-gradient(
    90deg,
    rgba(234, 210, 197, 1) 46%,
    rgba(255, 255, 255, 1) 54%,
    rgba(235, 212, 200, 1) 57%,
    rgba(226, 194, 176, 1) 64%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.amenidades-centered {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* Three columns: left, middle, right */
  align-items: center; /* Center align items vertically */
  text-align: center; /* Center text in the middle column */
  position: relative;
  padding: 4rem 2rem;
  background-color: #161616;
 
  transform: translateY(50px); /* Start slightly shifted */
  transition: opacity 3.5s ease, transform 3.5s ease; /* Smooth fade-in effect */
}

.amenidades-centered.show {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Reset position */
}

.column {
  justify-content: center;
  align-items: center;
}

.column-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem; /* Space between title and description */
}

.title-amenidades h1 {
  font-size: 2rem; /* Adjust font size */
  font-weight: 600;
  background: linear-gradient(
    90deg,
    rgba(234, 210, 197, 1) 46%,
    rgba(255, 255, 255, 1) 54%,
    rgba(235, 212, 200, 1) 57%,
    rgba(226, 194, 176, 1) 64%
  );
  -webkit-background-clip: text; /* Clip background to text */
  -webkit-text-fill-color: transparent; /* Make text fill transparent to show gradient */
  margin-bottom: 1rem; /* Space between title and description */
}

.description-amenidades p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 800px; /* Limit width for readability */
  color: white;
  margin: 0.5rem 0; /* Add space between paragraphs */
}

/* Vertical Carousel */
.vertical-carousel {
  height: 800px;
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

.vertical-carousel-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.vertical-carousel img {
  width: 40%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease, width 0.8s ease;
  flex-shrink: 0;
  opacity: 0.35;
  transform: scale(0.85);
  filter: brightness(0.5);
  display: block;
}

.vertical-carousel img.active {
  opacity: 1;
  transform: scale(1);
  filter: brightness(1);
  width: 52%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}


/* Column 3: Services with Icons */
.titulo-servicios {
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: justify;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(
    90deg,
    rgba(234, 210, 197, 1) 46%,
    rgba(255, 255, 255, 1) 54%,
    rgba(235, 212, 200, 1) 57%,
    rgba(226, 194, 176, 1) 64%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services {
  margin-right: 150px;
  margin-left:150px;
  text-align: justify;
  flex-direction: column; /* Stack services vertically */
  gap: 1rem; /* Space between services */
  align-items: center; /* Center align services */
}

.service {
  margin-bottom:25px;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.service img{
  margin-top: 10px;
  /* margin-right:60px */
}

.service p {
  font-size: 1.2rem;
  margin-bottom:10px;
  margin: 0;
}

@media (max-width: 900px) {
  .amenidades-centered {
    grid-template-columns: 1fr 1fr;
  }

  .column-1 {
    grid-column: 1 / -1; /* full width on top */
  }

  .vertical-carousel {
    height: 620px;
  }
}

@media (max-width: 768px) {
  .amenidades-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .column-1,
  .column-2,
  .column-3 {
    width: 100%;
  }

  .vertical-carousel {
    height: 520px;
  }

  .vertical-carousel img {
    width: 65%;
  }

  .vertical-carousel img.active {
    width: 78%;
  }

  .services {
    margin-right: 0;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .service {
    justify-content: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-bottom: 0;
  }

  .service img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .service p {
    font-size: 1rem;
  }

  .titulo-servicios {
    text-align: center;
    width: 100%;
  }

  .title-amenidades h1 {
    font-size: 1.5rem;
    text-align: center;
  }

  .description-amenidades p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .vertical-carousel {
    height: 420px;
  }

  .vertical-carousel img {
    width: 75%;
  }

  .vertical-carousel img.active {
    width: 88%;
  }
}

.eco-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.eco-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.eco-feature img {
  width: 35px;
}

.eco-feature h2 {
  font-size: 6rem;
  font-weight: normal;
  background: linear-gradient(
    90deg,
    rgba(234, 210, 197, 1) 46%,
    rgba(255, 255, 255, 1) 54%,
    rgba(235, 212, 200, 1) 57%,
    rgba(226, 194, 176, 1) 64%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.eco-feature p {
  margin:0px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: white;
}

/* Footer Section */
.eco-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.eco-footer img {
  margin-right: 25px;
}

.eco-footer p {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: white;
}

@media (max-width: 768px) {
  .eco-features {
    display: block;
  }
  .eco-feature {
    margin-top:30px;
    margin-bottom:30px;
  }
  
  .eco-feature img {
    width: 60px;
  }

  
  .eco-footer {
    display: block;
  }

}

.share-modal {
  border:1px solid;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #161616;
  color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 300px;
}

.share-modal.hidden {
  display: none;
}

#share-link {
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
  text-align: center;
  border: 1px solid #bcae9e;
  border-radius: 4px;
  background-color: #222;
  color: white;
}

/* NOSOTROS */

.nosotros-section {
  position: relative; /* Allows positioning of child elements */
  min-height: 95vh; /* Minimum height of the section */
  justify-content: center; /* Center content horizontally */
  align-items: flex-end; /* Align content to the bottom */
  padding: 2rem; /* Add padding */
  overflow: hidden; 
}

.nosotros-section::before {
  content: ""; /* Pseudo-element for the background image */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../imagenes/nosotros.webp'); /* Replace with your image path */
  background-size: cover; /* Ensure the image covers the section */
  background-position: center; /* Center the image */
  background-repeat: no-repeat;
  opacity: 0.5; /* Adjust opacity for the background */
  z-index: -1; /* Place behind the content */
}
.nosotros-section::after {
  content: ""; /* Pseudo-element for the shadow effect */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0 0 0), rgb(0 0 0 / 0%)); /* Shadow gradient */
  z-index: -1; /* Place behind the content, above the background image */
}

.top-center h1 {
  margin-bottom: 0px;
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 7rem;
  font-size: 3rem;
  background:  linear-gradient(90deg, rgba(234,210,197,1) , rgba(235,212,200,1) 57%, rgba(226,194,176,1) 64%);
  -webkit-background-clip: text; /* Clip background to text */
  -webkit-text-fill-color: transparent; /* Make text fill transparent to show gradient */
}

.top-center h3 {
  margin-top:0px;
  text-align: center;
  letter-spacing: 5px;
  font-size: 1.8rem;
  color: white;
}

.top-right {
  position: absolute;
  letter-spacing: 5px;
  text-transform: uppercase;
  top: 2rem;
  left: 2rem;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  background:  linear-gradient(90deg, rgba(234,210,197,1) , rgba(235,212,200,1) 57%, rgba(226,194,176,1) 64%);
  -webkit-background-clip: text; /* Clip background to text */
  -webkit-text-fill-color: transparent; /* Make text fill transparent to show gradient */
  text-align: left; /* Align text to the left */
}

.bottom-right {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  color: white;
  text-align: left; /* Align text to the right */
  max-width: 500px; /* Limit width for readability */
}

.bottom-right h3 {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1.5rem;
  background:  linear-gradient(90deg, rgba(234,210,197,1) , rgba(235,212,200,1) 17%, rgba(226,194,176,1) 14%);
  -webkit-background-clip: text; /* Clip background to text */
  -webkit-text-fill-color: transparent; /* Make text fill transparent to show gradient */
  margin-bottom: 1rem;
  color: #d4a58b; /* Optional accent color */
}

.bottom-right p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* General Styling */
.tab-section {
  padding: 3rem 7rem;
  background-color: #161616;
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Content Sections (Without Tabs) */
.content-section {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #bcae9e;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: #bcae9e;
}

/* Tabs */
.tab-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.tab {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tab:hover {
  background-color: #bcae9e;
  color: #161616;
}

.tab.active {
  color: #bcae9e;
  pointer-events: none; /* Disable clicking on the active tab */
  border-bottom: 1px solid;
}

/* Tab Content */
.tab-content {
  position: relative;
  overflow: hidden;
}

.tab-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 0;
  pointer-events: none; /* Disable interaction for hidden panels */
}

.tab-panel.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
  pointer-events: auto; /* Enable interaction for active panel */
}

.tab-content-row {
  display: grid;
  grid-template-columns: 1fr 2fr; /* Two columns: Image and Description */
  gap: 2rem; /* Space between image and description */
  align-items: center;
  justify-content: center;
  margin: 60px 10px;
  border-bottom: 1px solid #bcae9e;
  padding-bottom: 30px;
}


.tab-description h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #bcae9e; /* Highlight color for title */
}

.tab-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: white;
  text-align: justify;
}

/* Responsive Styles for Tabs */
@media (max-width: 768px) {
  /* Tabs Container */
  .tab-container {
    flex-wrap: wrap; /* Allow tabs to wrap onto new lines */
    gap: 0.5rem; /* Reduce gap between tabs */
  }

  .tab {
    flex: 1 1 100%; /* Make tabs stack vertically */
    text-align: center; /* Center align the text */
    padding: 0.5rem; /* Adjust padding for smaller screens */
    font-size: 0.9rem; /* Reduce font size */
  }

  /* Tab Content Row */
  .tab-content-row {
    display: block; /* Stack image and description vertically */
    text-align: center; /* Center-align text and image */
  }

  .tab-image img {
    max-width: 300px; /* Limit maximum image size */
    margin: 0 auto 1rem; /* Center image and add spacing */
  }

  .tab-description {
    margin-top: 1rem; /* Add spacing above the description */
  }

  .tab-description h3 {
    font-size: 1.2rem; /* Reduce font size */
  }

  .tab-description p {
    font-size: 0.9rem; /* Reduce font size */
  }

  /* Content Section Responsive */
  .section-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
}



/* General Footer Styling */
.custom-footer {
  background-color: #161616;
  padding: 4rem 0;
  font-family: Arial, sans-serif;
  width: 100%;
  margin: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding: 0 2rem;
}
.footer-left h2{
  color:white;
  font-weight: normal;
  margin-bottom:30px;
}
.logos-footer{
  margin-bottom: 30px;
}

.logo-footer-edge{
  width: 180px;
  margin-right:20px;
}

.logo-footer-aislamiento{
  width: 80px;
}


.footer-left h3 {
  background:  linear-gradient(90deg, rgba(234,210,197,1) , rgba(235,212,200,1) 17%, rgba(226,194,176,1) 14%);
  -webkit-background-clip: text; /* Clip background to text */
  -webkit-text-fill-color: transparent; /* Make text fill transparent to show gradient */
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
}

.footer-right {
  color: white;
  text-align: right;
}

.footer-right p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Divider Line */
.footer-divider {
  border: none;
  border-top: 1px solid #d4a58b;
  margin: 2rem 2rem;
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
}

.footer-logo strong {
  color: #d4a58b;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}

.footer-links li a {
  letter-spacing: 5px;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links li a:hover {
  text-decoration: underline;
}

.footer-copyright {
  font-size: 0.8rem;
  margin: 0;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-footer {
    padding: 3rem 0;
  }

  .footer-top,
  .footer-bottom {
    padding: 0 1.5rem;
  }

  .footer-divider {
    margin: 2rem 1.5rem;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-right {
    text-align: center;
    margin-top: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #161616; /* Background color of the loading screen */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.5s ease; /* Smooth fade-out transition */
  visibility: visible;
}

#loading-screen.hidden {
  opacity: 0; /* Fade out */
  visibility: hidden; /* Hide completely after fading out */
}

/* Spinner Animation */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #d4a58b;
  border-top: 5px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Main Content */
.fade-in {
  opacity: 0; /* Start invisible */
  transition: opacity 2s ease; /* Fade-in transition */
}

.fade-in.visible {
  opacity: 1; /* Fully visible */
}

/* Image Carousel Section for Amenities */
.image-carousel-section {
  background-color: #161616;
  padding: 4rem 2rem;
  text-align: center;
  overflow-x: hidden;
}

.image-carousel-section h2 {
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  background: linear-gradient(90deg, rgb(234, 210, 197) 46%, rgb(255, 255, 255) 54%, rgb(235, 212, 200) 57%, rgb(226, 194, 176) 64%) text;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}




.amenities-carousel-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.amenities-carousel-container {
  overflow: hidden;
  width: 100%;
  padding: 0 20px;
  cursor: grab;
  user-select: none;
}

.amenities-carousel-container:active {
  cursor: grabbing;
}

.amenities-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease-in-out;
}

.amenities-slide {
  min-width: calc(33.333% - 14px);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  aspect-ratio: 3 / 4;
}

.amenities-slide > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: filter 0.3s ease;
  display: block;
}

.amenities-slide:hover > img:first-child {
  filter: brightness(0.45);
}

.amenities-slide-logo {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 60%;
  max-width: 280px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.amenities-slide:hover .amenities-slide-logo {
  opacity: 0.85;
}

.amenities-slide-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.4rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.amenities-slide:hover .amenities-slide-label {
  opacity: 1;
}

.desarrollamos{
    text-transform: uppercase;
    color: white;
    font-size: 20px;
}

.mejores{
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(90deg, #C09732 0%, #F7F090 100%);
    padding: 10px;
    border-radius: 20px;
}

/* Pagination Dots */
.amenities-carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.amenities-pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #555;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.amenities-pagination-dot:hover {
  background-color: #888;
  transform: scale(1.2);
}

.amenities-pagination-dot.active {
  background-color: #d4a58b;
  transform: scale(1.3);
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .amenities-slide {
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .image-carousel-section h2 {
    font-size: 1.8rem;
  }

  .image-carousel-section h2::before,
  .image-carousel-section h2::after {
    width: 100px;
  }

  .amenities-slide {
    min-width: calc(50% - 10px);
  }

  /* Always show label and logo on touch devices */
  .amenities-slide .amenities-slide-label {
    opacity: 1;
    font-size: 1rem;
    bottom: 0.8rem;
    left: 0.9rem;
  }

  .amenities-slide .amenities-slide-logo {
    opacity: 0.65;
    bottom: -0.5rem;
    right: -0.5rem;
    width: 55%;
  }

  .amenities-slide > img:first-child {
    filter: brightness(0.75);
  }
}

@media (max-width: 480px) {
  .image-carousel-section h2 {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }

  .amenities-slide {
    min-width: calc(100% - 20px);
  }

  .amenities-slide .amenities-slide-label {
    font-size: 1.1rem;
  }
}

/* Contact Form Section */
.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-title {
  color: #d4c5b0;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.contact-subtitle {
  color: #b8b8b8;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 300;
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 50px 40px;
  border-radius: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  margin-bottom: 25px;
}

.form-group label {
  color: #f5f5f5;
  font-size: 0.95rem;
  margin-bottom: 10px;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 20px;
  border: none;
  border-radius: 30px;
  background-color: #f5f5f5;
  font-family: 'Aeroport', Arial, sans-serif;
  font-size: 0.95rem;
  color: #333;
  transition: all 0.3s ease;
}

.form-group textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b8b8b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(212, 197, 176, 0.3);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 45px;
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.submit-btn {
  background-color: #d4c5b0;
  color: #2d2d2d;
  padding: 15px 50px;
  border: none;
  border-radius: 30px;
  font-family: 'Aeroport', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.submit-btn:hover {
  background-color: #bcae9e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 197, 176, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Contact Form Responsive */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-form {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 15px;
  }
  
  .contact-title {
    font-size: 1.6rem;
  }
  
  .contact-subtitle {
    font-size: 0.9rem;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .submit-btn {
    padding: 12px 40px;
    font-size: 0.9rem;
  }
}

/* Map Section */
.map-section {
  margin-top:50px;
  width: 100%;
  background-color: #1a1a1a;
  padding: 0;
  margin: 0;
}

.map-container {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(20%) contrast(110%);
  transition: filter 0.3s ease;
}

.map-container iframe:hover {
  filter: grayscale(0%) contrast(100%);
}

/* Map Responsive */
@media (max-width: 768px) {
  .map-container {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .map-container {
    height: 300px;
  }
}

/* WhatsApp Sticky Button */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

@media (max-width: 480px) {
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-btn svg {
    width: 27px;
    height: 27px;
  }
}

