/* VARIABLES DE MARCA (AJUSTA SEGÚN TU MANUAL) */
:root {
  --color-primary: #0e3930;
  --color-primary-dark: #011b17;
  --color-secondary: #0e3930;
  --color-accent: #bde21a;
  --color-accent-dark: #bde21a;
  --color-bg-light: #f7f8f2;
  --color-text-main: #1f2e2c;
  --color-text-muted: #5a6b68;
  --shadow-soft: 0 15px 35px rgba(3, 44, 39, 0.12);
  --radius-large: 24px;
  --radius-medium: 16px;
  --radius-small: 12px;
}

/* TIPOGRAFÍAS PROPIAS */
@font-face {
  font-family: "Costa Display VF";
  src: url("../fonts/CostaDisplay-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Costa Display VF";
  src: url("../fonts/CostaDisplay-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Costa Display VF";
  src: url("../fonts/CostaDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* RESET BÁSICO */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Costa Display VF", "Costa Display", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-text-main);
  background-color: white;
  line-height: 1.6;
  font-weight: 400;
}

.posicion1 {
  position: absolute;
  top: 0;
  right: 15px;
  left: 15px;
  bottom: 0;
}

.posicion2 {
  position: absolute;
  right: 13px;
  left: 13px;
  bottom: -15vmax;
}

.padding1 {
  padding-top: 25%;
}

.padding2 {
  padding-left: 5%;
  padding-right: 5%;
}
/* 
img {
  max-width: 100%;
  height: auto;
  display: block;
} */

a {
  text-decoration: none;
}
ul.letra1dws li::marker {
    color: #bde21a;
}
/* p {
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
} */

/* NAVBAR */
.main-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(3, 44, 39, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 25px rgba(3, 44, 39, 0.08);
}

.navbar-logo {
  height: 46px;
}

.navbar-logo2 {
  height: 70px;
}

.brand-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.navbar-nav .nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  padding-inline: 0.9rem;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--color-primary);
}

/* Botón CTA */
.btn-cta {
  background-color: #b4dc1c;
  color: #031710;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  text-transform: uppercase;
  font-size: 1.1vmax;
  box-shadow: 0 8px 20px rgba(217, 255, 58, 0.3);
}

.btn-cta:hover {
  background-color: var(--color-accent-dark);
  color: #031710;
}
.btn-cta2 {
  background-color: #b4dc1c;
  color: #031710;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  text-transform: uppercase;
  font-size: 1.3vmax;
  box-shadow: 0 8px 20px rgba(217, 255, 58, 0.3);
}

.btn-cta:hover {
  background-color: var(--color-accent-dark);
  color: #031710;
}

.btn-secondary-cta {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-radius: 999px;
  font-weight: 700;
  padding: 0.6rem 1.75rem;
  border: 2px solid var(--color-accent);
  text-transform: uppercase;
  font-size: 1.4vmax;
}

.btn-secondary-cta1 {
  background-color: var(--color-secondary);
  color: white;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.6rem 1.75rem;
  border: 2px solid var(--color-secondary);
  text-transform: uppercase;
  font-size: 1.4vmax;
}

.btn-secondary-cta:hover {
  background-color: var(--color-accent);
  color: #000;
}

/* HERO */
/* .hero-section {
  position: relative;
  
  background-image: url("../img/CANCHA_BANNER.png");
  background-size: cover;
  background-position: center;
} */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(1, 24, 18, 0.85), rgba(3, 44, 39, 0.25), rgba(0, 0, 0, 0.45));
}

.hero-form-card {
  background-color: var(--color-primary);
  /* padding: 2.5rem 2rem;
  position: relative; */
}

.hero-form-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
}

.hero-form-logo {
  height: 42px;
}

.hero-form-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.hero-form-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-pill {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color-accent);
}

.hero-form-heading {
  font-size: 1.7rem;
  font-weight: 500;
  margin-top: 1rem;
}

.hero-form-text {
  font-size: 0.9rem;
}

.hero-form .form-label {
  font-size: 0.85rem;
  font-weight: 500;
}

/* .hero-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.55);
} */

/* .hero-form .form-select {
  color: rgba(255, 255, 255, 0.75);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23ffffff' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
} */

/* SECCIONES GENERALES */
.section-padding {
  padding-top: 5%;
}

.section-title {
  font-size: 3.1rem;
  font-weight: 400;
  color: var(--color-primary);
}

