body {
  font-family: 'Be Vietnam Pro', sans-serif;
  padding-top: 80px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  color: #FF8A00;
}

.section-title {
  margin-bottom: 30px;
}

.hero {
  position: relative;
  text-align: center;
  color: white;
}

.hero-text {
  position: absolute;
  top: 34%;
  left: 33%;
  transform: translate(-30%, -30%);
}

.cta {
  background-color: #FF8A00;
  color: white;
}

footer {
  background: #111;
  color: #ECECEC;
  padding: 30px 0;
}

/* Estilos personalizados para el navbar */
.navbar {
  background-color: #000 !important;
  padding: 40px 0px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 8px 20px !important;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #FF8A00 !important;
}

/* Botón hamburguesa - SIEMPRE VISIBLE */
.navbar-toggler {
  border: 0px;
  padding: 5px 8px;
  background-color: transparent;
  display: block !important; /* Forzar que siempre se muestre */
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 138, 0, 0.25);
  outline: none;
}

.navbar-toggler-icon {
  width: 45px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 25'%3e%3cline x1='0' y1='2' x2='30' y2='2' stroke='%23FF8A00' stroke-width='3' stroke-linecap='round'/%3e%3cline x1='0' y1='12.5' x2='30' y2='12.5' stroke='%23FF8A00' stroke-width='3' stroke-linecap='round'/%3e%3cline x1='0' y1='23' x2='30' y2='23' stroke='%23FF8A00' stroke-width='3' stroke-linecap='round'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Vista Desktop */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important; /* Menú siempre visible en desktop */
  }
}

/* Vista Móvil */
@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }

  .navbar-collapse.show {
    display: block;
  }

  .navbar-nav {
    padding: 10px 0;
  }

  .navbar-nav .nav-link {
    padding: 12px 20px !important;
    margin: 5px 0;
    border-bottom: 1px solid #222;
  }
}

/* Hero Section - Fondo Negro */
.hero-section {
  background-color: #000;
	min-height: 92vh;
	display: flex;
	align-items: center;
}

.hero-content {
  width: 100%;
}

.hero-image {
  padding-top: 21%;
}
.hero-title {
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 400;
}

.text-orange {
  color: #FF8A00;
}

.text-white {
  color: #fff;
}

.hero-subtitle {
  color: #fff;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 25px;
  font-weight: 100;
  line-height: 1.6;
  margin-bottom: 0px;
}

.btn-cta:hover {
  background-color: #ff8a00;
  color: #000;
  transform: translateX(5px);
}

.hero-image {
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(255, 138, 0, 0.2);
}

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

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

  .hero-section {
    padding: 80px 0px 0px;
    min-height: 88vh;
    margin-top: -10px;
  }

  .hero-image {
    margin-top: 32vh;
  }

  .beneficio-item {
    padding: 10px 0px !important;
    margin-bottom: 0px !important;
  }

  .beneficio-icon {
    margin-bottom: 0px !important;
  }

  .beneficios-grid {
    margin-top: 0px !important;
  }

  .beneficios-subtitle {
    margin-bottom: 10px !important;
  }

  .footer-section {
    height: auto !important;
  }
}

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

  .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 15px 25px;
  }

  .navbar {
    padding: 10px 0px 20px;
  }

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

.btn-text {
  padding: 15px 0px 0px 25px;
  line-height: 1.4;
  text-align: right;
  display: flex;
  align-items: center;
  font-weight: 200;
}

