@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap');


/*Estilos Slider Ghost*/

.slider-ghost-section {
  width: 100%;
  padding-top: 4rem;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
}

.swiper-ghost {
  width: 100%;
  height: 70vh;
}

.swiper-ghost .swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-ghost .swiper-slide {
  transition: transform 0.6s ease, opacity 0.6s ease, width 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  width: 20%; /* Por defecto las imágenes laterales son 20% */
}

/* Flechas de navegación */
.swiper-ghost .swiper-button-next,
.swiper-ghost .swiper-button-prev {
  width: 2.5rem !important;
  height: 2.5rem !important;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 9999px;
  color: white !important;
  transform: translateY(-50%);
}

.swiper-ghost .swiper-button-prev {
  left: 1rem !important;
}

.swiper-ghost .swiper-button-next {
  right: 1rem !important;
}

.swiper-ghost .swiper-button-next:after,
.swiper-ghost .swiper-button-prev:after {
  font-size: 1rem !important;
}

/* Paginación */
.swiper-ghost .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7) !important;
}

.swiper-ghost .swiper-pagination-bullet-active {
  background: rgb(13 148 136) !important;
}

/* Imagen central más grande */
.swiper-ghost .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  width: 60% !important;
}

/* Imágenes laterales más pequeñas */
.swiper-ghost .swiper-slide-prev,
.swiper-ghost .swiper-slide-next {
  transform: scale(0.85);
  opacity: 0.8;
  width: 20% !important;
}

.swiper-ghost .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
}

/* Responsive: ocultar botones en pantallas pequeñas */
@media (max-width: 768px) {
  .slider-ghost-section {
      padding: 2rem 0;
  }

  .swiper-ghost .swiper-button-next,
  .swiper-ghost .swiper-button-prev {
      display: none !important;
  }
}


/*Estilos del slider Aura*/
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Sección contenedora */
.aura-seccion {
  display: grid;
  grid-template-columns: 64% 36%;
  align-items: start;
  height: auto;
}

/* Slider */
.aura-slider-container {
  position: relative;
  width: 100%;
  height: auto;
}

.aura-swiper {
  width: 100%;
}

.aura-swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Flechas de navegación */
.aura-swiper-button-next,
.aura-swiper-button-prev {
  color: white !important;
  background: rgba(0, 0, 0, 0.5);
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
}

.aura-swiper-button-next:after,
.aura-swiper-button-prev:after {
  font-size: 18px !important;
}

/* Contenedor de información */
.aura-informacion {
  background-color: #004d40;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15%;
  height: auto; /* Ajusta la altura al contenedor del slider */
  min-height: 100%; /* Evita que se reduzca demasiado */
  align-self: stretch; /* Hace que se expanda según el slider */
}


/* Títulos */
.aura-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.aura-subtitulo {
  font-size: 1rem;
  color: #FFA500;
  margin-bottom: 10px;
}

/* Grid para dos columnas */
.aura-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 0px;
}

/* Columnas */
.aura-columna {
  display: flex;
  flex-direction: column;
}

/* Ítems con icono */
.aura-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.aura-icono {
  width: 20px;
  height: auto;
  margin-right: 10px;
}

/* Responsivo */
/* Ajustes responsivos */
@media (max-width: 1024px) {
  .aura-seccion {
    grid-template-columns: 60% 40%;
  }

  .aura-informacion {
    padding: 3%;
  }
}

@media (max-width: 768px) {
  .aura-seccion {
    grid-template-columns: 100%;
  }

  .aura-slider-container {
    height: 50vh; /* Reduce la altura del slider */
  }

  .aura-informacion {
    height: auto; /* Permite que el contenido se ajuste dinámicamente */
    padding: 20px;
  }
}
 

/* General Styles */
body {
  font-family: 'Nunito', sans-serif;
  font-weight: 450; /* Light */
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(20, 83, 45, 0.481);
    backdrop-filter: blur(8px);
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/*Seccion de contenidos*/
.location-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: #ffffff;
}

.location-container {
  display: flex;
  align-items: center; /* Asegura que ambos elementos tengan la misma altura */
  max-width: 1200px;
  width: 100%;
  background: #fff; /* Fondo blanco */
  box-shadow: 0px 0px 20px rgba(0, 0  , 0, 0.1); /* Sombra difuminada */
}

