@charset "UTF-8";
/*---------------------------------------------"

Version: 1.0.0

===============================================   
STYLE SHEET INDEXING
|
|___ Fonts
|___ Variables
|___ Reset Styles
|___ Responsive
|___ Spacing
|___ Helper Classes
|___ Buttons
|___ Headings
|___ Layout Styles
|___ END STYLE SHEET INDEXING

--------------------------------------------*/
/*-------------------------
    Fonts
-------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*-------------------------
    Variables
-------------------------*/
/* Contenedor general */
.busqueda-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap; /* horizontal en desktop */
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 8px 14px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  max-width: 800px; /* más angosto */
  margin: 30px auto; /* lo baja un poco */
}

/* Campo */
.campo {
  display: flex;
  flex-direction: column;
  min-width: 120px; /* más compacto */
  flex: 1;
}

/* Etiquetas */
.campo label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  margin-bottom: 2px;
  white-space: nowrap;
}

/* Inputs */
.campo input,
.campo select {
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.9rem;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.3s ease;
}

.campo input::placeholder,
.campo select::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.campo input:focus,
.campo select:focus {
  border-color: rgba(255, 255, 255, 0.9);
}

/* Dropdown personalizado */
.dropdown-wrapper {
  position: relative;
  width: 100%;
}

.dropdown-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.dropdown-display:hover {
  background: rgba(255, 255, 255, 0.2);
}

#dropdownText {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Opciones */
.dropdown-options {
  position: absolute;
  top: 105%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  z-index: 200;
}

.dropdown-options.active {
  display: block;
}

.dropdown-option {
  padding: 6px 10px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s ease;
  color: #222;
}

.dropdown-option:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

.dropdown-hidden-select {
  display: none;
}

/* Botón de búsqueda */
.boton-busqueda {
  background: linear-gradient(135deg, #3cb371, #2e8b57);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.boton-busqueda:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 12px rgba(60, 179, 113, 0.45);
}

.boton-busqueda svg {
  stroke: #fff;
  width: 16px;
  height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .busqueda-container {
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    margin: 20px auto;
    max-width: 95%;
  }
  .campo {
    width: 100%;
  }
  .boton-busqueda {
    align-self: flex-end;
  }
}

.boton-busqueda {
  background: #ff385c;
  border: none;
  color: white;
  border-radius: 50%;
  font-size: 18px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.boton-busqueda:hover {
  background: #e03150;
}


.campo {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: #555;
  flex: 1;
}



.campo select,
.campo input {
  border: none;
  outline: none;
  font-size: 14px;
  color: #000;
  background: transparent;
  padding: 4px 0;
  width: 100%;
}

.boton-busqueda {
  background: #868686;
  border: none;
  color: white;
  border-radius: 50%;
  font-size: 18px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.boton-busqueda:hover {
  background: #4b4b4b;
}

.hero-sec {
  position: relative;
  overflow: hidden;
}

.img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Eliminamos la imagen por defecto */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
  transition: background-image 1s ease-in-out;
}

.hero-sec .container {
  position: relative;
  z-index: 2;
}

.img::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3); /* oscurece suavemente */
  pointer-events: none;
}

/*-------------------------
    Responsive
-------------------------*/
/*-------------------------
    Reset Styles
-------------------------*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul.list-style,
ol.list-style {
  padding: 0;
}

ul.list-style li::marker,
ol.list-style li::marker {
  color: #00CFFF;
}

.unstyled {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

section:after {
  content: "";
  display: block;
  clear: both;
}

.form-group {
  position: relative;
}

.input-group {
  position: relative;
  background: transparent;
  box-shadow: none;
  padding: 12px 24px;
  border-radius: 10px;
  background: #FAFAFA;
  border: 0;
}

.form-control {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  position: relative;
  margin-bottom: 0;
  color: #797D86;
}
.form-control:focus {
  outline: 0;
  box-shadow: none;
  background: transparent;
}
.form-control::placeholder {
  color: #797D86;
  opacity: 1;
}

.form-group .form-control {
  background: #FAFAFA;
  padding: clamp(10px, 0.83vw, 22px) clamp(14px, 1.1vw, 30px);
  border-radius: 5px;
  border: 1px solid #0D0D0D;
}

textarea {
  height: 240px;
}

.input-group button {
  background: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 700;
  font-size: 24px;
  color: #2C2D2F;
}

label.error {
  color: #bc0f0f;
  margin-top: 10px;
}

.alert-message {
  display: none;
}

input[type=checkbox] + label {
  display: block;
  margin: 0.2em;
  cursor: pointer;
  padding: 0.2em;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label:before {
  content: "✔";
  border: 0;
  background-color: #D6D8DB;
  border-radius: 0em;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding-left: 2px;
  padding-bottom: 8px;
  margin: 0 8px 5px 0;
  vertical-align: bottom;
  color: transparent;
  transition: 0.2s;
}

input[type=checkbox] + label:active:before {
  transform: scale(0);
}

input[type=checkbox]:checked + label:before {
  background-color: #00CFFF;
  border-color: #00CFFF;
  color: #fff;
}

input[type=checkbox]:disabled + label:before {
  transform: scale(1);
  border-color: #aaa;
}

input[type=checkbox]:checked:disabled + label:before {
  transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}

.page-item:not(:first-child) .page-link {
  margin-left: calc(var(--bs-border-width) * 0);
}

.star-cb-group {
  font-size: 0;
  unicode-bidi: bidi-override;
  direction: rtl;
  margin-bottom: 24px;
}

.star-cb-group * {
  font-size: 1rem;
}

.star-cb-group > input {
  display: none;
}

.star-cb-group label {
  margin: 0;
  height: 34px;
  font-size: 30px;
  margin-top: -5px;
}

.star-cb-group > input + label {
  display: inline-block;
  overflow: hidden;
  text-indent: 9999px;
  width: 1em;
  line-height: 48px;
  white-space: nowrap;
  cursor: pointer;
}

.star-cb-group > input + label:before {
  display: inline-block;
  text-indent: -9999px;
  content: "☆";
  color: #888;
}

.star-cb-group > input:checked ~ label:before,
.star-cb-group > input + label:hover ~ label:before,
.star-cb-group > input + label:hover:before {
  content: "★";
  color: #00CFFF;
  text-shadow: 0 0 1px #333;
}

.star-cb-group > .star-cb-clear + label {
  text-indent: -9999px;
  width: 0.5em;
  margin-left: -0.5em;
}

.star-cb-group > .star-cb-clear + label:before {
  width: 0.5em;
}

.star-cb-group:hover > input + label:before {
  content: "☆";
  color: #888;
  text-shadow: none;
}

.star-cb-group:hover > input + label:hover ~ label:before,
.star-cb-group:hover > input + label:hover:before {
  content: "★";
  color: #00CFFF;
  text-shadow: 0 0 1px #333;
}

/*-------------------------
    Typography
-------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #D6D8DB;
  background: #FAFAFA;
  font-weight: 400;
  background-color: #ffffff;
  height: 100%;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: clamp(14px, 0.833vw, 22px);
  line-height: 140%;
}
@media (max-width: 1199px) {
  body {
    font-size: clamp(14px, 1.563vw, 18px);
  }
}
@media (max-width: 991px) {
  body {
    font-size: clamp(13.5px, 1.778vw, 16px);
  }
}
@media (max-width: 767px) {
  body {
    font-size: clamp(13px, 2.286vw, 14px);
  }
}
@media (max-width: 575px) {
  body {
    font-size: clamp(11px, 3.59vw, 14px);
  }
}
body.dark {
  background: #1B1C1E;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
address,
p,
pre,
blockquote,
table,
hr {
  margin: 0 0 20px 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 750;
  color: #1B1C1E;
}

p {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 16px 0;
  line-height: 150%;
  letter-spacing: 0.03em;
}

a {
  display: inline-block;
  text-decoration: none;
  color: unset;
  transition: all 0.5s ease-in-out;
}
a:hover {
  color: #00CFFF;
  transition: all 0.5s ease-in-out;
}

span {
  display: inline-block;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0.03em;
}

b,
strong {
  font-family: "Poppins", sans-serif;
}

@media (max-width: 380px) {
  .social-icon {
    justify-content: center !important;
  }
}

/* ------------------------------------------------------------- *
 * Custom scrollbar style
/* ------------------------------------------------------------- */
.tt-custom-scrollbar {
  overflow-y: auto;
}

/* Works on Firefox */
.tt-custom-scrollbar,
.tt-sliding-sidebar-inner,
.tt-sidebar {
  scrollbar-width: thin;
  scrollbar-color: #555 #2a2a2a;
}

select {
  scrollbar-width: thin;
  scrollbar-color: #666 #2a2a2a;
}

/* Works on Chrome, Edge, and Safari */
.tt-custom-scrollbar::-webkit-scrollbar,
.tt-sliding-sidebar-inner::-webkit-scrollbar,
.tt-sidebar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

select::-webkit-scrollbar {
  width: 10px;
}

.tt-custom-scrollbar::-webkit-scrollbar-track,
.tt-sliding-sidebar-inner::-webkit-scrollbar-track,
.tt-sidebar::-webkit-scrollbar-track,
select::-webkit-scrollbar-track {
  background: #2a2a2a;
}

.tt-custom-scrollbar::-webkit-scrollbar-thumb,
.tt-sliding-sidebar-inner::-webkit-scrollbar-thumb,
.tt-sidebar::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 50px;
}

select::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 50px;
}

/* ------------------------------------------------------------- *
 * Smooth Scrollbar
 * Source: https://github.com/idiotWu/smooth-scrollbar/
/* ------------------------------------------------------------- */
/* Hide default scrollbar */
body:not(.is-mobile).ui-smooth-scroll {
  overflow: hidden;
}

/* Scroll content (added if <body> contain class "ui-smooth-scroll". Disabled on mobile devices!) */
body:not(.is-mobile).ui-smooth-scroll #scroll-container {
  width: auto;
  height: 100vh;
  overflow: auto;
  margin: 0;
}

/* Styling scrollbar */
.scrollbar-track {
  background: transparent !important;
  z-index: 99999 !important;
}

.scrollbar-track:hover {
  /*background: rgba(222, 222, 222, 0.1) !important;*/
}