.btn-arrow {
  color: transparent;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-cta {
  background-color: transparent;
  color: #fff;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 100;
  padding: 0;
  font-size: 22px;
  border: 0px;
  border-radius: 0;
  text-transform: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: flex-start;
  text-decoration: none;
  overflow: hidden;
  float: inline-end;
  gap: 10px;
}

.btn-cta:hover {
  color: #fff !important;
  transform: translateX(5px);
}

.btn-cta:hover .btn-text {
  color: #fff !important;
}



/* Responsive */
@media (max-width: 767px) {
  .btn-cta {
    width: 100%;
  }

  .btn-text {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* Sección Beneficios */
.beneficios-section {
  padding: 80px 0;
  text-align: center;
}

.beneficios-title {
  font-family: 'Be Vietnam Pro', sans-serif;
  text-transform: none;
  color: #FF8A00;
  font-size: 57px;
  line-height: 1.3;
  margin-bottom: 30px;
  font-weight: 400;
}

.beneficios-subtitle {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: #333;
  font-size: 29px;
  line-height: 1.8;
  margin-bottom: 50px;
  font-weight: 200;
}

.beneficios-grid {
  margin-top: 60px;
}

.beneficio-item {
  padding: 30px 20px;
  margin-bottom: 30px;
}

.beneficio-icon {
  margin-bottom: 25px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(89%) saturate(2477%) hue-rotate(1deg) brightness(102%) contrast(104%);
}

.beneficio-title {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: #999;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 20px;
  text-transform: none;
}

/* Botón Descubre (mismo estilo que btn-cta pero sin borde y fondo transparente) */

.btn-descubre .btn-text {
  padding: 15px 25px;
  line-height: 1.4;
  text-align: right;
  display: flex;
  align-items: center;
  color: #000;
}

/* Responsive */
@media (max-width: 991px) {
  .beneficios-title {
    font-size: 2rem;
  }

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

  .beneficio-icon {
    height: 60px;
  }

  .beneficio-title {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .beneficios-title {
    font-size: 1.6rem;
  }

  .beneficios-subtitle br {
    display: none;
  }

  .text-end {
    text-align: center !important;
  }

  .btn-descubre {
    width: 60%;
  }

  .btn-descubre .btn-text {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .btn-descubre .btn-arrow {
    min-width: 60px;
    padding: 12px 15px;
  }

  .espacios-overlay {
    transform: translateY(-60px) !important;
  }

  .proyecto-section {
    padding: 20px 0 0 !important;
  }

  .beneficios-section {
    padding: 20px 0 80px !important;
  }

  .bodegas-details {
    transform: translateX(-40px) !important;
  }

  .bodegas-section {
    padding: 20px 0 0 !important;
  }
}


/* Sección Proyecto */
.proyecto-section {
  padding: 80px 0 0;
}

.proyecto-title {
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 400;
}

.proyecto-title-orange {
  color: #FF8A00;
  display: block;
}

.proyecto-title-gray {
  color: #808080;
	display: block;
	font-size: 40px;
}

.proyecto-divider {
  width: 100%;
	max-width: 500px;
	height: 2px;
	background-color: #ffcd8f;
	margin-top: 30px;
}

.proyecto-content {
  padding-left: 40px;
}

.proyecto-text {
  font-family: 'Be Vietnam Pro', sans-serif;
	color: #333;
	font-size: 29px;
	margin-bottom: 30px;
	font-weight: 300;
	text-align: left;
}

/* Responsive */
@media (max-width: 991px) {
  .proyecto-title {
    font-size: 2rem;
  }

  .proyecto-title-gray {
    font-size: 1.8rem;
  }

  .proyecto-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .proyecto-text {
    font-size: 1.1rem;
  }

  .proyecto-divider {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .proyecto-title {
    font-size: 1.6rem;
  }

  .proyecto-title-gray {
    font-size: 1.5rem;
  }

  .proyecto-text {
    font-size: 1rem;
  }
}

/* Sección Espacios */
.espacios-section {
  position: relative;
  background-image: url('../assets/assets_bann2.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  min-height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#espacios {
    position: relative;

}

#espacios::after {
  content: "";
	position: absolute;
	top: 15%;
	left: 0;
	width: 100%;
	height: 85%;
	background-color: #ececec;
	z-index: -1;
}

.espacios-overlay {
  position: relative;
  transform: translateY(-132px);
  width: 100%;
  text-align: center;
}

.espacios-content {
  position: relative;
  z-index: 2;
}

.espacios-title {
  font-family: 'Be Vietnam Pro', sans-serif;
	text-transform: none;
	color: #000;
	font-size: 52px;
	line-height: 1.3;
	font-weight: 400;
	margin-bottom: 17px;
	text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.espacios-divider {
  width: 250px;
  height: 4px;
  background-color: #FF8A00;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 991px) {
  .espacios-section {
    min-height: 500px;
  }

  .espacios-title {
    font-size: 2.2rem;
  }

  .espacios-divider {
    width: 200px;
  }
}

@media (max-width: 767px) {
  .espacios-section {
    min-height: 400px;
  }

  .espacios-title {
    font-size: 1.8rem;
  }

  .espacios-divider {
    width: 150px;
    height: 3px;
  }

  .espacios-overlay {
    padding: 60px 0;
  }
}


/* Sección Bodegas */
.bodegas-section {
  background-color: #fff;
  padding: 80px 0 0;
}

.bodegas-col {
  padding: 20px;
}

.bodegas-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.bodegas-number {
  font-family: 'Fjalla One', sans-serif;
  font-size: 106px;
  line-height: 1;
  font-weight: 400;
}

.bodegas-number.blue {
  color: #3f76f5;
}

.bodegas-number.orange {
  color: #FF8A00;
}

.bodegas-info {
  flex: 1;
}

.bodegas-title {
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  font-size: 47px;
  line-height: 1.1;
  font-weight: 400;
  text-align: left; /* Mantener título a la izquierda */
}

.bodegas-title.blue {
  color: #4A90E2;
}

.bodegas-title.orange {
  color: #FF8A00;
}

.bodegas-details {
  margin-top: 20px;
  text-align: center; /* Centrar solo los detalles */
  transform: translateX(-160px);
}

.bodegas-size {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 2.5rem;
  font-weight: 200;
  color: #000;
  margin-bottom: 5px;
  line-height: 1.2;
}

.bodegas-construction {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 2.5rem;
  font-weight: 200;
  color: #000;
  margin: 15px 0 5px 0;
  line-height: 1.2;
}

.bodegas-desc {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 200;
}

sup {
  font-size: 1.2rem;
  vertical-align: super;
}

/* Responsive */
@media (max-width: 991px) {
  .bodegas-number {
    font-size: 7rem;
  }

  .bodegas-title {
    font-size: 2rem;
  }

  .bodegas-size,
  .bodegas-construction {
    font-size: 2rem;
  }

  .bodegas-col {
    margin-bottom: 0px;
  }
}

@media (max-width: 767px) {
  .bodegas-number {
    font-size: 5rem;
  }

  .bodegas-title {
    font-size: 1.6rem;
  }

  .bodegas-size,
  .bodegas-construction {
    font-size: 1.6rem;
  }

  .bodegas-desc {
    font-size: 0.85rem;
  }

  .bodegas-card {
    gap: 20px;
  }
}


/* Sección Locales Comerciales */
.locales-section {
  background-color: #ececec;
  text-align: center;
}

.locales-main-title {
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  color: #FF0000;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 400;
}

.locales-col {
  padding: 0px 20px;
}

.locales-item {
  text-align: center;
}

.locales-size {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 45px;
  font-weight: 200;
  color: #000;
  margin-bottom: 0px;
  line-height: 1.2;
}

.locales-desc {
  font-family: 'Be Vietnam Pro', sans-serif;
	font-size: 20px;
	color: #333;
	line-height: 1.6;
	font-weight: 300;
	text-transform: uppercase;
}

/* Botón PDF */
.btn-pdf {
  color: #333;
}

/* Responsive */
@media (max-width: 991px) {
  .locales-main-title {
    font-size: 2.5rem;
  }

  .locales-size {
    font-size: 2.2rem;
  }

  .locales-desc {
    font-size: 1rem;
  }

  .locales-col {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .locales-main-title {
    font-size: 2rem;
  }

  .locales-size {
    font-size: 1.8rem;
  }

  .locales-desc {
    font-size: 0.9rem;
  }

  .locales-desc br {
    display: none;
  }

  .text-end {
    text-align: center !important;
  }

  .btn-pdf {
    width: 75%;
		text-align: right;
  }

  .btn-pdf .btn-text {
    flex: 1;
		text-align: right;
		padding: 0px 20px 12px 0px;
		font-size: 0.9rem;
  }

  .btn-pdf .btn-arrow {
    min-width: 60px;
    padding: 12px 15px;
  }

  .invierte-features {
    margin-top: 0px !important;
  }

  .contacto-section {
    margin-top: 0px !important;
  }
}

/* Sección Invierte */
.invierte-section {
  position: relative;
  background-color: #FF8A00;
  padding: 10px 0 0;
  overflow: hidden;
}

/* Corte diagonal superior */
.invierte-shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background-color: #ececec;
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
  z-index: 1;
}

.invierte-shape-down {
	position: absolute;
	left: 0;
	width: 100%;
	height: 110px;
	background-color: #ffffff;
	clip-path: polygon(100% 0%, 100% 100%, 100% 101%, -1% 101%);
	transform: translateY(-110px);
}

.invierte-section .container-fluid {
  position: relative;
  z-index: 2;
}

.invierte-image {
  width: 100%;
  height: 100%;
}

.invierte-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 20;
  transform: translateY(-45px);
}

.invierte-content {
  padding: 44% 60px 0;
  color: #fff;
}

.invierte-title {
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 42px;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 400;
}

.invierte-text {
  font-family: 'Be Vietnam Pro', sans-serif;
	color: #fff;
	font-size: 27px;
	line-height: 1.5;
	margin-bottom: 50px;
	font-weight: 200;
}

.invierte-features {
  margin-top: 80px;
}

.invierte-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-icon {
  flex-shrink: 0;
}

.feature-icon img {
  filter: brightness(0) invert(1);
}

.feature-text p {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: #fff;
  font-size: 26px;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 991px) {
  .invierte-section {
    padding: 80px 0 60px;
    margin-top: -60px;
  }

  .invierte-shape-top {
    height: 80px;
  }

  .invierte-title {
    font-size: 2.5rem;
  }

  .invierte-text {
    font-size: 1.1rem;
  }

  .invierte-content {
    padding: 40px 30px;
  }

  .feature-text p {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .invierte-section {
    padding: 60px 0 0px;
    margin-top: 0px;
  }

  .invierte-shape-top {
    height: 60px;
    margin-top: -1px;
  }

  .invierte-title {
    font-size: 2rem;
  }

  .invierte-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .invierte-content {
    padding: 0px 20px 30px;
  }

  .invierte-image {
    height: 100%;
		width: 80%;
		text-align: center;
  }

  .feature-icon img {
    height: 50px;
  }

  .feature-text p {
    font-size: 0.95rem;
  }

  .invierte-image img {
    transform: translate(15%, -54px) !important;
  }

  .invierte-shape-down {
    clip-path: polygon(100% 0%, 100% 100%, 100% 101%, 0 29%) !important;
    transform: translateY(-32px) !important;
  }

  .planos-section {
    background-position: 0px 250px !important;
    height: 93vh !important;
  }
}


/* Sección Planos */
.planos-section {
  position: relative;
  background-image: url('../assets/assets_bann7.png');
  background-size: contain;
  background-position: 0px 450px;
  background-repeat: no-repeat;
  padding: 80px 0 100px;
  overflow: hidden;
  height: 211vh;
}

/* Overlay para mejorar legibilidad */
.planos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.planos-section .container {
  position: relative;
  z-index: 2;
}

.planos-header {
  text-align: center;
  margin-bottom: 50px;
}

.planos-title {
  font-family: 'Be Vietnam Pro', sans-serif;
	color: #000;
	font-size: 54px;
	line-height: 1.4;
	font-weight: 400;
	text-transform: none;
}

.planos-divider {
  width: 270px;
	height: 3px;
	background-color: #FF8A00;
	margin: 0 auto;
}

.planos-image-container {
  text-align: center;
  margin-top: 40px;
}

.planos-image {
  max-width: 78%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

/* Responsive */
@media (max-width: 991px) {
  .planos-section {
    padding: 60px 0 80px;
  }

  .planos-title {
    font-size: 2rem;
  }

  .planos-divider {
    width: 120px;
  }
}

@media (max-width: 767px) {
  .planos-section {
    padding: 50px 0 60px;
  }

  .planos-title {
    font-size: 1.6rem;
  }

  .planos-divider {
    width: 100px;
    height: 2px;
  }

  .planos-header {
    margin-bottom: 30px;
  }
}


/* Sección Momento de Invertir */
.momento-section {
  padding: 80px 0;
}

.momento-title {
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  color: #FF8A00;
  font-size: 4rem;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 400;
}

.momento-divider {
  width: 100%;
	max-width: 600px;
	height: 2px;
	background-color: #ffc788;
	margin-bottom: 20px;
}

.momento-text {
  font-family: 'Be Vietnam Pro', sans-serif;
	color: #000;
	font-size: 28px;
	line-height: 1.6;
	font-weight: 200;
	margin-bottom: 0;
}

/* Botón Momento */
.btn-momento {
  background-color: #FF8A00;
	color: #fff;
	font-family: 'Be Vietnam Pro', sans-serif;
	font-weight: 300;
	padding: 20px 40px;
	font-size: 23px;
	border: none;
	border-radius: 0;
	text-transform: none;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	width: 100%;
}

.btn-momento:hover {
  background-color: #e67a00;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 138, 0, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
  .momento-title {
    font-size: 3rem;
  }

  .momento-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }

  .momento-divider {
    max-width: 100%;
  }

  .text-end {
    text-align: left !important;
  }
}

@media (max-width: 767px) {
  .momento-section {
    padding: 20px 0 60px;
  }

  .momento-title {
    font-size: 2.2rem;
  }

  .momento-text {
    font-size: 1.1rem;
  }

  .momento-text br {
    display: none;
  }

  .btn-momento {
    width: 100%;
    text-align: center;
    padding: 18px 30px;
    font-size: 1rem;
  }
}

/* Sección Contacto */
.contacto-section {
  background-color: #fff;
  padding: 80px 0;
  margin-top: 80px;
}

.contacto-subtitle {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: #000;
  font-size: 27px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 200;
  line-height: 1.6;
}

.contacto-form {
  max-width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  font-family: 'Be Vietnam Pro', sans-serif;
  background-color: #fff;
  border: 2px solid #c0cae1;
  border-radius: 0;
  padding: 18px 20px;
  font-size: 1.1rem;
  color: #666;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #FF8A00;
  box-shadow: none;
  outline: none;
  background-color: #fff;
}

.form-control::placeholder {
  color: #424242;
  font-weight: 200;
  font-size: 30px;
}

/* Botón Contactar */
.btn-contactar {
  width: 100%;
	background-color: #ececec;
	color: #000;
	font-family: 'Be Vietnam Pro', sans-serif;
	font-weight: 400;
	padding: 24px 40px;
	font-size: 34px;
	border: 2px solid #fdac49;
	border-radius: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	margin-top: 10px;
}

.btn-contactar:hover {
  background-color: #FF8A00;
  color: #fff;
  border-color: #FF8A00;
}

/* Checkbox de privacidad */
.form-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid #d0d0d0;
  border-radius: 0;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #FF8A00;
  border-color: #FF8A00;
}

.form-check-input:focus {
  box-shadow: none;
  border-color: #FF8A00;
}

.form-check-label {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: #666;
  font-size: 1rem;
  margin: 0;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 991px) {
  .contacto-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }

  .form-control {
    font-size: 1rem;
    padding: 16px 18px;
  }

  .btn-contactar {
    font-size: 1.1rem;
    padding: 16px 30px;
  }
}

@media (max-width: 767px) {
  .contacto-section {
    padding: 0px 0px 60px;
  }

  .contacto-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .form-control {
    font-size: 0.95rem;
    padding: 14px 16px;
  }

  .btn-contactar {
    font-size: 1rem;
    padding: 14px 25px;
  }

  .form-check {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-check-label {
    font-size: 0.9rem;
  }

  .form-control::placeholder {
    font-size: 20px;
  }
}

.form-group {
	margin-bottom: 8px !important;
}

/* Footer */
.footer-section {
  background-color: #000;
	color: #fff;
	/*height: 50vh;*/
}

.footer-ubicacion,
.footer-contacto {
  margin-bottom: 20px;
}

.footer-title {
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 29px;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background-color: #FF8A00;
}

.footer-text {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: #fff;
  font-size: 23px;
  margin-bottom: 10px;
  font-weight: 300;
}

.footer-link {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: #fff;
  font-size: 1rem;
  text-decoration: underline;
  font-weight: 300;
  transition: color 0.3s ease;
}

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

.footer-phone {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  font-weight: 300;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-phone:hover {
  color: #FF8A00;
}

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

/* Responsive */
@media (max-width: 991px) {
  .footer-title {
    font-size: 1.2rem;
  }

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

  .footer-phone {
    font-size: 1.2rem;
  }

  .footer-logo {
    max-width: 180px;
  }

  .text-end {
    text-align: left !important;
    /*margin-top: 30px !important;*/
  }
}

@media (max-width: 767px) {
  .footer-section {
    padding: 40px 0;
  }

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

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

  .footer-phone {
    font-size: 1.1rem;
  }

  .footer-logo {
    max-width: 120px;
		padding: 30px 60px 30px 0px;
  }

  .footer-ubicacion,
  .footer-contacto {
    margin-bottom: 30px;
  }
}


.footer-whatsapp {
	width: 40px;
	height: 40px;
}