.location-info {
  flex: 0 0 40%;
  padding: 20px;
  color: #000000;
  border-right: 2px solid #eee; /* Línea divisoria entre contenido y mapa */
}

.categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columnas */
  gap: 10px;
  width: 100%;
}

.categories button {
  padding: 10px 15px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  width: 100%;
  font-size: 16px;
  min-height: 50px; /* Hace que todas las cajas sean iguales */
  display: flex;
  align-items: center;
  justify-content: center;
}

.categories .active {
  border-color: #ff6600;
  background: #ff6600;
  color: white;
}

/*whatsapp button*/
.whatsapp-button { /*boton de Deseo mas información*/
  display: block;
  margin-top: 20px;
  padding: 15px;
  background: #ff6600;
  color: white;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
 }
 
 .whatsapp-float:hover {
  transform: scale(1.1);
 }
 
 .whatsapp-float img {
  width: 40px;
  height: 40px;
 }




/*Estilos del formulario*/

/* Contenedor del formulario */
.form-container {
  position: absolute;
  right: 5%;
  top: 50%;
  width: 100%;
  max-width: 420px;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 0px;
  color: white;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  transform: translateY(-50%);/
}

.floating-form {
  display: flex;
  flex-direction: column;
}

.floating-form h2 {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 40px;
  font-size: 1.15rem;
}

.floating-form input, 
.floating-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 2px solid #00ff7f;
  border-radius: 5px;
  background: transparent;
  color: white;
  font-size: 0.92rem;
 
}


.floating-form label {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  gap: 8px; /* Espacio entre el checkbox y el texto */
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 0px;
}

.floating-form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 8px;
  accent-color: #00FF66; /* Color del checkbox */
}

.floating-form button {
  font-family: 'Nunito', sans-serif;
  background: #00FF66;
  color: black;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.floating-form button:hover {
  background: hsla(102, 77%, 55%, 0.835); /* Cambia el color de fondo al pasar el mouse */
  color: white; /* Cambia el color del texto al pasar el mouse */
}


input::placeholder {
  color: white;
  opacity: 0.7;
}
/* Nota */
.note {
  text-align: left;
  font-size: 0.8rem;
  opacity: 0.8;
}
/* Responsivo */
@media (max-width: 768px) {
  .form-container {
      width: 90%;
      right: 50%;
      transform: translate(50%, -50%);
  }
}



/*Fin de estilos del formulario*/

.tour-button {
  display: block;
  margin-top: 20px;
  padding: 15px;
  background: #57abc0;
  color: white;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
}

.map-container {
  flex: 0 0 60%; /* 60% del ancho */
}

.map-container iframe {
  width: 100%; /* Para que el mapa se ajuste */
  border-radius: 0px;
}

/* Responsive para pantallas más pequeñas */
@media (max-width: 768px) {
  .location-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .categories {
      grid-template-columns: 1fr; /* 1 columna en pantallas pequeñas */
  }
}


/* Logo Styles */
.logo {
    max-height: 30px; /* Tamaño del logo */
}

.logo-text {
    color: white;
}

.logo-dot {
    color: #f97316;
    font-weight: bold;
    margin: 0 -1px;
}

/* Hero Section */
/* Evita que el slider afecte otros elementos */
.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Contenedor del slider dentro de la sección */
.hero-slider {
  width: 100%;
  height: 100vh;
  position: relative;
}

/* Fondo de cada slide */
.hero-slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

/* Overlay (oscurecimiento sutil) */
.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
}

/* Contenedor del botón */
.hero-content {
  position: absolute;
  bottom: 50px;
  text-align: center;
}

/* Estilos del botón "Ver Proyecto" */
.hero-section .btn-ver-proyecto {
  display: inline-block;
  background-color: #006B3F; /* Verde corporativo */
  color: white;
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 0px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-section .btn-ver-proyecto:hover {
  background-color: #004d2a; /* Verde más oscuro al pasar el mouse */
}

/* Estilos de los puntos indicadores */
.hero-section .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 5px;
}

.hero-section .carousel-indicators .active {
  background-color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(20, 83, 45, 0.3);
}