.section-title .highlight {
  color: var(--color-accent-dark);
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

.section-divider {
  width: 15vmax;
  height: 4px;
  background-color: #048474;
  border-radius: 999px;
  margin-top: 1rem;
  opacity: 0.9;
}
.imagenCarrusel {
    width: 100%;
}
.section-divider2 {
  width: 15vmax;
  height: 4px;
  background-color: #b4dc1c;
  border-radius: 999px;
  margin-top: 1rem;
  opacity: 0.9;
}

.section-divider3 {
  width: 10vmax;
  height: 4px;
  background-color: #b4dc1c;
  border-radius: 999px;
  margin-top: 5px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.section-divider4 {
  width: 10vmax;
  height: 4px;
  background-color: #048474;
  border-radius: 999px;
  margin-top: 5px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.letra1 {
  font-size: 1vmax;
}
.letra1s {
  font-size: 1.4vmax;
}
.letra2 {
  font-size: 4vmax;
}
.letra3{
    font-size: 1.9vmax;
}
.bg-light {
  background-color: white !important;
}

/* SOBRE EL DESARROLLO */
.desarrollo-image-wrapper img {
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.desarrollo-text-box {
  padding: 2rem;
  color: #ffffff;
}

.desarrollo-heading {
  font-size: 3.6vmax;
  font-weight: 400;
  color: #ffffff;
}

.desarrollo-text-box p {
  color: rgba(255, 255, 255, 0.85);
}

/* LOTES */
.lote-card {
  border-radius: var(--radius-large);
  border: none;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(4, 33, 37, 0.12);
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lote-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(4, 33, 37, 0.18);
}

.lote-image-wrapper img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  padding: 3%;
}

.lote-card .card-body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.lote-card .card-title {
  font-weight: 500;
  font-size: 1.8rem;
}

.lote-medida {
  font-weight: 600;
  font-size: 1.3vmax;
  color: var(--color-primary);
}

.lote-precio {
  font-weight: 600;
  font-size: 1.3vmax;
}

.promo-financiamiento {
  color: #ffffff;
  padding-top: 20%;
  width: 100%;
  margin: 0 auto;
  font-size: 3vmax;
}

.promo-financiamiento p {
  color: #ffffff;
  font-weight: 400;
}

/* AMENIDADES */
.amenidad-card-wrapper {
  border-radius: var(--radius-large);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

#amenidades {
  padding-top: 15%;
}

.amenidad-card {
  position: relative;
}

.amenidad-image {
  width: 100%;
  border-radius: var(--radius-large);
}

.amenidad-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.amenidad-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #ffffff;
}

.amenidad-title {
  font-size: 3vmax;
  font-weight: 500;
}

.amenidad-text {
  font-weight: 300;
  font-size: 1.3vmax;
}

.amenidad-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  color: #000000;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  opacity: 0.9;
}

.amenidad-arrow.prev {
  left: 10px;
}

.amenidad-arrow.next {
  right: 10px;
}

/* UBICACIÓN */
.ubicacion-section {
  background-color: var(--color-primary);
  color: #ffffff;
  margin-inline: auto;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.ubicacion-text {
  max-width: 680px;
  margin-inline: auto;
  font-size: 0.95rem;
}

.map-wrapper img {
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

/* POR QUÉ INVERTIR */
.beneficio-card {
  background-color: #ffffff;
  border-radius: var(--radius-large);
  padding: 2rem 1.6rem;
  text-align: center;
  border: none;
  box-shadow: 0 12px 30px rgba(3, 44, 39, 0.08);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.beneficio-icon {
  background-color: var(--color-bg-light);
  border-radius: 18px;
  padding: 0.75rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.beneficio-title {
  font-size: 1.4vmax;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.beneficio-text {
  font-size: 1.2vmax;
}

/* CONTACTO */
.contact-info-card {
  background-color: var(--color-primary);
  border-radius: var(--radius-large);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
}

/* .contact-info-card p {
  color: #ffffff;
} */

.contact-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: white;
}

.contact-form-card {
  border-radius: var(--radius-large);
  background-color: #ffffff;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 40px rgba(3, 44, 39, 0.08);
  border: 1px solid #ebeded;
  color: var(--color-text-main);
}

/* .contact-form-card .hero-form-heading {
  color: var(--color-primary);
}

.contact-form-card .hero-form-text {
  color: var(--color-text-muted);
} */

.contact-form-card .hero-form-header {
  border-color: #eceff1;
}

.contact-form-card .hero-form-logo {
  height: 40px;
}

.contact-form-card .form-label {
  color: var(--color-text-main);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  background-color: #f8f9fb;
  border: 1px solid #e2e6e6;
  color: var(--color-text-main);
  border-radius: 16px;
  padding: 0.75rem 1rem;
}

.contact-form-card .form-control::placeholder {
  color: var(--color-text-muted);
}

.contact-form-card .form-select {
  background-image: none;
}

/* FOOTER INFERIOR */
.footer-bottom {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 1rem 0;
  margin-top: 3rem;
}

.footer-text {
  font-size: 0.8rem;
}

.footer-logo {
  height: 32px;
}

/* Botón completo */
.custom-arrow {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1 !important;
}

/* Quitar background default */
.custom-arrow:focus,
.custom-arrow:hover {
  box-shadow: none;
}

/* El círculo + flecha */
.custom-arrow-icon {
  background: white;
  color: #555;
  font-size: 40px;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flecha1 {
  left: -2vmax
}

.flecha2 {
  right: -2vmax
}
.logoAdmin1 {
    width: 45%
}

.logoAdmin2 {
    width: 7%
}
.logoPer{
	width: 10%
}
.logoPer2{
	width: 40px
}
.logoPer3{
    width: 5%;
}
.logo1{
	width: 13em
}
.bottom1{
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0
}
.texto1Admin{
	color: black;
	text-decoration:none;
	font-size: 15px;
}
.logoFoot{
  width: 6%;
  padding-bottom: 1%
}
/* RESPONSIVE */
@media (max-width: 991.98px) {
  .letra1s {
  font-size: 1vmax;
}
.beneficio-text {
    font-size: 1vmax;
  }
  /* .hero-section {
    padding-top: 6rem;
  } */
  /* .hero-section {
    position: relative;
    
    background-image: url("../img/CANCHA_BANNER.png");
    background-size: cover;
    background-position: center;
  } */
  /* .hero-form-card {
    margin-top: 2rem;
  } */

  .section-title {
    font-size: 1.7rem;
  }

  .beneficio-card {
    min-height: auto;
  }
  .desarrollo-heading{
    font-size: 2.5vmax;
  }
  .oculto {
        display: flex !important;
    }
    .completo1 {
        position: fixed;
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9999;
        background: white;
        padding: 1rem;
    }
}

@media (max-width: 575.98px) {
  .banner-container {
    width: 100%;
    height: 350px; /* Ajusta la altura que quieras en responsive */
    overflow: hidden;
    border-radius: 1rem; /* para respetar el rounded-4 de Bootstrap */
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* clave para que NO se aplaste */
    object-position: center;
    border-radius: inherit;
}
  .oculto {
        display: flex !important;
    }
    .completo1 {
        position: fixed;
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9999;
        background: white;
        padding: 1rem;
    }
  .logoFoot{
    width: 12%;
    padding-bottom: 3%;
  }
  /* .section-padding {
    padding: 3rem 0;
  } */

  .section-title {
    font-size: 1.5rem;
  }

  /* .hero-form-card {
    padding: 1.5rem 1.25rem;
  } */

  .amenidad-image {
    width: 100%;
  }

  .promo-financiamiento {
    border-radius: var(--radius-medium);
    padding-top: 10%;
  }

  .contact-info-card,
  .contact-form-card {
    border-radius: var(--radius-medium);
    padding: 1.8rem 1.4rem;
  }

  /* .hero-form-card {
    padding: 1.8rem 1.4rem;
  } */

  .navbar-nav .nav-link {
    padding-inline: 0.5rem;
  }

  .posicion2 {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
  }

  .flecha1 {
    left: 0;
  }

  .flecha2 {
    right: 0;
  }

  /* Botón completo */
  .custom-arrow {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1 !important;
  }

  /* Quitar background default */
  .custom-arrow:focus,
  .custom-arrow:hover {
    box-shadow: none;
  }

  /* El círculo + flecha */
  .custom-arrow-icon {
    background: white;
    color: #555;
    font-size: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .padding9 {
    padding-top: 5%;
    padding-bottom: 5%;
  }
  .letra1 {
    font-size: 1.7vmax;
  }
  .letra1s {
    font-size: 1.7vmax;
  }
  .amenidad-text {
    font-size: 1.7vmax;
  }
  .beneficio-title {
    font-size: 1.9vmax;
  }
  .beneficio-text {
    font-size: 1.7vmax;
  }
  .lote-medida {
    font-size: 2vmax;
  }
  .lote-precio {
    font-size: 2vmax;
  }
}
@media all and (min-width: 1024px) and (max-width: 1100px) { 
  .navbar-light .navbar-nav .nav-link{
    font-size: 8px;
  }
}