body {
  font-family: 'Poppins', sans-serif;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/bg.jpg') center center / cover no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #F9FAFC;
  padding: 3rem 1rem;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #F5B76B;
}

.hero-location {
  color: #F5B76B;
}


.hero-subtitle {
  font-size: 1.3rem;
  color: #C5C5C5;
  margin-bottom: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Botón refinado con borde claro */
.hero-btn {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: 2px solid #F5B76B;
  border-radius: 0;
  color: #F5B76B;
  background-color: transparent;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #F5B76B;
  color: #1a1a1a;
  transform: scale(1.05);
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }

}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-btn {
    width: 100%;
    display: block;
    margin: 0 auto;
  }

}

@media screen and (max-width: 768px) {

  .navbar-brand img {
    height: 32px;
  }
}


                                                            /* FIN ENCABEZADO */

                                                            /* LOGOSEC */
.logosec {
  background: linear-gradient(to bottom, #2b2b2b, #1a1a1a);
  color: #f5f5f5;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.logosec-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #F5B76B;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.logosec-lead {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.logocard {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logocard:hover {
  transform: translateY(-5px);
  box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.4);
}

.logocard-title {
  font-size: 1.3rem;
  color: #F5B76B;
  margin-bottom: 1rem;
}

.logocard p {
  color: #ccc;
  font-size: 0.95rem;
}

.logosec-btn {
  background-color: transparent;
  border: 2px solid #F5B76B;
  color: #F5B76B;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease;
}

.logosec-btn:hover {
  background-color: #F5B76B;
  color: #1a1a1a;
}

/* Responsive */
@media (max-width: 992px) {
  .logosec {
    padding: 60px 20px;
  }

  .logosec-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .logosec-lead {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .logocard {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .logocard-title {
    font-size: 1.2rem;
  }

  .logocard p {
    font-size: 0.9rem;
  }

  .logosec-btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .logosec-title {
    font-size: 1.8rem;
  }

  .logosec-lead {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .logocard-title {
    font-size: 1.1rem;
  }

  .logocard p {
    font-size: 0.85rem;
  }

  .logosec-btn {
    width: 100%;
    display: block;
    margin-top: 1rem;
  }

}

                                                            /* FIN LOGOSEC */

                                                            /* SERVICIOS */
.services {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(images/bg3.jpeg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.services img {
  width: 100px;
}
.services h3 {
  color: #EACCB3;
  font-size: 18px;
}

.services h2 {
  font-size: 55px;
  color: #F5B76B; /* Tono dorado suave pero luminoso */
  text-transform: uppercase;
  margin-bottom: 50px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7); /* Da profundidad */
}

.services p {
  font-size: 17px;
  color: #EFEFEF; /* Muy claro, pero no blanco puro */
  padding: 0 100px;
  margin-bottom: 50px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6); /* Mejora legibilidad */
}


                                                            /* FIN SERVICIOS */

                                                            /* GENERAL */
.gradient-dark {
  background: linear-gradient(to bottom right, #1f2a40, #2c3e50);
  color: #ffffff;
}

.gradient-dark h2 {
  color: #F5B76B;
  letter-spacing: 0.5px;
}

.gradient-dark .lead {
  color: #dddddd;
}

.gradient-dark .btn-outline-light {
  border: 2px solid #F5B76B;
  color: #F5B76B;
}

.gradient-dark .btn-outline-light:hover {
  background-color: #F5B76B;
  color: #1f2a40;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
}

.card:hover {
  transform: translateY(-10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 1.2rem 2rem rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .gradient-dark {
    padding: 1.5rem;
    text-align: center;
  }

  .gradient-dark h2 {
    font-size: 1.5rem;
  }

  .gradient-dark .lead {
    font-size: 1rem;
  }

  .gradient-dark .btn-outline-light {
    display: block;
    width: 100%;
    margin-top: 1rem;
  }

  .card {
    margin-bottom: 1.5rem;
  }
}

                                                            /* FIN GENERAL */

                                                            /* ESTATE */
.realestate-gallery {
  background: linear-gradient(to bottom right, #3a2c27, #5c4438); /* Cobre oscuro + beige */
  color: #ffffff;
}

.realestate-gallery h2 {
  color: #F5B76B;
  letter-spacing: 0.5px;
}

.realestate-gallery .lead {
  color: #e0d6c2;
  font-size: 1.1rem;
}

.property-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15); /* Borde claro para contraste */
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.03);
}

.property-card:hover {
  transform: scale(1.02);
}

.property-image {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.property-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(32, 23, 20, 0.7); /* Overlay adaptado al fondo cálido */
  color: #fff;
  padding: 20px;
  transition: background 0.3s ease;
}

.property-overlay h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.property-overlay p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* Botón beige/dorado emocionalmente cálido */
.custom-btn {
  background-color: #EAD5A4;
  color: #3a2c27;
  font-size: 0.85rem;
  font-weight: bold;
  border: none;
  border-radius: 0;
  padding: 6px 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-btn:hover {
  background-color: #f5b76b;
  color: #2c1d1a;
}

@media (max-width: 768px) {
  .property-image {
    height: 220px;
  }

  .property-overlay {
    padding: 15px;
  }

  .property-overlay h3 {
    font-size: 1rem;
  }

  .property-overlay p {
    font-size: 0.85rem;
  }

  .custom-btn {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .realestate-gallery .lead {
    font-size: 1rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .property-card {
    margin-bottom: 1.5rem;
  }

  .realestate-gallery h2 {
    font-size: 1.25rem;
    text-align: center;
  }

  .property-overlay {
    padding: 12px;
  }

  .custom-btn {
    width: 100%;
    display: block;
    text-align: center;
  }
}


                                                            /* FIN ESTATE */

                                                            /* FOOTER */
.footer {
  background: linear-gradient(135deg, #2b2b2b, #000000); /* Grafito + negro profundo */
  color: #f5f5f5;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4);
}

.footer-title {
  font-size: 1.1rem;
  color: #F5B76B;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-link {
  color: #C5C5C5;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: #F5B76B;
}

.social-icon {
  font-size: 1.5rem;
  color: #C5C5C5;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #F5B76B;
}

@media (max-width: 768px) {
  .footer-title {
    font-size: 1rem;
    text-align: center;
  }

  .footer-link {
    font-size: 0.9rem;
    text-align: center;
  }

  .social-icon {
    font-size: 1.3rem;
  }

  .footer .col-md-3 {
    text-align: center;
  }

  .footer .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 576px) {
  .footer-title {
    font-size: 0.95rem;
  }

  .footer-link {
    font-size: 0.85rem;
  }

  .social-icon {
    font-size: 1.2rem;
    margin: 0 6px;
  }

  .footer img {
    max-width: 80px;
  }

  .footer .row > div {
    margin-bottom: 30px;
  }
}
                                                         /* FIN FOOTER */                                                                                                                    