.scrollbar-thumb {
  background: #DDD !important;
  opacity: 0.75;
  transition: opacity 0.2s ease-in-out;
}

.scrollbar-track:hover .scrollbar-thumb {
  opacity: 0.5;
}

/*-------------------------
    Spacing
-------------------------*/
/*----------------------------------------*/
/*  03. SPACE CSS START
/*----------------------------------------*/
.mb-200 {
  margin-bottom: 250px;
}

.mt-150 {
  margin-top: 150px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-150 {
    margin-top: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-150 {
    margin-top: 90px;
  }
}
@media (max-width: 767px) {
  .mt-150 {
    margin-top: 80px;
  }
}

.mt-100 {
  margin-top: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-100 {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-100 {
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .mt-100 {
    margin-top: 50px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mb-100 {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .mb-100 {
    margin-bottom: 50px;
  }
}

.ms-80 {
  margin-left: 80px;
  margin-right: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ms-80 {
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ms-80 {
    margin-left: 48px;
    margin-right: 48px;
  }
}
@media (max-width: 767px) {
  .ms-80 {
    margin-left: 32px;
    margin-right: 32px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mb-80 {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mb-80 {
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .mb-80 {
    margin-bottom: 32px;
  }
}

.mt-64 {
  margin-top: 64px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-64 {
    margin-top: 48px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-64 {
    margin-top: 42px;
  }
}
@media (max-width: 767px) {
  .mt-64 {
    margin-top: 32px;
  }
}

.mb-64 {
  margin-bottom: 64px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mb-64 {
    margin-bottom: 48px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mb-64 {
    margin-bottom: 42px;
  }
}
@media (max-width: 767px) {
  .mb-64 {
    margin-bottom: 32px;
  }
}

.mb-56 {
  margin-bottom: 56px;
}

.mt-48 {
  margin-top: 48px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-48 {
    margin-top: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-48 {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .mt-48 {
    margin-top: 24px;
  }
}

.mb-48 {
  margin-bottom: 48px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mb-48 {
    margin-bottom: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mb-48 {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .mb-48 {
    margin-bottom: 24px;
  }
}

.mb-40 {
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mb-40 {
    margin-bottom: 33px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mb-40 {
    margin-bottom: 28px;
  }
}
@media (max-width: 767px) {
  .mb-40 {
    margin-bottom: 21px;
  }
}

.mb-32 {
  margin-bottom: 32px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mb-32 {
    margin-bottom: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mb-32 {
    margin-bottom: 22px;
  }
}
@media (max-width: 767px) {
  .mb-32 {
    margin-bottom: 18px;
  }
}

.mb-24 {
  margin-bottom: 24px;
}
@media (max-width: 490px) {
  .mb-24 {
    margin-bottom: 12px;
  }
}

.mb-16 {
  margin-bottom: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mb-16 {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mb-16 {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .mb-16 {
    margin-bottom: 10px;
  }
}

.m-12 {
  margin: 12px 0;
}

.ms-15 {
  margin: 0 15px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-8 {
  margin-bottom: 8px;
}

.space-mar {
  margin-top: -50px;
}

.spacer-mar {
  margin-top: -24px;
}
@media (max-width: 1199px) {
  .spacer-mar {
    margin: 0;
  }
}

.sec-pt {
  padding-top: 235px;
}

.pt-200 {
  padding-top: 280px;
}
@media (max-width: 992px) {
  .pt-200 {
    padding-top: 220px;
  }
}

.ps-170 {
  padding: 170px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ps-170 {
    padding: 140px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ps-170 {
    padding: 120px 0;
  }
}
@media (max-width: 767px) {
  .ps-170 {
    padding: 100px 0;
  }
}

.p-100 {
  padding: clamp(64px, 5.208vw, 200px) 0;
}
@media (max-width: 768px) {
  .p-100 {
    padding: 48px 0;
  }
}
@media (max-width: 490px) {
  .p-100 {
    padding: 32px 0;
  }
}

.pt-100 {
  padding-top: clamp(64px, 5.208vw, 200px);
}
@media (max-width: 768px) {
  .pt-100 {
    padding-top: 48px;
  }
}
@media (max-width: 490px) {
  .pt-100 {
    padding-top: 32px;
  }
}

.pb-100 {
  padding-bottom: clamp(64px, 5.208vw, 200px);
}
@media (max-width: 768px) {
  .pb-100 {
    padding-bottom: 48px;
  }
}
@media (max-width: 490px) {
  .pb-100 {
    padding-bottom: 32px;
  }
}

.mt-78 {
  margin-top: 78px;
}
@media (max-width: 992px) {
  .mt-78 {
    margin-top: 48px;
  }
}
@media (max-width: 767px) {
  .mt-78 {
    margin-top: 38px;
  }
}
@media (max-width: 490px) {
  .mt-78 {
    margin-top: 32px;
  }
}

.pt-62 {
  padding-top: 62px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-62 {
    padding-top: 52px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pt-62 {
    padding-top: 42px;
  }
}
@media (max-width: 767px) {
  .pt-62 {
    padding-top: 32px;
  }
}
@media (max-width: 490px) {
  .pt-62 {
    padding-top: 22px;
  }
}

.pb-62 {
  padding-bottom: 62px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pb-62 {
    padding-bottom: 52px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pb-62 {
    padding-bottom: 42px;
  }
}
@media (max-width: 767px) {
  .pb-62 {
    padding-bottom: 32px;
  }
}
@media (max-width: 490px) {
  .pb-62 {
    padding-bottom: 22px;
  }
}

.p-62 {
  padding: 62px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .p-62 {
    padding: 52px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .p-62 {
    padding: 42px;
  }
}
@media (max-width: 767px) {
  .p-62 {
    padding: 32px;
  }
}
@media (max-width: 490px) {
  .p-62 {
    padding: 22px;
  }
}

.p-55 {
  padding: 55px 0;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.p-50 {
  padding: 50px 0;
}

.pt-48 {
  padding-top: 48px;
}

.p-34 {
  padding: 34px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .p-34 {
    padding: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .p-34 {
    padding: 18px;
  }
}

.p-32 {
  padding: 32px;
}

.pb-24 {
  padding-bottom: 24px;
}

.p-16 {
  padding: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .p-16 {
    padding: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .p-16 {
    padding: 13px;
  }
}
@media (max-width: 767px) {
  .p-16 {
    padding: 10px;
  }
}
@media (max-width: 490px) {
  .p-16 {
    padding: 10px;
  }
}

.p-30 {
  padding: 30px;
}

.pt-32 {
  padding: 30px 0;
}

.p-20 {
  padding: 20px;
}

.ps-20 {
  padding: 0 20px;
}

.ps-18 {
  padding-left: 18px;
  padding-right: 18px;
}

.pt-12 {
  padding: 12px 0;
}

.p-12 {
  padding: 12px;
}

.p-10 {
  padding: 10px;
}

/*-------------------------
    Helper Classes
-------------------------*/
.color-primary {
  color: #00CFFF;
}

.bg-white {
  background-color: #FAFAFA !important;
}

.bg-primary {
  background-color: #00CFFF !important;
}

.color-dark {
  color: #2C2D2F;
}

.bg-dark {
  background-color: #2C2D2F !important;
}

.color-dark-2 {
  color: #1B1C1E;
}

.bg-dark-2 {
  background-color: #1B1C1E;
}

.color-dark-3 {
  color: #0D0D0D;
}

.bg-dark-3 {
  background-color: #0D0D0D;
}

.color-white {
  color: #FAFAFA;
}

.color-gray {
  color: #F0F2F4;
}

.bg-gray {
  background-color: #F0F2F4;
}

.color-gray-2 {
  color: #D6D8DB;
}

.bg-gray-2 {
  background-color: #D6D8DB;
}

.color-gray-3 {
  color: #AFB1B6;
}

.bg-gray-3 {
  background-color: #AFB1B6;
}

.color-gray-4 {
  color: #797D86;
}

.bg-gray-4 {
  background-color: #797D86;
}

.primary-hover:hover {
  color: #1B1C1E;
}

.secondery-hover:hover {
  color: #FAFAFA;
}

.fs-247 {
  font-size: 247px;
}
@media (max-width: 1200px) {
  .fs-247 {
    font-size: 210px;
  }
}
@media (max-width: 900px) {
  .fs-247 {
    font-size: 190px;
  }
}
@media (max-width: 768px) {
  .fs-247 {
    font-size: 160px;
  }
}
@media (max-width: 490px) {
  .fs-247 {
    font-size: 140px;
  }
}
@media (max-width: 380px) {
  .fs-247 {
    font-size: 120px;
  }
}

.fs-205 {
  font-size: 205px;
}
@media (max-width: 1200px) {
  .fs-205 {
    font-size: 188px;
  }
}
@media (max-width: 768px) {
  .fs-205 {
    font-size: 152px;
  }
}
@media (max-width: 490px) {
  .fs-205 {
    font-size: 128px;
  }
}
@media (max-width: 400px) {
  .fs-205 {
    font-size: 88px;
  }
}

.fs-171 {
  font-size: 171px;
}
@media (max-width: 1200px) {
  .fs-171 {
    font-size: 148px;
  }
}
@media (max-width: 992px) {
  .fs-171 {
    font-size: 124px;
  }
}
@media (max-width: 762px) {
  .fs-171 {
    font-size: 98px;
  }
}
@media (max-width: 580px) {
  .fs-171 {
    font-size: 72px;
  }
}
@media (max-width: 490px) {
  .fs-171 {
    font-size: 52px;
  }
}

.fs-143 {
  font-size: 143px;
}
@media (max-width: 1200px) {
  .fs-143 {
    font-size: 128px;
  }
}
@media (max-width: 768px) {
  .fs-143 {
    font-size: 98px;
  }
}
@media (max-width: 768px) {
  .fs-143 {
    font-size: 72px;
  }
}
@media (max-width: 490px) {
  .fs-143 {
    font-size: 48px;
  }
}

.fs-99 {
  font-size: 99px;
}
@media (max-width: 1200px) {
  .fs-99 {
    font-size: 72px;
  }
}
@media (max-width: 992px) {
  .fs-99 {
    font-size: 58px;
  }
}
@media (max-width: 768px) {
  .fs-99 {
    font-size: 49px;
  }
}
@media (max-width: 490px) {
  .fs-99 {
    font-size: 38px;
  }
}

.fs-83 {
  font-size: 83px;
}
@media (max-width: 1200px) {
  .fs-83 {
    font-size: 59px;
  }
}
@media (max-width: 900px) {
  .fs-83 {
    font-size: 49px;
  }
}
@media (max-width: 490px) {
  .fs-83 {
    font-size: 38px;
  }
}

.fs-69 {
  font-size: 69px;
}
@media (max-width: 1200px) {
  .fs-69 {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .fs-69 {
    font-size: 42px;
  }
}
@media (max-width: 490px) {
  .fs-69 {
    font-size: 38px;
  }
}

.fs-57 {
  font-size: 57px;
}
@media (max-width: 1200px) {
  .fs-57 {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .fs-57 {
    font-size: 42px;
  }
}
@media (max-width: 490px) {
  .fs-57 {
    font-size: 38px;
  }
}

.fs-48 {
  font-size: 48px;
}
@media (max-width: 1250px) {
  .fs-48 {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .fs-48 {
    font-size: 38px;
  }
}
@media (max-width: 490px) {
  .fs-48 {
    font-size: 32px;
  }
}

.fs-40 {
  font-size: 40px;
}
@media (max-width: 1200px) {
  .fs-40 {
    font-size: 35px;
  }
}
@media (max-width: 490px) {
  .fs-40 {
    font-size: 25px;
  }
}

.fs-33 {
  font-size: clamp(28px, 1.66vw, 42px);
}
@media (max-width: 992px) {
  .fs-33 {
    font-size: 28px;
  }
}
@media (max-width: 580px) {
  .fs-33 {
    font-size: 21px;
  }
}

.fs-28 {
  font-size: 28px;
}
@media (max-width: 1200px) {
  .fs-28 {
    font-size: 18px;
  }
}

.fs-23 {
  font-size: 23px;
}
@media (max-width: 1200px) {
  .fs-23 {
    font-size: 18px;
  }
}

.fs-19 {
  font-size: clamp(16px, 1vw, 24px);
}
@media (max-width: 1199px) {
  .fs-19 {
    font-size: clamp(16px, 1.563vw, 18px);
  }
}
@media (max-width: 991px) {
  .fs-19 {
    font-size: clamp(14px, 1.778vw, 16px);
  }
}

.fs-16 {
  font-size: clamp(14px, 0.833vw, 22px);
}
@media (max-width: 1199px) {
  .fs-16 {
    font-size: clamp(14px, 1.563vw, 18px);
  }
}
@media (max-width: 991px) {
  .fs-16 {
    font-size: clamp(13.5px, 1.778vw, 16px);
  }
}
@media (max-width: 767px) {
  .fs-16 {
    font-size: clamp(13px, 2.286vw, 14px);
  }
}
@media (max-width: 575px) {
  .fs-16 {
    font-size: clamp(11px, 3.59vw, 14px);
  }
}

.fs-13 {
  font-size: 13px;
}

.fs-11 {
  font-size: 11px;
}

.fw-3 {
  font-weight: 300;
}

.fw-4 {
  font-weight: 400;
}

.fw-5 {
  font-weight: 500;
}

.fw-6 {
  font-weight: 600;
}

.fw-7 {
  font-weight: 700;
}

.lh-100 {
  line-height: 100%;
}

.lh-110 {
  line-height: 110%;
}

.lh-120 {
  line-height: 120%;
}

.lh-130 {
  line-height: 130%;
}

.lh-140 {
  line-height: 140%;
}

.lh-150 {
  line-height: 150%;
}

.lh-160 {
  line-height: 160%;
}

.lh-180 {
  line-height: 180%;
}

.ls-1 {
  letter-spacing: -0.01em;
}

.ls-0 {
  letter-spacing: 0em;
}

.ls-2 {
  letter-spacing: -0.02em;
}

.ls-3 {
  letter-spacing: -0.03em;
}

.ls-4 {
  letter-spacing: -0.04em;
}

.hover-animation {
  transition: all 0.5s ease-in-out;
}
.hover-animation:hover {
  transform: translateY(-10px);
}

.transition {
  transition: all 0.5s ease-in-out;
}

.w-150 {
  width: 150px;
}
@media (max-width: 768px) {
  .w-150 {
    width: 100%;
  }
}

.h-220 {
  height: 220px;
}

@media (max-width: 900px) {
  .mt-30-m {
    margin-top: 30px;
  }
}

@media (max-width: 490px) {
  .mt-30-sm {
    margin-top: 30px;
  }
}

.br-25 {
  border-radius: 25px;
}

.br-15 {
  border-radius: 15px;
}

.border-bottom {
  border-bottom: 2px solid #AFB1B6 !important;
}

.social-icon {
  display: flex;
  margin-bottom: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}
.social-icon li {
  margin: 0 8px;
}
.social-icon li i {
  font-size: 24px;
  color: #FAFAFA;
}
.social-icon li i:hover {
  color: #00CFFF;
}
.social-icon.st-2 li i {
  color: #2C2D2F;
}
.social-icon.st-2 li i:hover {
  color: #00CFFF;
}

.border-white {
  border: 1px solid #FAFAFA;
}

.font-sec {
  font-family: "Inter", sans-serif;
}

.radius-10 {
  border-radius: 10px;
}

.color-hover:hover {
  color: #00CFFF;
}

.gallery .img-block {
  border-radius: 10px;
  overflow: hidden;
}
.gallery .img-block img {
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
}
.gallery .img-block:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
}

/*-------------------------
  Buttons
-------------------------*/
.back-to-top {
  position: fixed;
  bottom: 0px;
  right: 20px;
  display: block;
  width: 150px;
  height: 150px;
  line-height: 50px;
  font-size: 100px;
  padding: 20px 0;
  background: #00CFFF;
  color: #FAFAFA;
  text-align: center;
  opacity: 0;
  text-decoration: none;
  border-radius: 50%;
  -webkit-transform: scale(0.3);
  -ms-transform: scale(0.3);
  transform: scale(0.3);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.back-to-top.show {
  opacity: 1;
}
@media (max-width: 490px) {
  .back-to-top {
    right: -20px;
    bottom: -20px;
  }
}
#aviso-login {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#aviso-login {
  position: fixed; /* ← Esto hace que siga al usuario */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(3px);
}

.aviso-modal {
  background-color: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 380px;
  width: 90%;
  font-family: Arial, sans-serif;
  animation: fadeIn 0.3s ease;
  position: relative;
}

.aviso-modal h2 {
  font-size: 22px;
  color: #222;
  margin-bottom: 10px;
}

.aviso-modal p {
  color: #666;
  margin-bottom: 20px;
}

.aviso-modal .botones button {
  margin: 5px;
  background-color: #ff5a5f;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.aviso-modal .botones button:hover {
  background-color: #e0484d;
}

.cerrar-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  color: #aaa;
  cursor: pointer;
}

.cerrar-modal:hover {
  color: #000;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.real-btn {
  padding: clamp(8px, 0.67vw, 16px) clamp(16px, 1.25vw, 32px) !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
  font-size: clamp(16px, 1vw, 24px) !important;
  font-family: "Inter", sans-serif !important;
  line-height: 130%;
  text-transform: capitalize;
  transition: all 0.5s ease-in-out;
}
.real-btn.dark {
  color: #FAFAFA;
  border: 1px solid #00CFFF;
  background: #00CFFF;
}
.real-btn.dark:hover {
  color: #00CFFF;
  border: 1px solid #FAFAFA;
  background: #FAFAFA;
}
.real-btn.bordered {
  color: #1B1C1E;
  border: 1px solid #1B1C1E;
  background-color: #FAFAFA;
}
.real-btn.bordered:hover {
  color: #FAFAFA;
  border: 1px solid #00CFFF;
  background: #00CFFF;
}

.phone-link {
  font-weight: 500;
  font-size: clamp(20px, 1.25vw, 36px);
  line-height: 120%;
  color: #FAFAFA;
  display: flex;
  align-items: center;
  gap: clamp(12px, 0.83vw, 20px);
  justify-content: end;
}
.phone-link i {
  font-size: clamp(24px, 1.66vw, 42px);
  color: #00CFFF;
}
.phone-link:hover {
  color: #00CFFF;
}

.form-btn {
  width: 100%;
  padding: 20px 0;
  background: #00CFFF;
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
  border: 2px solid #00CFFF;
  border-radius: 5px;
  font-weight: 400;
  font-size: 19px;
  line-height: 130%;
  color: #FAFAFA;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.form-btn:hover {
  color: #00CFFF;
  background: #FAFAFA;
  transition: all 0.5s ease-in-out;
}

.wrapper-dropdown {
  border-radius: 0;
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: clamp(20px, 1.667vw, 48px);
}
.wrapper-dropdown .selected-display {
  font-weight: 400;
  color: #797D86;
  font-size: clamp(17px, 1.042vw, 24px);
  color: #AFB1B6;
}
.wrapper-dropdown::before {
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -2px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #fff transparent;
}
.wrapper-dropdown .topbar-dropdown {
  width: 100%;
  background: #FAFAFA;
  transition: 0.3s;
  position: absolute;
  top: 104%;
  left: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 99;
  border-radius: 0 0 4px 4px;
  box-shadow: inherit;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0;
  visibility: hidden;
}
.wrapper-dropdown .topbar-dropdown li {
  padding: 4px 16px;
  line-height: 30px;
  border-radius: 0;
  overflow: hidden;
  font-size: clamp(14px, 0.781vw, 18px); /* 15px */
  font-family: "Poppins", sans-serif;
  color: #1B1C1E;
  font-style: normal;
  font-weight: 400;
}
.wrapper-dropdown .topbar-dropdown li:last-child {
  border-bottom: none;
}
.wrapper-dropdown .topbar-dropdown li:hover {
  background-color: #00CFFF;
  color: #2C2D2F;
}
.wrapper-dropdown.active .topbar-dropdown {
  opacity: 1;
  visibility: visible;
  border-radius: 5px;
}
.wrapper-dropdown .scrollable-menu {
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
}
.wrapper-dropdown .arrow {
  float: right;
  rotate: 180deg;
}
.wrapper-dropdown svg {
  transition: all 0.3s;
}
.wrapper-dropdown .rotated {
  transform: rotate(-180deg);
}

/*-------------------------
  Element
-------------------------*/
.input-box {
  position: relative;
  width: 100%;
  max-width: 60px;
  height: 55px;
  margin-right: 16px;
  border-radius: 6px;
  transition: all 0.5s ease-in-out;
}
.input-box input {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 23px;
  font-weight: 400;
  line-height: 34px;
  background: transparent;
  opacity: 0;
  color: #0D0D0D;
  padding: 0 15px;
  border: none;
  border-radius: 6px;
  outline: none;
  transition: all 0.5s ease-in-out;
}
.input-box .search {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.input-box .search .search-icon {
  font-size: 30px;
  color: #FAFAFA;
}
.input-box .close-icon {
  position: absolute;
  top: 50%;
  right: -45px;
  font-size: 30px;
  color: #FAFAFA;
  padding: 5px;
  transform: translateY(-50%);
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
}
.input-box.open {
  max-width: 300px;
  margin-right: 80px;
}
.input-box.open input {
  padding: 12px 15px 12px 65px;
  background: #F8F8FF;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.input-box.open .search {
  border-radius: 6px 0 0 6px;
}
.input-box.open .search .search-icon {
  color: #2C2D2F;
}
.input-box.open .close-icon {
  transform: translateY(-50%) rotate(180deg);
  pointer-events: auto;
  opacity: 1;
}

/*-------------------------
  Popup
-------------------------*/
.popup {
  border-radius: 25px;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  display: none;
  transition: all 0.5s ease-in-out;
  position: absolute;
}
.popup img {
  border-radius: none !important;
}
.popup .content {
  padding: 18px 24px;
  background: #2C2D2F;
  display: inline-block;
  margin-top: -4px;
}

/*-------------------------
  Countdown
-------------------------*/
.countdown {
  padding: 0;
}
.countdown li {
  font-weight: 700;
  font-size: 61px;
  line-height: 125%;
  color: #FAFAFA;
  margin-right: 40px;
  display: inline-flex;
  align-items: center;
}
.countdown li span {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #FFFFFF;
  transform: rotate(-90deg);
  padding: 0;
  background: none;
  border-radius: 0;
  margin-left: -6px;
}

/*-------------------------
  Headings
-------------------------*/
.heading {
  margin-bottom: clamp(32px, 2.5vw, 64px);
  text-align: center;
}
.heading h2 {
  font-weight: 600;
  font-size: clamp(36px, 2.5vw, 64px);
  color: #1B1C1E;
  line-height: 120%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .heading h2 {
    font-size: 38px;
  }
}
@media (max-width: 490px) {
  .heading h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.heading p {
  line-height: 140%;
  color: #797D86;
  font-family: "Inter", sans-serif;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .heading p {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .heading p {
    margin-bottom: 24px;
  }
}
@media (max-width: 490px) {
  .heading p {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .heading p br {
    display: none;
  }
}

/*-------------------------
  Preloader Styles
-------------------------*/
.no-scroll-y {
  overflow-y: hidden;
}

/* Preloader */
.ctn-preloader {
  align-items: center;
  cursor: none;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99900;
}
.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}
.ctn-preloader .animation-preloader .txt-loading span {
  font: bold "Montserrat", sans-serif;
  font-size: 5em;
  text-align: center;
  user-select: none;
}
.ctn-preloader .animation-preloader .txt-loading span.letters-loading {
  color: rgba(26, 63, 109, 0.2);
  position: relative;
}
.ctn-preloader .animation-preloader .txt-loading span.letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #00CFFF;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotateY(-90deg);
}
.ctn-preloader .animation-preloader .txt-loading span.letters-loading:nth-child(2)::before {
  animation-delay: 0.2s;
}
.ctn-preloader .animation-preloader .txt-loading span.letters-loading:nth-child(3)::before {
  animation-delay: 0.4s;
}
.ctn-preloader .animation-preloader .txt-loading span.letters-loading:nth-child(4)::before {
  animation-delay: 0.6s;
}
.ctn-preloader .animation-preloader .txt-loading span.letters-loading:nth-child(5)::before {
  animation-delay: 0.8s;
}
.ctn-preloader .animation-preloader .txt-loading span.letters-loading:nth-child(6)::before {
  animation-delay: 1s;
}
.ctn-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(26, 63, 109, 0.2);
  border-top-color: #00CFFF;
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
.ctn-preloader .loader-section {
  background-color: #FAFAFA;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
.ctn-preloader .loader-section.section-left {
  left: 0;
}
.ctn-preloader .loader-section.section-right {
  right: 0;
}

.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

/* Animación del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
/* Animación de las letras cargando del preloader */
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
/* Tamaño de portatil hacia atras (portatil, tablet, celular) */
@media screen and (max-width: 767px) {
  /* Preloader */
  /* Spinner cargando */
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
  /* Texto cargando */
  .ctn-preloader .animation-preloader .txt-loading span {
    font: bold 3.5em "Montserrat", sans-serif;
  }
}
@media screen and (max-width: 500px) {
  /* Prelaoder */
  /* Spinner cargando */
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  /* Texto cargando */
  .ctn-preloader .animation-preloader .txt-loading span {
    font: bold 2em "Montserrat", sans-serif;
  }
}
@keyframes spin78236 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes wobble1 {
  0%, 100% {
    transform: translateY(0%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-66%) scale(0.65);
    opacity: 0.8;
  }
}
@keyframes wobble2 {
  0%, 100% {
    transform: translateY(0%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(66%) scale(0.65);
    opacity: 0.8;
  }
}
nav a.active {
  color: #00CFFF;
}
@media (max-width: 1199px) {
  nav .navbar-brand {
    display: block;
  }
}
nav .navbar-toggler {
  color: #2C2D2F;
  border: none;
  outline: 0;
}
nav .menu-item {
  margin-right: 30px;
}
@media (max-width: 1199px) {
  nav .menu-item {
    margin: 0 0 10px 0;
  }
}
nav .menu-item-has-children {
  position: relative;
  margin-right: 30px;
}
@media (max-width: 1199px) {
  nav .menu-item-has-children {
    margin: 0 0 10px 0;
  }
}
nav .menu-item-has-children .submenu {
  position: absolute;
  top: 19px;
  left: 0;
  background: #FAFAFA;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  min-width: 250px;
  padding: 20px 10px;
  border-radius: 4px;
  list-style: none;
  margin: 0;
}
nav .menu-item-has-children .submenu a:after {
  display: none;
}
nav .menu-item-has-children .submenu li {
  margin: 0;
  opacity: 0;
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}
nav .menu-item-has-children .submenu li a {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #1B1C1E;
  padding: 10px;
  display: block;
}
nav .menu-item-has-children .submenu li a.active {
  color: #00CFFF;
}
nav .menu-item-has-children .submenu li a:hover {
  color: #00CFFF;
}
nav .menu-item-has-children.st-2 .submenu {
  left: unset;
  right: 0;
  top: 38px;
  min-width: 180px;
  background: #2C2D2F;
}
nav .menu-item-has-children.st-2 .submenu li a {
  width: 100%;
  padding: 14px 28px;
  text-align: center;
  transform: all 0.5s ease-in-out;
}
nav .menu-item-has-children.st-2 .submenu li a.info-btn {
  color: #FAFAFA !important;
}
nav .menu-item-has-children.st-2 .submenu li a.info-btn:hover {
  color: #00CFFF !important;
}
nav .menu-item-has-children:hover .submenu {
  opacity: 1;
  visibility: visible;
  z-index: 99999;
  right: 0;
}
@media (max-width: 790px) {
  nav .menu-item-has-children:hover .submenu {
    left: 0;
  }
}
nav .menu-item-has-children:hover .submenu li {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
nav .navbar-toggler {
  padding: 10px;
  font-size: 24px;
  color: #FAFAFA;
  margin-top: 10px;
}
nav .navbar-toggler:focus {
  outline: 0;
  box-shadow: none;
}
@media (max-width: 1199px) {
  nav .navbar-collapse {
    background: #0D0D0D;
    padding: 15px 20px;
    position: absolute;
    right: 0;
    z-index: 9999;
    border-radius: 8px;
  }
}

.header {
  width: 100%;
  height: 100px;
  padding: 20px 0;
  background-color: transition;
}
.header nav .dark-logo {
  display: none;
}
.header nav .navbar-nav {
  margin-left: 48px;
}
@media (max-width: 1199px) {
  .header nav .navbar-nav {
    margin: 0;
  }
}
.header nav .navbar-nav .menu-item a {
  font-weight: 400;
  font-size: 25px;
  display: flex;
  align-items: center;
}
.header nav .navbar-nav .menu-item a i {
  font-size: 32px;
  color: #F0F2F4;
  padding-right: 12px;
}
.header nav .navbar-nav .menu-item-has-children a {
  color: #FAFAFA;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 19px;
}
@media only screen and (min-width: 1199px) and (max-width: 1399px) {
  .header nav .navbar-nav .menu-item-has-children a {
    font-size: 16px;
  }
}
.header nav .navbar-nav .menu-item-has-children a.active {
  color: #00CFFF;
}
.header nav .navbar-nav .menu-item-has-children a:hover {
  color: #00CFFF;
}
.header nav .navbar-nav .menu-item-has-children a:hover svg {
  stroke: #00CFFF;
}
.header nav .navbar-nav .menu-item-has-children .submenu li a {
  color: #2C2D2F;
  font-weight: 400;
  font-size: 19px;
}
.header nav .navbar-nav .menu-item-has-children .submenu li a.active {
  color: #00CFFF;
}
.header nav .navbar-nav .menu-item-has-children .submenu li a:hover {
  color: #00CFFF;
}
.header.st-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
.header.st-1 nav .navbar-collapse {
  align-items: center;
  justify-content: space-between;
}
.header.top-set {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
}
.header.top-set nav .navbar-toggler {
  color: #FAFAFA;
}
@media screen and (min-width: 992px) {
  .header.top-set nav .navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1199px) {
  .header.top-set nav .navbar-collapse {
    background: rgba(237, 243, 244, 0.3);
  }
}
@media screen and (min-width: 992px) {
  .header.top-set nav .navbar-collapse .navbar-nav {
    align-items: center;
  }
}
.header.top-set nav .navbar-collapse .navbar-nav .active {
  color: #FAFAFA;
}
.header.top-set nav .navbar-collapse .navbar-nav .menu-item-has-children .submenu {
  background: rgba(237, 243, 244, 0.3);
}
.header.top-set nav .navbar-collapse .navbar-nav .menu-item-has-children .submenu li a {
  color: #FAFAFA;
}
.header.top-set nav .navbar-collapse .navbar-nav .menu-item-has-children .submenu li a:hover {
  color: #00CFFF;
}
.header.top-set nav .navbar-collapse .navbar-nav .menu-item-has-children .submenu li a.active {
  color: #00CFFF;
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding-top: 20px;
  z-index: 999;
}
.header-1 .logo-light {
  display: none;
}
.header-1 nav a {
  margin-right: 30px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: #FAFAFA;
}
@media (max-width: 991px) {
  .header-1 nav a {
    color: #2C2D2F;
  }
}
.header-1 nav a.nexatech-btn {
  color: #1B1C1E;
  margin: 0;
}
.header-1 nav a.nexatech-btn.light {
  color: #FAFAFA;
}
.header-1 nav a.active {
  color: #00CFFF;
}
@media (max-width: 991px) {
  .header-1 nav .logo {
    display: none;
  }
}
.header-1.light nav a {
  color: #2C2D2F;
}
@media (max-width: 991px) {
  .header-1.light nav a {
    color: #2C2D2F;
  }
}
.header-1.light nav a.active {
  color: #00CFFF;
}
.header-1.light nav a:hover {
  color: #00CFFF;
}
.header-1.light nav .navbar-toggler {
  color: #2C2D2F;
}
.header-1.light nav .menu-item-has-children .submenu {
  background: #FAFAFA;
}
.header-1.light nav .menu-item-has-children .submenu li a {
  color: #1B1C1E;
}
.header-1.light nav .menu-item-has-children .submenu li a.active {
  color: #00CFFF;
}
.header-1.light nav .menu-item-has-children .submenu li a:hover {
  color: #00CFFF;
}

.footer {
  background: url(../media/banner/footer-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0 30px;
}
.footer .footer-title {
  font-size: clamp(32px, 2.2vw, 64px);
  line-height: 120%;
  font-family: "Inter", sans-serif;
}
@media (max-width: 575px) {
  .footer .footer-title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .footer .footer-title br {
    display: none;
  }
}
.footer .main {
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .footer .main {
    align-items: start;
  }
}
.footer .main .title {
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  text-transform: uppercase;
  color: #FAFAFA;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}
.footer .main .newsletter {
  margin-top: 150px;
}
@media (max-width: 991px) {
  .footer .main .newsletter {
    margin-top: 0;
  }
}
.footer .main .newsletter .title {
  font-weight: 500;
  font-size: 23px;
  line-height: 130%;
  text-transform: capitalize;
  color: #FAFAFA;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}
.footer .main .footer-social-icon {
  display: flex;
  margin-bottom: 0;
  padding: 0;
}
.footer .main .footer-social-icon li {
  margin: 0 8px;
}
.footer .main .footer-social-icon li i {
  font-size: 24px;
  color: #FAFAFA;
  transition: all 0.5s ease-in-out;
}
.footer .main .footer-social-icon li i:hover {
  color: #00CFFF;
  transition: all 0.5s ease-in-out;
}

.hero-sec {
  background: url(../media/banner/banner-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-sec .content {
  height: 100vh;
  display: grid;
  align-content: center;
  padding-bottom: 100px;
}
.hero-sec h2 {
  font-weight: 700;
  font-size: clamp(64px, 5.156vw, 150px);
  text-align: center;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #FAFAFA;
}
@media (max-width: 991px) {
  .hero-sec h2 {
    font-size: 70px;
  }
}
@media (max-width: 768px) {
  .hero-sec h2 {
    font-size: 60px;
  }
}
@media (max-width: 492px) {
  .hero-sec h2 {
    font-size: 40px;
  }
}
.hero-sec .category-block {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #F0F2F4;
  border-radius: 30px 30px 0 0;
  padding: 5.5vw 0 0px;
}
@media (max-width: 575px) {
  .hero-sec .category-block {
    position: relative;
    left: auto;
    bottom: auto;
    transform: translate(0);
    padding: 0;
    height: 80px;
    margin-top: -80px;
    border-radius: 20px 20px 0 0;
  }
}
.hero-sec .category-block .category-slider {
  margin: -11vw 0 16px;
}
@media (max-width: 575px) {
  .hero-sec .category-block .category-slider {
    margin-top: -70px;
  }
}
.hero-sec .category-block .category-slider .item {
  padding: clamp(16px, 2vw, 64px) 0;
  border-radius: 30px;
  background-color: #FAFAFA;
  text-align: center;
  margin: 0 16px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 575px) {
  .hero-sec .category-block .category-slider .item {
    border-radius: 20px;
    padding: 16px 12px;
  }
}
.hero-sec .category-block .category-slider .item i {
  font-size: 32px;
  color: #2C2D2F;
  margin-bottom: 16px;
  transition: all 0.5s ease-in-out;
}
.hero-sec .category-block .category-slider .item svg {
  margin-bottom: 16px;
}
.hero-sec .category-block .category-slider .item svg path {
  transition: all 0.5s ease-in-out;
}
.hero-sec .category-block .category-slider .item h4 {
  font-weight: 500;
  font-size: clamp(19px, 1.2vw, 32px);
  color: #0D0D0D;
  text-transform: capitalize;
  margin-bottom: 8px;
  transition: all 0.5s ease-in-out;
}
.hero-sec .category-block .category-slider .item p {
  font-size: clamp(13px, 0.83vw, 20px);
  color: #2C2D2F;
  padding: 0;
  margin: 0;
  transition: all 0.5s ease-in-out;
}
.hero-sec .category-block .category-slider .item:hover {
  background: #00CFFF;
  transition: all 0.5s ease-in-out;
}
.hero-sec .category-block .category-slider .item:hover i {
  color: #F0F2F4;
}
.hero-sec .category-block .category-slider .item:hover svg {
  stroke: #F0F2F4;
  fill: #F0F2F4;
}
.hero-sec .category-block .category-slider .item:hover svg path {
  transition: all 0.5s ease-in-out;
}
.hero-sec .category-block .category-slider .item:hover h4,
.hero-sec .category-block .category-slider .item:hover p {
  transition: all 0.5s ease-in-out;
  color: #F0F2F4;
}
.house-detail {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-family: 'Arial', sans-serif;
}

.house-detail__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.house-detail__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.house-detail__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.8rem;
}

.house-detail__icon {
  width: 24px;
  height: 24px;
}

.icon--small {
  width: 27px;
  height: auto;
}

.inner-banner {
  background: url(../media/banner/inner-banner-bg.png);
  background-position: center;
  background-size: cover;
  height: clamp(350px, 26.042vw, 600px);
  display: grid;
  align-content: center;
  padding-top: 5%;
}
@media (max-width: 768px) {
  .inner-banner {
    height: 250px;
  }
}
.inner-banner h2 {
  font-weight: 600;
  font-size: 69px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FAFAFA;
  margin: 0;
}
@media (max-width: 1199px) {
  .inner-banner h2 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .inner-banner h2 {
    font-size: 50px;
  }
}

.category {
  display: none;
  padding-top: 90px;
}
.category .category-block {
  background: #F0F2F4;
  border-radius: 30px;
  margin-top: -200px;
  padding: 100px 0 20px;
}
.category .category-block .category-slider {
  margin: -200px 0 34px;
}
.category .category-block .category-slider .item {
  padding: clamp(16px, 2.5vw, 64px) 0;
  border-radius: 30px;
  background-color: #FAFAFA;
  text-align: center;
  margin: 0 16px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.category .category-block .category-slider .item i {
  font-size: 32px;
  color: #2C2D2F;
  margin-bottom: 16px;
}
.category .category-block .category-slider .item svg {
  margin-bottom: 16px;
}
.category .category-block .category-slider .item h4 {
  font-weight: 500;
  font-size: 23px;
  color: #0D0D0D;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.category .category-block .category-slider .item p {
  font-size: 16px;
  color: #2C2D2F;
  padding: 0;
  margin: 0;
}
.category .category-block .category-slider .item:hover {
  background: #00CFFF;
}
.category .category-block .category-slider .item:hover i {
  color: #F0F2F4;
}
.category .category-block .category-slider .item:hover svg {
  stroke: #F0F2F4;
  fill: #F0F2F4;
}
.category .category-block .category-slider .item:hover h4, .category .category-block .category-slider .item:hover p {
  color: #F0F2F4;
}
.category .category-block .category-slider .slick-dots {
  bottom: -50px;
}

.pagination-wrape {
  margin: 30px 0 0;
  text-align: center;
}
.pagination-wrape .pagination {
  display: block;
}
.pagination-wrape .pagination li {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-right: 16px;
  box-shadow: 42px 42px 24px rgba(0, 0, 0, 0.01), 24px 24px 20px rgba(0, 0, 0, 0.03), 11px 11px 15px rgba(0, 0, 0, 0.04), 3px 3px 8px rgba(0, 0, 0, 0.05), 0px 0px 0px rgba(0, 0, 0, 0.05);
}
.pagination-wrape .pagination li:last-child {
  margin-right: 0;
}
.pagination-wrape .pagination li a {
  width: 40px;
  height: 40px;
  font-weight: 400;
  font-size: 21px;
  line-height: 140%;
  text-align: center;
  color: #2C2D2F;
  box-shadow: 42px 42px 24px rgba(0, 0, 0, 0.01), 24px 24px 20px rgba(0, 0, 0, 0.03), 11px 11px 15px rgba(0, 0, 0, 0.04), 3px 3px 8px rgba(0, 0, 0, 0.05), 0px 0px 0px rgba(0, 0, 0, 0.05);
  background-color: #FAFAFA;
  display: block;
  border: none;
  border-radius: 10px;
}
.pagination-wrape .pagination li a.arrow {
  font-size: 22px;
}
.pagination-wrape .pagination li a.current {
  background-color: #00CFFF;
  color: #FAFAFA;
}
.pagination-wrape .pagination li a:hover {
  background-color: #00CFFF;
  color: #FAFAFA;
}

.page-item:first-child .page-link {
  border-radius: 10px;
}
.page-item:last-child .page-link {
  border-radius: 10px;
}

@media (max-width: 1199px) {
  .check-out .content {
    margin-bottom: 24px;
  }
}
.check-out .content .img-block {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.check-out .content .img-block img {
  width: 100%;
  object-fit: cover;
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
}
.check-out .content .img-block span {
  background: #FAFAFA;
  position: absolute;
  padding: clamp(6px, 0.5vw, 10px);
  border-radius: 5px;
  font-weight: 500;
  font-size: clamp(16px, 1vw, 24px);
  line-height: 130%;
  left: 16px;
  bottom: 16px;
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
  color: #0D0D0D;
}
.check-out .content .img-block span.st-2 {
  bottom: unset;
  left: unset;
  top: 16px;
  right: 16px;
}
.check-out .content a {
  font-weight: 500;
  font-size: 23px;
  line-height: 130%;
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
  color: #1B1C1E;
  margin-bottom: 16px;
  transition: all 0.5s ease-in-out;
}
.check-out .content .title-text {
  transition: all 0.5s ease-in-out;
}
.check-out .content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #1B1C1E;
  font-family: "Inter", sans-serif;
  margin-bottom: 8px;
}
.check-out .content ul {
  display: flex;
  align-items: center;
}
.check-out .content ul li {
  font-family: "Inter", sans-serif;
  margin-right: 14px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: #0D0D0D;
}
.check-out .content ul li svg {
  margin-right: 8px;
}
.check-out .content:hover .img-block img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
}
.check-out .content:hover a {
  transition: all 0.5s ease-in-out;
}
.check-out .content:hover .title-text {
  color: #00CFFF;
  transition: all 0.5s ease-in-out;
}
.check-out .property-slider {
  margin-bottom: 48px;
}
.check-out .property-slider .content {
  padding: 0 12px;
}
.check-out .property-slider .content .img-block {
  overflow: hidden;
  border-radius: 10px;
}
.check-out .property-slider .content .img-block img {
  display: block;
  width: 100%;
  object-fit: cover;
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
}
.check-out .property-slider .content h4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .check-out .property-slider .content h4 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
.check-out .property-slider .content:hover .img-block img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
}
.check-out .property-slider .slick-dots {
  bottom: -50px;
}

.solution .content {
  padding: clamp(40px, 3.3vw, 90px) clamp(24px, 1.66vw, 48px);
  background: #F0F2F4;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 992px) {
  .solution .content {
    margin-bottom: 32px;
  }
}
@media (max-width: 490px) {
  .solution .content {
    padding: 32px 12px;
  }
}
.solution .content p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.solution .content h4 {
  transition: all 0.5s ease-in-out;
}
.solution .content a {
  padding: 10px 16px;
  color: #2C2D2F;
  background: #FAFAFA;
  text-transform: uppercase;
  font-weight: 500;
  font-size: clamp(18px, 1.2vw, 30px);
  line-height: 130%;
  text-transform: uppercase;
  color: #2C2D2F;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
}
.solution .content a:hover {
  transition: all 0.5s ease-in-out;
  background: #00CFFF;
  color: #FAFAFA;
}
.solution .content:hover h4 {
  transition: all 0.5s ease-in-out;
  color: #00CFFF;
}

.testimonial .testimonial-block {
  position: relative;
  background: #FAFAFA;
  border-radius: 10px;
  margin: 0 12px;
  overflow: hidden;
}
.testimonial .testimonial-block .quote {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.testimonial .testimonial-block .user-img {
  padding-top: 50px;
  text-align: center;
}
.testimonial .testimonial-block .user-img img {
  margin: -100px auto 8px;
}
.testimonial .testimonial-block .name {
  font-weight: 500;
  font-size: clamp(19px, 1.2vw, 32px);
  line-height: 130%;
  text-align: center;
  font-family: "Inter", sans-serif;
  color: #0D0D0D;
  margin-bottom: 8px;
}
.testimonial .testimonial-block p {
  padding: 0 clamp(18px, 1.66vw, 40px);
  font-family: "Inter", sans-serif;
  text-align: center;
  color: #797D86;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 28px;
}

.blog .content {
  background: #FAFAFA;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .blog .content {
    margin-bottom: 24px;
  }
}
.blog .content .img-block {
  position: relative;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.blog .content .img-block img {
  width: 100%;
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
  object-fit: cover;
}
.blog .content .img-block .date {
  position: absolute;
  padding: 8px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  background: #FAFAFA;
  font-family: "Inter", sans-serif;
  color: #0D0D0D;
  margin-bottom: 0;
  left: 16px;
  bottom: 16px;
}
.blog .content .text-block {
  padding: clamp(20px, 1.25vw, 32px) clamp(14px, 0.83vw, 24px);
}
.blog .content .text-block .category-text {
  font-weight: 400;
  font-size: clamp(15px, 1vw, 22px);
  line-height: 130%;
  font-family: "Inter", sans-serif;
  color: #00CFFF;
  margin-bottom: 8px;
}
.blog .content .text-block a {
  font-weight: 500;
  font-size: clamp(18px, 1.22vw, 32px);
  line-height: 130%;
  text-transform: capitalize;
  color: #1B1C1E;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  transition: all 0.5s ease-in-out;
}
.blog .content .text-block ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: flex;
}
.blog .content .text-block ul li {
  margin-right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog .content .text-block ul li span {
  font-weight: 500;
  font-size: clamp(14px, 0.833vw, 22px);
  line-height: 150%;
  font-family: "Inter", sans-serif;
  color: #1B1C1E;
}
.blog .content .text-block ul li i {
  color: #1B1C1E;
  font-size: clamp(20px, 1.25vw, 30vw);
}
.blog .content:hover .img-block img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.6s linear 0s;
  transition: all 0.6s linear 0s;
}
.blog .content:hover a {
  transition: all 0.5s ease-in-out;
  color: #00CFFF;
}

.team .team-block {
  padding: 32px 16px;
  border-radius: 10px;
  text-align: center;
  background-color: #F0F2F4;
  text-align: center;
  align-items: center;
  margin: 0 12px;
}
.team .team-block img {
  margin: 0 auto 8px;
}
.team .team-block .name {
  font-weight: 500;
  font-size: 23px;
  line-height: 130%;
  text-align: center;
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
  color: #0D0D0D;
  margin-bottom: 1px;
}
.team .team-block .designation {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.02em;
  color: #797D86;
  font-family: "Inter", sans-serif;
  margin-bottom: 18px;
}
.team .team-block .socialicon {
  display: flex;
  margin-bottom: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}
.team .team-block .socialicon li {
  margin: 0 8px;
}
.team .team-block .socialicon li i {
  font-size: 24px;
  color: #2C2D2F;
}
.team .team-block .socialicon li i:hover {
  color: #00CFFF;
}

.about .img-block {
  position: relative;
  display: grid;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1199px) {
  .about .img-block {
    margin-bottom: 48px;
  }
}
.about .img-block .big-img {
  border-radius: 20px;
  object-fit: cover;
}
.about .img-block .detail {
  position: absolute;
  left: 6.563vw;
  z-index: 50;
  padding: 32px;
  background: #F0F2F4;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .about .img-block .detail {
    left: 256px;
  }
}
@media (max-width: 991px) {
  .about .img-block .detail {
    left: 150px;
  }
}
@media (max-width: 767px) {
  .about .img-block .detail {
    left: unset;
    bottom: unset;
    position: relative;
    margin-top: 48px;
    background: #FAFAFA;
  }
}
@media (max-width: 490px) {
  .about .img-block .detail {
    padding: 18px 14px;
  }
}
.about .img-block .detail h4 {
  font-weight: 500;
  font-size: 23px;
  line-height: 130%;
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
  color: #0D0D0D;
  margin-bottom: 8px;
}
.about .img-block .detail p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.02em;
  font-family: "Inter", sans-serif;
  color: #2C2D2F;
  margin-bottom: 8px;
}
.about .img-block .detail ul {
  display: flex;
  align-items: center;
}
.about .img-block .detail ul li {
  font-family: "Inter", sans-serif;
  margin-right: 14px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #0D0D0D;
}
.about .img-block .detail ul li svg {
  margin-right: 8px;
}
.about .content p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #797D86;
}
.about .content ul {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .about .content ul {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .about .content ul li {
    width: 50%;
  }
}
@media (max-width: 492px) {
  .about .content ul li {
    width: 100%;
  }
}
.about .content ul li img {
  margin-bottom: 20px;
}
.about .content ul li h5 {
  font-weight: 500;
  font-size: 23px;
  line-height: 130%;
  text-transform: capitalize;
  color: #1B1C1E;
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
}
@media (max-width: 1399px) {
  .about .content ul li h5 {
    font-size: 19px;
  }
}
@media (max-width: 1199px) {
  .about .content ul li h5 {
    font-size: 21px;
  }
}

.sidebar {
  padding: 32px;
  border-radius: 10px;
}
.sidebar .title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 130%;
  text-transform: capitalize;
  color: #1B1C1E;
  margin-bottom: 16px;
}
.sidebar .selector {
  width: 100%;
  background: #FAFAFA;
  border: 1px solid #2C2D2F;
  border-radius: 5px;
  padding: 21.5px 24px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #AFB1B6;
  margin-bottom: 32px;
}
.sidebar .selector:focus {
  outline: 0;
  box-shadow: none;
}
.sidebar ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #2C2D2F;
  border-radius: 5px;
  background: #FAFAFA;
  padding: 12px 24px;
}
.sidebar ul li {
  padding: 12px 0;
  width: 50%;
}
.sidebar .slider-track {
  border: 1px solid #2C2D2F;
  border-radius: 5px;
  background: #FAFAFA;
  padding: 24px;
}
.sidebar .slider-track .irs--big {
  height: 32px;
  margin-bottom: 16px;
}
.sidebar .slider-track .irs-line {
  top: 12px;
  height: 5px;
  border: 1px solid #D6D8DB;
  background: #D6D8DB;
  cursor: pointer;
}
.sidebar .slider-track .irs-bar {
  top: 12px;
  height: 5px;
  border: 1px solid #00CFFF;
  background: #00CFFF;
  box-shadow: none;
  cursor: pointer;
}
.sidebar .slider-track .irs-handle {
  top: 0;
  border: 1px solid #00CFFF;
  background-color: #00CFFF;
  background: #00CFFF;
  box-shadow: none;
}
.sidebar .slider-track .irs-handle:hover {
  cursor: pointer;
}
.sidebar .slider-track p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #797D86;
}
.sidebar .form-group {
  display: block;
  margin-bottom: 0;
}
.sidebar .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  cursor: pointer;
}
.sidebar .form-group label {
  font-family: "Inter", sans-serif;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  font-size: 19px;
  line-height: 130%;
  color: #797D86;
}
@media only screen and (min-width: 1199px) and (max-width: 1399px) {
  .sidebar .form-group label {
    font-size: 14px;
  }
}
@media (max-width: 490px) {
  .sidebar .form-group label {
    font-size: 14px;
  }
}

.form-group label .form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 7px;
  width: 7px;
  height: 17px;
  border: solid #1B1C1E;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.properties-detail .house-detail-slider-nav .item {
  margin: 0 12px;
}
.properties-detail span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
  margin-bottom: 16px;
  margin-right: 24px;
  position: relative;
}
.properties-detail span::before {
  content: "";
  position: absolute;
  right: -14px;
  width: 0px;
  height: 16px;
  background: #D6D8DB;
}
.properties-detail span.st-2::before {
  display: none;
}
.properties-detail ul {
  display: flex;
  align-items: center;
}
.properties-detail ul li {
  font-family: "Inter", sans-serif;
  margin-right: 14px;
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
  color: #0D0D0D;
}
.properties-detail ul li svg {
  margin-right: 8px;
}
.properties-detail .contact {
  background: #F0F2F4;
  padding: 32px;
  border-radius: 10px;
  margin-bottom: 24px;
}
.properties-detail .house-detail {
  padding: 32px;
  background: #F0F2F4;
  border-radius: 10px;
  margin-bottom: 32px;
}
@media (max-width: 490px) {
  .properties-detail .house-detail {
    padding: 16px;
  }
}
.properties-detail .house-detail h2 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 130%;
  text-transform: capitalize;
  color: #0D0D0D;
  margin-bottom: 16px;
}
.properties-detail .house-detail h2.st-2 {
  margin-bottom: 16px;
}
.properties-detail .house-detail ul {
  flex-wrap: wrap;
  margin: 0;
}
.properties-detail .house-detail ul li {
  width: 33%;
  font-weight: 400;
  font-size: 19px;
  line-height: 130%;
  color: #1B1C1E;
  margin: 16px 0;
  font-family: "Inter", sans-serif;
}
@media (max-width: 767px) {
  .properties-detail .house-detail ul li {
    width: 50%;
  }
}
@media (max-width: 490px) {
  .properties-detail .house-detail ul li {
    width: 100%;
  }
}
.properties-detail .house-detail ul li img {
  margin-right: 12px;
}
.properties-detail .house-detail p {
  font-family: "Inter", sans-serif;
  line-height: 150%;
  color: #797D86;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
}
.properties-detail .house-detail span {
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
  font-family: "Inter", sans-serif;
  color: #797D86;
  margin-bottom: 4px;
}
.properties-detail .house-detail .accordion-button {
  padding: 22px 24px;
  background: #FAFAFA;
  border-radius: 5px 5px 0 0;
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .properties-detail .house-detail .accordion-button {
    flex-direction: column;
  }
}
.properties-detail .house-detail .accordion-button span {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #1B1C1E;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.properties-detail .house-detail .accordion-button span.st-1 {
  width: 45%;
}
@media (max-width: 1399px) {
  .properties-detail .house-detail .accordion-button span.st-1 {
    width: 35%;
  }
}
@media (max-width: 767px) {
  .properties-detail .house-detail .accordion-button span.st-1 {
    width: 100%;
    margin-bottom: 16px;
  }
}
.properties-detail .house-detail .accordion-button span::before {
  display: none;
}
.properties-detail .house-detail .accordion-button span i {
  font-size: 19px;
  margin-right: 8px;
}
.properties-detail .house-detail .accordion-button samp {
  width: 50%;
  margin-left: auto;
}
@media (max-width: 1399px) {
  .properties-detail .house-detail .accordion-button samp {
    width: 65%;
  }
}
@media (max-width: 767px) {
  .properties-detail .house-detail .accordion-button samp {
    width: 100%;
  }
}
.properties-detail .house-detail .accordion-button samp span {
  margin: 0;
  padding-left: 32px;
}
@media (max-width: 490px) {
  .properties-detail .house-detail .accordion-button samp span {
    padding-left: 8px;
    font-size: 12px;
  }
}
.properties-detail .house-detail .accordion-button.collapsed {
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
}
.properties-detail .house-detail .video {
  border-radius: 10px;
}
.properties-detail .house-detail .video .img-box {
  border-radius: 10px;
  position: relative;
  width: 100%;
  height: 400px;
}
@media (max-width: 767px) {
  .properties-detail .house-detail .video .img-box {
    height: 350px;
  }
}
@media (max-width: 492px) {
  .properties-detail .house-detail .video .img-box {
    height: 250px;
  }
}
.properties-detail .house-detail .video .img-box .detail-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.properties-detail .house-detail .video .img-box .overlay {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border-radius: 25px;
}
.properties-detail .house-detail .video .img-box .overlay .play-btn {
  color: white;
  font-size: clamp(24px, 1.66vw, 42px);
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid white;
  background-color: #2C2D2F;
  width: clamp(48px, 3.333vw, 84px);
  height: clamp(48px, 3.333vw, 84px);
  display: grid;
  align-content: center;
  padding-left: 0.5%;
  text-align: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
.properties-detail .house-detail .video .video-box {
  display: none;
  border-radius: 10px;
}
.properties-detail .house-detail .video .video-box video {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .properties-detail .house-detail .video .video-box video {
    height: 350px;
  }
}
@media (max-width: 492px) {
  .properties-detail .house-detail .video .video-box video {
    height: 250px;
  }
}
.properties-detail .house-detail .review {
  border-bottom: 1px solid #D6D8DB;
}
.properties-detail .house-detail .review p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #797D86;
  margin-bottom: 32px;
}
.properties-detail .house-detail .user {
  display: flex;
  align-items: center;
}
.properties-detail .house-detail .user img {
  border-radius: 5px;
  margin-right: 24px;
}
@media (max-width: 490px) {
  .properties-detail .house-detail .user img {
    margin-right: 10px;
  }
}
.properties-detail .house-detail .user h6 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 130%;
  text-transform: capitalize;
  color: #0D0D0D;
  margin-bottom: 16px;
}
.properties-detail .house-detail .user h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  font-family: "Inter", sans-serif;
  color: #0D0D0D;
  margin-bottom: 8px;
}
.properties-detail .house-detail .user p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  font-family: "Inter", sans-serif;
  color: #1B1C1E;
  margin-bottom: 0;
}
@media (max-width: 490px) {
  .properties-detail .house-detail .user p {
    font-size: 13px;
  }
}
.properties-detail .house-detail .stars i {
  color: #00CFFF;
  font-size: 16px;
  padding-left: 8px;
}
.properties-detail .house-detail .star-cb-group {
  margin-bottom: 24px;
}
.properties-detail .house-detail .formGroup {
  display: block;
  margin-bottom: 32;
}
.properties-detail .house-detail .formGroup input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.properties-detail .house-detail .formGroup label {
  font-family: "Inter", sans-serif;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  font-size: 19px;
  line-height: 130%;
  color: #797D86;
}
@media only screen and (min-width: 1199px) and (max-width: 1399px) {
  .properties-detail .house-detail .formGroup label {
    font-size: 14px;
  }
}
@media (max-width: 490px) {
  .properties-detail .house-detail .formGroup label {
    font-size: 14px;
  }
}
.properties-detail .house-detail .formGroup label:before {
  content: "";
  -webkit-appearance: none;
  border: none;
  background: #D6D8DB;
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 12px;
  margin-top: -3px;
}
.properties-detail .house-detail .formGroup input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 7px;
  width: 7px;
  height: 17px;
  border: solid #1B1C1E;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

iframe {
  width: 100%;
}

.logo-slider .slick-track {
  display: flex;
  align-items: center;
}
.skills-list {
  list-style-type: none;  /* Elimina los puntos de la lista */
  padding: 0;  /* Elimina el relleno predeterminado */
  margin: 0;  /* Elimina el margen predeterminado */
}

.skills-list li {
  font-size: 1.1rem;  /* Ajusta el tamaño de la fuente */
  line-height: 1.6;  /* Aumenta la altura de línea para mejorar la legibilidad */
  margin-bottom: 10px;  /* Espaciado entre los elementos */
  padding-left: 20px;  /* Agrega sangría a la izquierda */
  position: relative;  /* Permite agregar un icono de fondo */
}

.skills-list li:before {
  content: "✓";  /* Agrega un icono de check */
  position: absolute; 
  left: 0;
  top: 0;
  font-size: 1.2rem;  /* Tamaño del icono */
  color: #4caf50;  /* Color verde para el check */
}
.resaltado-lista {
  background-color: #f0f0f0; /* Fondo gris claro */
  padding: 20px;
  border-radius: 10px; /* Bordes redondeados */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

.resaltado-item {
  font-weight: bold;
  color: #2c3e50; /* Color oscuro para el texto */
  font-size: 16px;
  margin-bottom: 10px;
}

.resaltado-item::before {
  content: "• "; /* Agrega un punto delante de cada ítem */
  color: #3498db; /* Color azul para los puntos */
}
.icon-large {
  width: 60px; /* Ajusta el tamaño de las imágenes */
  height: 60px; /* Ajusta el tamaño de las imágenes */
}

ul.list-unstyled {
  display: flex;
  justify-content: space-between; /* Distribuye los íconos a lo largo de un rectángulo */
  align-items: center; /* Alinea los íconos y textos verticalmente */
  padding: 0;
  margin: 0;
}

ul.list-unstyled li {
  flex: 1;
  text-align: center;
}

h5 {
  font-size: 18px; /* Ajusta el tamaño de la fuente si es necesario */
  margin-top: 8px;
}
.row-alquilar {
  justify-content: center !important; /* centra horizontalmente */
}

.row-alquilar .content {
  margin: 0 auto;
  text-align: center;
}
.auth-link {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.auth-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #00CFFF;
  transform: scaleX(0.3);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.auth-link:hover {
  color: #cecece;
}

.auth-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.registro-container {
  display: flex;
  height: 100vh;
}
.color-brown {
  color: #00CFFF; /* Marrón */
}
.form-section {
  flex: 2;
  padding: 60px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}


/*# sourceMappingURL=app.css.map */
#modal-politicas {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 400px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  overflow: hidden;
}

#modal-politicas .contenido {
  padding: 20px;
  height: calc(100% - 60px);
  overflow-y: auto;
}

#modal-politicas .boton-aceptar {
  background: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Fondo oscuro detrás del modal */
#modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}


/* Animación de los links */
.link-desplegable {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: black;
  position: relative;
  overflow: hidden;
}

.link-desplegable::after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 0;
  height: 2px;
  width: 0%;
  background-color: #00CFFF;
  transition: width 0.3s ease, right 0.3s ease;
}

.link-desplegable:hover::after {
  width: 100%;
  right: 0;
}

.link-desplegable:hover {
  color: #00CFFF; /* Opcional: también cambia el color del texto al pasar */
}


/* Estilo general para el carrusel */
.carousel {
  position: relative;
  width: 100%;
  height: 200px; /* Ajusta según el tamaño de la imagen */
  overflow: hidden;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.whatsapp-button {
  display: inline-flex; /* Cambio a inline-flex para alinear el ícono y el texto */
  align-items: center; /* Alinea verticalmente */
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 16px;
  gap: 10px; /* Espacio entre el ícono y el texto */
}

.whatsapp-button:hover {
  background-color: #1EBE54;
}

.whatsapp-icon {
  width: 24px; /* Tamaño del ícono */
  height: 24px;
}

/* Estilo de los botones de navegación */
.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
  color: white;
  font-size: 24px;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10; /* Asegura que los botones estén encima de la imagen */
  opacity: 0; /* Los botones no son visibles por defecto */
  transition: opacity 0.3s; /* Transición suave para la aparición */
}

.carousel:hover button {
  opacity: 1; /* Los botones se muestran cuando el carrusel es hover */
}

.carousel .prev {
  left: 10px; /* Alinea el botón a la izquierda */
}

.carousel .next {
  right: 10px; /* Alinea el botón a la derecha */
}

/* Estilo de los botones cuando se pasa por encima */
.carousel button:hover {
  background-color: rgba(0, 0, 0, 0.7); /* Fondo más oscuro al pasar el ratón */
}
.house-detail-slider .item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 20px; /* Más redondeado */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
  transition: transform 0.3s ease; /* Para animaciones suaves */
}

.house-detail-slider .item img:hover {
  transform: scale(1.05); /* Pequeño zoom al pasar el mouse */
}

.house-detail-slider {
  max-width: 800px; /* o el tamaño que desees */
  margin: auto;
  padding: 10px; /* Espacio interno para que no quede tan pegado */
}

@media (min-width: 768px) {
  .house-detail-slider .item img {
    height: 500px; /* altura fija para que queden parejas */
    object-fit: cover;
    border-radius: 20px; /* Repetir para asegurar efecto */
  }
}

/* Estilo general de la tabla */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  box-shadow: 0 7px 12px #a2a2a2;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 8px;
  overflow: hidden;
}

/* Encabezado */
thead {
  background-color: #f3f4f6; /* Gris claro */
  color: #111827; /* Texto más oscuro */
}

/* Celdas de encabezado y cuerpo */
th, td {
  color: #111827;
  padding: 14px 18px;
  text-align: left;
  font-size: 15px;
  transition: background-color 0.3s ease;
}


/* Filas alternas */
tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

/* Estilo para destacar texto verde y rojo */
td.text-green-600 {
  color: #059669;
  font-weight: bold;
}

td.text-red-600 {
  color: #dc2626;
  font-weight: bold;
}

/* Título y subtítulo */
.heading h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937; /* Texto más oscuro */
}

.heading p {
  font-size: 16px;
  color: #111827; /* Texto más oscuro */
  font-weight: 500;
}

.cerrar {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}


@keyframes aparecer {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cerrar {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 24px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

.cerrar:hover {
  color: #000;
}



nav {
  display: flex;
  gap: 20px;
}


.link-desplegable {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: black;
}
/* ====== MÓVILES (hasta 768px) ====== */
@media (max-width: 768px) {
  header {
    padding: 10px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  nav {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .propiedades-casa {
    width: 100%;
    max-width: 100%;
  }

  .modal-content {
    width: 95%;
    max-width: 95%;
  }

  .btn-unirme {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }
}

/* ====== TABLETS (769px – 991px) ====== */
@media (min-width: 769px) and (max-width: 991px) {
  header {
    padding: 15px 30px;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  nav {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
  }

  .propiedades-casa {
    width: 48%; /* 2 columnas */
    max-width: 48%;
  }

  .modal-content {
    width: 85%;
    max-width: 700px;
  }

  .btn-unirme {
    width: auto;
    padding: 12px 18px;
    font-size: 15px;
  }
}

/* ====== DESKTOP MEDIO (992px – 1199px) ====== */
@media (min-width: 992px) and (max-width: 1199px) {
  header {
    padding: 20px 40px;
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }

  nav {
    flex-direction: row;
    gap: 20px;
  }

  .propiedades-casa {
    width: 32%; /* 3 columnas */
    max-width: 32%;
  }

  .modal-content {
    width: 75%;
    max-width: 800px;
  }
}
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
}

/* ====== DESKTOP GRANDE (1200px en adelante) ====== */
@media (min-width: 1200px) {
  header {
    padding: 25px 60px;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  nav {
    flex-direction: row;
    gap: 25px;
  }

  .propiedades-casa {
    width: 24%; /* 4 columnas */
    max-width: 24%;
  }

  .modal-content {
    width: 60%;
    max-width: 900px;
  }
}

.cuadrados-secciones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px; /* un poco más ancho */
  margin: 40px auto;
}

.logo-responsive {
  width: 180px; /* Tamaño en escritorio */
  height: auto;
}

@media (max-width: 768px) {
  .logo-responsive {
    width: 100px; /* Más chico en celular */
  }

  .navbar-brand {
    margin-left: 0;
  }
}
.cuadro {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
  aspect-ratio: 1 / 1; /* mantiene forma cuadrada */
}

.cuadro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 16px;
}

.cuadro:hover img {
  transform: scale(1.06);
}

.titulo-lugar {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-top: 14px;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}
.flatpickr-day.reservada {
  background-color: #f2f2f2;  /* gris muy claro */
  color: #bbb !important;     /* gris claro para el número */
  font-weight: normal;
  cursor: not-allowed;
  border-radius: 50%;
  position: relative;
}

/* Línea muy sutil (opcional, si aún querés una indicación) */
.flatpickr-day.reservada::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 1px;
  background: rgba(0, 0, 0, 0.15); /* gris muy sutil */
  transform: rotate(-15deg);
  transform-origin: center;
  pointer-events: none;
}

.beneficios-section {
  width: 100vw;
  background: linear-gradient(to bottom, #f4f7f7, #e8f0ef);
  padding: 80px 5vw;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

                  
                    .beneficios-section h2 {
                      text-align: center;
                      font-size: 28px;
                      color: #222;
                      margin-bottom: 20px;
                      font-weight: 700;
                    }
                  
                    .beneficios-section p {
                      text-align: center;
                      font-size: 16px;
                      color: #666;
                      margin-bottom: 40px;
                    }
                  
                    .cards-container {
                      display: flex;
                      flex-wrap: wrap;
                      justify-content: center;
                      gap: 24px;
                    }
                  
                    .card {
                      width: 280px;
                      height: 200px;
                      perspective: 1000px;
                    }
                  
                    .card-inner {
                      position: relative;
                      width: 100%;
                      height: 100%;
                      border-radius: 14px;
                  
                      box-shadow: 0 8px 20px rgba(0, 166, 153, 0.2);
                      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
                      transform-style: preserve-3d;
                      cursor: pointer;
                    }
                  
                    .card:hover .card-inner {
                      transform: rotateY(180deg);
                    }
                  
                    .card-front, .card-back {
                      position: absolute;
                      width: 100%;
                      height: 100%;
                      padding: 24px 30px;
                      backface-visibility: hidden;
                      display: flex;
                      flex-direction: column;
                      align-items: flex-start;
                      justify-content: center;
                      gap: 16px;
                      border-radius: 14px;
                    }
                  
                    .card-front {
                        background: linear-gradient(to bottom, #f4f7f7, #e8f0ef); /* mismo gradiente que .beneficios-section */
                        color: #005f57;
                    }
                  
                    .card-front h3 {
                      margin: 0;
                      font-size: 20px;
                      font-weight: 700;
                    }
                  
                    .card-back {
                      background: linear-gradient(135deg, #d4d4d4, #f0f0f0, #bfbfbf, #e6e6e6, #a6a6a6);
                      color: #fff;
                      transform: rotateY(180deg);
                      font-size: 14px;
                      line-height: 1.5;
                    }
                  
                    .icon svg {
                      display: block;
                    }
                  
                    .footer-text {
                      text-align: center;
                      margin-top: 50px;
                      font-style: italic;
                      color: #444;
                      font-size: 15px;
                    }
                  
                    /* Responsive */
                    @media (max-width: 600px) {
                      .cards-container {
                        flex-direction: column;
                        gap: 18px;
                      }
                  
                      .card {
                        width: 100%;
                        height: 220px;
                      }
                    }
                    .flatpickr-calendar {
                      border-radius: 12px !important;
                      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
                      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                    }
                  
                    .flatpickr-day.selected,
                    .flatpickr-day.startRange,
                    .flatpickr-day.endRange {
                      background-color: #00A699 !important;
                      color: white !important;
                      border-radius: 50% !important;
                    }
                  
                    .flatpickr-day.inRange {
                      background: #e0f7f5 !important;
                    }
                  
                    .flatpickr-months,
                    .flatpickr-weekday {
                      color: #014d43 !important;
                      font-weight: 600;
                    }
                  
                    .flatpickr-current-month input.cur-year {
                      font-weight: bold;
                      color: #014d43;
                    }
                    /* Cinta triangular */
/* Ocultar botón hamburguesa en escritorio */
.navbar-toggler {
  display: none; /* Por defecto oculto */
}

/* Mostrar solo en pantallas chicas (teléfonos) */
@media (max-width: 768px) {
  .navbar-toggler {
    display: block;
  }
}