.nav-text {
  font-size: 13px; /* Igual que los enlaces del menú */
  font-weight: 200;
  color: white;
  margin-left: 10px; /* Espaciado entre logo y texto */
}
.navbar {
    padding: 1.5rem 0;
    z-index: 10;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 300;
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgba(249, 125, 10, 0.8) !important;
    
}

.hero-content {
    padding: 8rem 0;
    position: relative;
    z-index: 5;
    padding-top: calc(8rem + 80px); /* Add extra padding to account for fixed header */
}

.hero-title {
    color: white;
    font-family: 'Gilda Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
}

/* Mission Section */
.mission-section {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    background-color: white;
}

.mission-title {
    color: #166534;
    font-family: 'Gilda Display', serif;
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

.mission-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 300; /* Light */
  color: #5d6165;
  font-size: 1.5rem;
  line-height: 1.7;
}

/* Project Section */
.project-section {
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.project-welcome {
    color: white;
    font-family: 'Gilda Display', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.project-info {
    margin-bottom: 6rem;
}

.btn-project {
    background-color: #f97316;
    font-family: 'Nunito', sans-serif;
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 0;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
    border: none;
}

.btn-project:hover {
    background-color: #ea580c;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .project-welcome {
        font-size: 2.5rem;
    }
    
    .project-name {
        font-size: 3rem;
    }
    
    .project-type {
        font-size: 1rem;
    }
    
    .project-subtitle {
        font-size: 1.25rem;
    }

    .fixed-header {
        background-color: rgba(20, 83, 45, 1); /* Solid background on mobile */
    }

    .logo {
        font-size: 1.75rem;
    }
}

/* Social Icons */
.social-icons a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
  color: rgba(249, 125, 10, 0.8) !important;
}

:root {
    --primary-green: #006341;
    --primary-orange: #FF6B00;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
  }
  
  .aura-section {
    min-height: 100vh;
    background-color: white;
  }
  
  
  .content-wrapper {
    background-color: var(--primary-green);
    color: white;
    padding: 3rem 2rem;
    height: 100%;
  }
  
  .title-section {
    margin-bottom: 3.5rem !important;
  }
  
  .main-title {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  
  .subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.8rem;
    font-weight: normal;
  }
  
  .features-list {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
  }
  
  .icon-box {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 4px;
    flex-shrink: 0;
  }
  
  .feature-content h3 {
    font-size: 1.2rem;
    margin: 0;
  }
  
  .feature-content p {
    margin: 0;
    opacity: 0.9;
  }
  
  .btn-download {
    background-color: var(--primary-orange);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .btn-download:hover {
    background-color: #ff8533;
    color: white;
  }

  .icono-caracteristica {
    width: 20px;  /* Ajusta según lo necesites */
    height: auto; /* Mantiene la proporción */
    margin-right: 8px; /* Espaciado entre el icono y el texto */
  }

  
  /* Partners Section Styles */
  .partners-section {
    padding: 5rem 0;
    background-color: white;
  }
  
  .partners-title {
    font-family: 'Gilda Display', serif;
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.2;
  }
  
  .partners-subtitle {
    font-family: 'Gilda Display', serif;
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 5rem;
    line-height: 1.2;
  }
  
  .partners-grid {
    max-width: 1200px;
    margin: 0 auto;
    
  }
  
  .partner-item h3 {
    color: #666;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    
  }
  
  .partner-logo {
    margin-bottom: 1rem;
  }
  
  .partner-logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 0.5rem;
  }
  
  .partner-caption {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
  }

  .video-section {
    padding: 2rem 0;
    background-color: #f8f9fa; /* Fondo claro */
    text-align: center;
}

.video-title {
  color: #166534;
  font-family: 'Gilda Display', serif;
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.video-subtitle {
  font-family: 'Nunito', sans-serif;
  font-weight: 300; /* Light */
  color: #5d6165;
  font-size: 1.5rem;
  line-height: 1.7;
}

.video-wrapper {
    padding-top: 1rem;
    position: relative;
    max-width: 70%;
    margin: auto;
}

.video-wrapper iframe {
    width: 100%;
    height: 500px; /* Ajusta la altura según tu necesidad */
    border-radius: 0px; /* Esquinas redondeadas */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para darle profundidad */
}


/*Seccion de Grupo Empresarial*/  
.grupo-empresarial {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.grupo-subtitle {
  color: #1a6633;
  font-size: 18px;
}

.grupo-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.grupo-logo img {
  max-width: 200px;
  height: auto;
}

.grupo-text {
  font-size: 18px;
  font-weight: bold;
}

.grupo-title {
  font-size: 32px;
  color: #1a6633;
  margin: 10px 0;
}

.grupo-description {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 16px;
  color: #444;
}

.empresas-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.empresa {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.empresa img {
  max-width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.empresa-text {
  font-size: 14px;
  color: #555;
}


/*Seccion departamento Aura*/
.aura-section .row {
  display: flex;
  align-items: stretch;
}
.image-placeholder img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}


/*Mision y Vision*/
.mision-vision {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 250px;
}

.mision, .vision {
  flex: 1;
  padding: 100px;
  color: white;
  font-family: 'nunito', sans-serif;
}

.mision {
  background-color: #006837; /* Verde */
  text-align: left;
}

.vision {
  background-color: #5e00a1; /* Morado */
  text-align: left;
}


/* NUESTROS VALORES */
.valores-section {
  text-align: center;
  padding: 100px 0;
}

.titulo-seccion {
  font-family: 'Gilda Display', serif;
  font-size: 2.5rem;
  color: #006B3F; /* Verde corporativo */
  margin-bottom: 40px;
}

.valores-container {
  display: grid;
    grid-template-columns: repeat(4, 1fr); /* Cuatro columnas en pantallas grandes */
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.valor-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.valor-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.valor-icono {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.valor-titulo {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.valor-texto {
  color: #555;
  font-size: 0.95rem;
  flex-grow: 1; /* Permite que el texto ocupe el espacio restante y mantenga las cajas alineadas */
  display: flex;
  align-items: center; /* Centra verticalmente el texto dentro del contenedor */
  text-align: center;
}

/* 📌 RESPONSIVE DESIGN */

/* 3 columnas en tablet */
@media (max-width: 1024px) {
  .valores-container {
      grid-template-columns: repeat(3, 1fr);
  }
}

/* 2 columnas en pantallas medianas */
@media (max-width: 768px) {
  .valores-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* 1 columna en móviles */
@media (max-width: 480px) {
  .valores-container {
      grid-template-columns: 1fr;
  }

  .valor-box {
      padding: 15px;
  }

  .valor-icono {
      width: 50px;
  }

  .valor-titulo {
      font-size: 1.1rem;
  }

  .valor-texto {
      font-size: 0.9rem;
  }
}


/*Fin de Nuestros Valores*/

/* Estilos de la seccion de la venta del departamento*/
.bg-green {
  background-color: #0A5030;
}
.text-orange {
  color: #F7931E;
}
.btn-orange {
  background-color: #F7931E;
  color: white;
  padding: 10px 20px;
  border-radius: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-orange img {
  margin-right: 10px;
}

/*Seccion de los precios de los departamentos*/
/* Colores de fondo */
.bg-orange-strong {
  background-color: #ff8800;
}

.bg-orange-light {
  background-color: #ff970f;
}

.bg-black {
  background-color: #222;
}

/* Textos */
.text-20 {
  font-size: 20px;
  color: white;
  text-align: left;
  margin: 0;
}

.text-35 {
  font-size: 35px;
  font-weight: bold;
  color: white;
  margin: 0;
}

.text-18 {
  font-size: 18px;
  margin: 0;
}

.text-22 {
  font-size: 20px;
  margin: 0;
}

/* Iconos */
.icon-ubicacion {
  width: 20px;
  height: 20px;
}

.icon-tour {
  width: 40px;
  height: 40px;
}



/* Responsivo */
@media (max-width: 768px) {
  .mision-vision {
      flex-direction: column;
  }
}


  /* Services Section Styles */
  .services-section {
    background-color: #f5f5f5;
  }
  
  .service-item {
    text-decoration: none !important; /* Quita el subrayado */
    position: relative;
    height: 400px;
    transition: background-image 0.5s ease-in-out, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
  }
  
  .service-content {
    z-index: 2;
  }
  
  .service-content h2 {
    font-family: nunito, sans-serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
  }

  .services-section .service-item h2 {
    font-size: 28px;
    font-weight: bold;
}

.services-section .service-item:hover {
    transform: scale(1.05); /* Efecto de zoom al pasar el mouse */
}
  
  .architecture {
    background-color: var(--primary-green);
  }
  
  .design {
    background-color: #bbd000;
  }
  
  .industrial {
    background-color: #4B0082;
  }
  
  .real-estate {
    background-color: #003366;
  }

  


/* CAMBIO DE FONDO AL PASAR EL MOUSE */
.architecture:hover {
  background: url("image/proyectos-aura/arquitectura.webp") center/cover no-repeat;
}
.design:hover {
  background: url("image/proyectos-aura/diseno.webp") center/cover no-repeat;
}
.industrial:hover {
  background: url("image/proyectos-aura/proyectos.webp") center/cover no-repeat;
}
.real-estate:hover {
  background: url("image/proyectos-aura/inmobiliario.webp") center/cover no-repeat;
}

  
  /* CTA Section Styles */
  .cta-section {
    background-color: white;
    padding: 5rem 0;
  }
  
  .cta-title {
    font-family: 'gilda Display', serif;
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
  }
  
  .cta-subtitle {
    font-family: 'nunito', sans-serif;  
    color: #666;
    font-size: 1.2rem;
    margin: 2rem 0 3rem;
    line-height: 1.6;
  }
  
  .btn-cta {
    background-color: var(--primary-orange);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .btn-cta:hover {
    background-color: #ff8533;
    color: white;
  }
  
  @media (max-width: 768px) {
    .content-wrapper {
      padding: 2rem 1rem;
    }
  
    .main-title {
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }
  
    .subtitle {
      font-size: 1.5rem;
    }
  
    .feature-item {
      margin-bottom: 1rem;
    }
  
    .icon-box {
      width: 32px;
      height: 32px;
    }
  
    .partners-title,
    .partners-subtitle {
      font-size: 2rem;
    }
  
    .partner-item {
      margin-bottom: 2rem;
    }
  
    .partner-item h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }
  
    .partner-logo img {
      max-width: 150px;
    }
  
    .service-item {
      height: 300px;
    }
  
    .service-content h2 {
      font-size: 2.5rem;
    }
  
    .cta-title {
      font-size: 2.2rem;
    }
  
    .cta-subtitle {
      font-size: 1.1rem;
      margin: 1.5rem 0 2rem;
    }
  
    .btn-cta {
      padding: 0.8rem 2rem;
      font-size: 1.1rem;
    }
  }
  
  /* Footer Styles */
  .footer {
    background-color: var(--primary-green);
    color: white;
    padding: 4rem 0 2rem;
  }
  
  .footer-brand img {
    max-width: 200px;
    margin-bottom: 1rem;
  }
  
  .brand-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .social-links {
    margin-top: 2rem;
  }
  
  .follow-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
  }
  
  .social-icon {
    color: white;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
  }
  
  .social-icon:hover {
    opacity: 0.8;
    color: white;
  }
  
  .footer-title {
    font-family: 'Gilda Display', serif;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .contact-icon {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
  }
  
  .contact-text p {
    font-family: 'Nunito', sans-serif;
    font-weight: 300; /* Light */
    margin: 0;
  }
  
  .contact-detail {
    font-family: 'Nunito', sans-serif;
    font-weight: 300; /* Light */
    opacity: 0.8;
    font-size: 0.9rem;
  }
  
  .footer-links {
    
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.8rem;
  }
  
  .footer-links a {
    font-family: 'Nunito', sans-serif;
    font-weight: 300; /* Light */
    opacity: 0.9;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
  }
  
  .footer-links a:hover {
    color: var(--primary-orange);
    font-weight: bold;
    opacity: 1;
  }
  
  .footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .copyright {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
  }
  
  .company-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
  }
  
  .company-text {
    font-size: 0.8rem;
    opacity: 0.8;
  }
  
  @media (max-width: 991px) {
    .footer {
      padding: 3rem 0 1.5rem;
    }
  
    .footer-title {
      margin-top: 1.5rem;
      margin-bottom: 1rem;
    }
  
    .company-group {
      justify-content: center;
      margin-top: 1rem;
    }
  
    .copyright {
      text-align: center;
    }
  }