
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ececec;
  color: #1a1a1a;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.page-content {
  flex: 1;
}

.page-with-fixed-header {
  padding-top: 154px;
}

/* =========================================================
   HEADER + NAV + DROPDOWN FIX
========================================================= */

.site-header-fixed {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  z-index: 3000;
  overflow: visible;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.18);
}

/* Header rojo por encima del nav */
.top-header {
  background-color: #b00000;
  color: #ffffff;
  position: relative;
  z-index: 5000;
  padding: 10px 0;
  z-index: 9999;
}

/* Nav gris por debajo del header */
.custom-navbar {
  background-color: #a9a9a9;
  min-height: 46px;
  position: relative;
  z-index: 3000;
}

.header-row {
  min-height: 120px;
}

.brand-logo {
  max-height: 58px;
  width: auto;
}

.brand-text h1 {
  font-size: 46px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 1px;
  color: #ffffff;
}

.brand-text p {
  font-size: 20px;
  color: #ffffff;
  margin-top: 8px;
}

.top-icons-left a {
  color: #ffffff;
  font-size: 22px;
  text-decoration: none;
}

.custom-nav-links {
  width: 100%;
  justify-content: center;
}

.custom-navbar .nav-link {
  color: #222222;
  font-size: 18px;
  padding: 14px 16px;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #b00000;
  font-weight: 600;
}

/* Dropdown de usuario */
.top-icons-right {
  position: relative;
  z-index: 6000;
}

.top-icons-right .dropdown {
  position: relative;
  display: inline-block;
  z-index: 6000;
}

.user-icon-btn,
.top-icons-right .dropdown-toggle {
  width: 46px;
  height: 46px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  background: transparent;
  color: #ffffff;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.user-icon-btn::after,
.top-icons-right .dropdown-toggle::after {
  display: none !important;
}

.user-icon-btn:hover,
.user-icon-btn:focus,
.top-icons-right .dropdown-toggle:hover,
.top-icons-right .dropdown-toggle:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  box-shadow: none;
}

.top-icons-right .dropdown-menu {
  min-width: 250px;
  border: none;
  border-radius: 8px;
  padding: 10px 0px;
  margin-top: 10px !important;
  box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.22);
  z-index: 7000 !important;
}

.top-icons-right .dropdown-item {
  font-size: 22px;
  color: #111111;
  padding: 14px 24px;
}

.top-icons-right .dropdown-item:hover {
  background-color: #f2f2f2;
  color: #111111;
}

/* =========================================================
   MODALES SOBRE HEADER/NAV
========================================================= */
.modal {
  z-index: 5000 !important;
}

.modal-backdrop {
  z-index: 4990 !important;
}

.modal-dialog {
  margin-top: 40px;
}

.modal-content {
  border-radius: 8px;
  border: none;
  overflow: hidden;
}

.modal-header {
  padding: 20px 26px;
}

.modal-title {
  font-size: 22px;
  font-weight: 500;
}

.modal-body {
  padding: 28px;
}

.modal .form-control {
  height: 58px;
  font-size: 18px;
}

.modal .btn {
  height: 48px;
  font-size: 18px;
  font-weight: 500;
}

.btn-close {
  transform: scale(1.2);
}

/* =========================================================
   RESPONSIVE HEADER/NAV/MODALES
========================================================= */
@media (max-width: 1199px) {
  .header-row {
    min-height: 96px;
  }

  .top-icons-left a,
  .top-icons-right a {
    font-size: 20px;
  }

  .brand-logo {
    width: 24px;
  }

  .brand-text h1 {
    font-size: 28px;
  }

  .brand-text p {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .custom-navbar {
    min-height: 42px;
  }

  .custom-nav-links .nav-link {
    font-size: 16px;
    margin-right: 8px;
    padding: 9px 8px;
  }
}

@media (max-width: 991px) {
  .header-row {
    min-height: 88px;
  }

  .top-icons-left a,
  .top-icons-right a {
    font-size: 18px;
  }

  .brand-logo {
    width: 22px;
  }

  .brand-text h1 {
    font-size: 24px;
  }

  .brand-text p {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .custom-navbar {
    min-height: 48px;
  }

  .custom-nav-links .nav-link {
    font-size: 16px;
    padding: 12px 8px;
    margin-right: 0px;
  }

  .nav-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .modal-dialog {
    margin-top: 28px;
  }
}

@media (max-width: 767px) {
  .header-row {
    min-height: 74px;
  }

  .top-icons-left a,
  .top-icons-right a {
    font-size: 16px;
  }

  .brand-wrapper {
    gap: 8px;
  }

  .brand-logo {
    width: 18px;
  }

  .brand-text h1 {
    font-size: 18px;
  }

  .brand-text p {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .custom-navbar {
    min-height: 44px;
  }

  .custom-nav-links .nav-link {
    font-size: 15px;
    padding: 10px 6px;
    line-height: 1.2;
  }

  .modal-dialog {
    margin: 20px;
  }

  .modal-body {
    padding: 22px;
  }

  .modal .form-control {
    height: 52px;
    font-size: 16px;
  }

  .modal .btn {
    height: 46px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .header-row {
    min-height: 68px;
  }

  .top-icons-left {
    gap: 6px;
  }

  .top-icons-left a,
  .top-icons-right a {
    font-size: 14px;
  }

  .brand-logo {
    width: 16px;
  }

  .brand-text h1 {
    font-size: 15px;
  }

  .brand-text p {
    font-size: 7px;
    letter-spacing: 1px;
  }

  .custom-navbar {
    min-height: 42px;
  }

  .nav-container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
/* =========================================================
   BOTÓN WHATSAPP COMPARTIDO
========================================================= */
.whatsapp-btn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.25);
  z-index: 1300;
}

.whatsapp-btn:hover {
  color: #ffffff;
  transform: scale(1.05);
}

/* =========================================================
   TITULOS GENERALES
========================================================= */
.section-title-center {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #111111;
  margin-top: 0;
  margin-bottom: 28px;
  line-height: 1.1;
}

/* =========================================================
   HOME
========================================================= */
.page-content-home {
  height: calc(100vh - 154px);
}

.home-slider-section {
  height: 100%;
  background-color: #dcdcdc;
}

#carouselInmobiliaria {
  height: 100%;
}

#carouselInmobiliaria .carousel-inner,
#carouselInmobiliaria .carousel-item {
  height: 100%;
}

.home-slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.custom-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(60, 60, 60, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0px 4px;
  border: none;
}

/* =========================================================
   OPORTUNIDADES
========================================================= */
.oportunidades-section {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 12px;
  background-color: #ececec;
}

.oportunidades-box {
  width: calc(100vw - 24px);
  max-width: 1700px;
  min-height: 100%;
  margin: 0 auto;
  background-color: #f4f4f4;
  padding: 40px;
  box-shadow: 0px 8px 22px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  border-radius: 20px;
}

.oportunidades-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #1b1b1b;
  margin-top: 0;
  margin-bottom: 18px;
}

#oportunidadesCarousel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#oportunidadesCarousel .carousel-inner {
  flex: 1;
  display: flex;
  align-items: center;
}

#oportunidadesCarousel .carousel-item {
  width: 100%;
}

.cards-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  padding-left: 46px;
  padding-right: 46px;
}

.property-card {
  width: 100%;
  max-width: 420px;
  min-height: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 15px;
  box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.18);
}

.property-image-wrap {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, #b00000, #d9d9d9);
  flex-shrink: 0;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 46px;
}

.property-tags {
  position: absolute;
  left: 14px;
  top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 700;
  border-radius: 30px;
}

.tag-red {
  background-color: #b00000;
}

.tag-dark {
  background-color: #6b0000;
}

.property-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.property-name {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
  min-height: 75px;
  line-height: 1.25;
}

.property-small-price {
  font-size: 25px;
  font-weight: 800;
  color: #b00000;
  margin-bottom: 12px;
}

.property-price {
  font-size: 25px;
  line-height: 1.15;
  font-weight: 800;
  color: #b00000;
  margin-bottom: 12px;
}

.property-price-old {
  font-size: 12px;
  color: #969696;
  text-decoration: line-through;
  margin-bottom: 12px;
}

.property-meta {
  color: #555555;
  font-size: 14px;
  margin-bottom: 12px;
}

.property-admin-edit {
  color: #666666;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.index-view-mount {
  width: 100%;
}

.page-content-home .index-view-mount {
  margin-bottom: 64px;
}

.index-view-frame {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.property-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid #eeeeee;
  padding-top: 14px;
}

.property-actions::before {
  content: "ROJAS AUBONE";
  font-weight: 700;
  font-size: 14px;
  color: #444444;
}

.property-icon-btn {
  width: auto;
  height: auto;
  border: 0;
  color: #b00000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  background-color: #ffffff;
}

.property-icon-btn:hover {
  color: #8f0000;
}

.oportunidades-control-prev,
.oportunidades-control-next {
  width: 64px;
  opacity: 1;
}

.oportunidades-control-prev {
  left: -12px;
}

.oportunidades-control-next {
  right: -12px;
}

.oportunidades-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(120, 120, 120, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
}

.oportunidades-indicators {
  bottom: -28px;
  margin-bottom: 0;
}

.oportunidades-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: #1f1f1f;
  opacity: 0.35;
  margin: 0px 4px;
}

.oportunidades-indicators .active {
  opacity: 1;
}

.oportunidades-empty {
  width: 100%;
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  color: #666666;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* =========================================================
   SERVICIOS
========================================================= */
.services-section {
  flex: 1;
  background-color: #ececec;
  padding: 22px 0px 34px 0px;
}

.services-container {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding-left: 54px;
  padding-right: 54px;
}

.services-title {
  width: 100%;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #111111;
  margin-top: 6px;
  margin-bottom: 26px;
  line-height: 1.1;
}

.service-block {
  width: 100%;
  margin-bottom: 56px;
}

.service-row {
  min-height: 250px;
}

.service-text {
  max-width: 760px;
  padding-left: 24px;
  padding-right: 30px;
}

.service-text h3 {
  font-size: 31px;
  font-weight: 700;
  color: #111111;
  margin-top: 0;
  margin-bottom: 22px;
  line-height: 1.1;
}

.service-text p {
  font-size: 18px;
  line-height: 1.45;
  color: #171717;
  margin-bottom: 12px;
}

.service-btn {
  display: inline-block;
  background-color: #c63c46;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 2px;
  border: none;
  transition: background-color 0.2s ease;
  margin-top: 4px;
}

.service-btn:hover {
  background-color: #b53039;
  color: #ffffff;
}

.service-image-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-right: 20px;
}

.service-image {
  width: 100%;
  max-width: 790px;
  height: auto;
}

/* =========================================================
   EQUIPO
========================================================= */
.team-section {
  padding: 24px 0px 34px 0px;
  background-color: #ececec;
}

.team-container {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

.team-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #111111;
  margin-top: 0;
  margin-bottom: 34px;
  line-height: 1.1;
}

.team-gridEstela {
  display:flex;
  aling-items: center;
  
  gap: 44px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.team-cardEstela{
  min-height: 430px;
  padding: 44px 34px;
  
  display: flex;
  align-items: center;
  gap: 34px;
}

.team-card
{
  min-height: 430px;
  padding: 44px 34px;
  
  display: flex;
  align-items: center;
  gap: 34px;
}

.team-desc{
pading-right: 34px;

}
.team-card-red {
  background-color: #bf2f3e;
}

.team-card-gray {
  background-color: #9da2a2;
}

.team-photo-wrap {
  width: 220px;
  min-width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #d8d8d8;
  flex-shrink: 0;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-info {
  flex: 1;
}

.team-name {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 26px;
  line-height: 1.1;
}

.team-desc {
  font-size: 18px;
  line-height: 1.65;
  color: #ffffff;
  margin: 0;
}

.btn-whatsapp-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  border: none;
  border-radius: 6px;
  padding: 14px 20px;
  background: #25d366;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-whatsapp-contact:hover {
  background: #1ebe5d;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-whatsapp-contact i {
  font-size: 20px;
}

/* =========================================================
   REDES
========================================================= */
.social-section {
  width: 100%;
  background-color: #ececec;
  padding: 70px 20px 90px 20px;
}

.social-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.social-title {
  font-size: 30px;
  font-weight: 700;
  color: #111111;
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.2;
}

.social-subtitle {
  font-size: 18px;
  color: #111111;
  margin-top: 0;
  margin-bottom: 28px;
  line-height: 1.4;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.social-circle {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: #c63c46;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-circle:hover {
  background-color: #b53039;
  color: #ffffff;
  transform: scale(1.06);
}

/* =========================================================
   CONTACTO / FOOTER
========================================================= */
.contact-footer-section {
  width: 100%;
  background-color: #a7adad;
  padding: 0;
  margin-top: 0;
}

.contact-footer-container {
  width: 100%;
  margin: 0 auto;
}

.contact-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
}

.contact-map-box {
  min-height: 760px;
  background-color: #d8d8d8;
}

.contact-map-box iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-info-box {
  padding: 40px 54px;
  color: #ffffff;
}

.contact-social-block {
  margin-bottom: 38px;
}

.contact-social-block .social-title {
  color: #ffffff;
  margin-bottom: 10px;
}

.contact-social-block .social-subtitle {
  color: #ffffff;
  margin-bottom: 18px;
}

.contact-social-block .social-icons {
  justify-content: flex-start;
  gap: 18px;
}

.contact-title {
  font-size: 58px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.1;
}

.contact-subtitle {
  font-size: 18px;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 28px;
  line-height: 1.4;
}

.contact-form {
  width: 100%;
}

.contact-form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-input {
  width: 100%;
  height: 64px;
  border: none;
  outline: none;
  background-color: #ffffff;
  color: #6e6e6e;
  font-size: 18px;
  padding: 0px 18px;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-subject-input {
  margin-bottom: 14px;
}

.contact-textarea {
  width: 100%;
  height: 210px;
  border: none;
  outline: none;
  resize: none;
  background-color: #ffffff;
  color: #6e6e6e;
  font-size: 18px;
  padding: 18px;
  margin-bottom: 18px;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 26px;
  cursor: pointer;
}

.contact-checkbox {
  margin-top: 5px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.contact-checkbox-row span {
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
}

.contact-checkbox-row a {
  color: #ffffff;
  text-decoration: underline;
}

.contact-btn {
  display: inline-block;
  background-color: #c63c46;
  color: #ffffff;
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 26px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 42px;
}

.contact-btn:hover {
  background-color: #b53039;
}

.contact-btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.contact-form-status {
  min-height: 24px;
  margin: -26px 0 34px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.contact-form-status.is-success {
  color: #ffffff;
}

.contact-form-status.is-error {
  color: #ffe1e1;
}

.contact-location-title {
  font-size: 38px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 20px;
}

.contact-location-text {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 16px;
}

.contact-location-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 14px;
}

.contact-location-line i {
  font-size: 20px;
  color: #c63c46;
}

/* =========================================================
   LOGIN / CUENTA
========================================================= */
.user-menu-wrapper {
  position: absolute;
  top: 58px;
  right: 42px;
  z-index: 1300;
}

.user-icon-btn {
  width: 34px;
  height: 34px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  background-color: #a50000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding: 0;
}

.user-icon-btn:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.user-dropdown-menu {
  min-width: 200px;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.18);
}

.user-dropdown-menu .dropdown-item {
  font-size: 18px;
  color: #202020;
  padding: 12px 20px;
}

.user-dropdown-menu .dropdown-item:hover {
  background-color: #f3f3f3;
}

.auth-modal-content {
  border: none;
  border-radius: 6px;
  background-color: #f2f2f2;
}

.auth-modal-header {
  padding: 22px 28px;
  border-bottom: 1px solid #d7d7d7;
}

.auth-modal-title {
  font-size: 28px;
  font-weight: 400;
  color: #3a3a3a;
  margin: 0;
}

.auth-close-btn {
  font-size: 18px;
}

.auth-modal-body {
  padding: 28px;
}

.auth-field-group {
  margin-bottom: 18px;
}

.auth-label {
  display: block;
  font-size: 17px;
  color: #3a3a3a;
  margin-bottom: 8px;
}

.auth-input {
  width: 100%;
  height: 48px;
  border: 1px solid #c8cdd2;
  background-color: #f7f7f7;
  padding: 0px 14px;
  font-size: 16px;
  color: #4c4c4c;
  border-radius: 4px;
}

.auth-input::placeholder {
  color: #7b838b;
}

.auth-password-wrap {
  position: relative;
}

.auth-input-password {
  padding-right: 48px;
}

.password-toggle-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #b7b7b7;
  font-size: 22px;
  padding: 0;
}

.auth-main-btn {
  width: 100%;
  height: 48px;
  border: 1px solid #9ea4a8;
  background-color: #f7f7f7;
  color: #9aa1a4;
  font-size: 18px;
  margin-top: 18px;
  margin-bottom: 14px;
  border-radius: 4px;
}

.auth-link-row {
  text-align: center;
  margin-bottom: 20px;
}

.auth-muted-link {
  color: #98a0a4;
  font-size: 17px;
}

.auth-social-btn {
  width: 100%;
  height: 46px;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 14px;
}

.auth-facebook-btn {
  background-color: #4663a8;
}

.auth-google-btn {
  background-color: #e2523b;
}

.auth-bottom-text {
  text-align: center;
  font-size: 17px;
  color: #3e3e3e;
  margin-top: 10px;
  margin-bottom: 0;
}

.auth-inline-btn {
  border: none;
  background: transparent;
  color: #9aa1a4;
  padding: 0;
  font-size: 17px;
}

.auth-register-main-btn {
  margin-top: 22px;
}

/* =========================================================
   RESPONSIVE GENERAL
========================================================= */
@media (max-width: 1599px) {
  .services-container {
    padding-left: 44px;
    padding-right: 44px;
  }

  .service-text {
    max-width: 700px;
    padding-left: 14px;
    padding-right: 22px;
  }

  .service-text h3 {
    font-size: 28px;
  }

  .service-text p {
    font-size: 17px;
  }

  .service-image {
    max-width: 730px;
  }

  .team-container {
    padding-left: 38px;
    padding-right: 38px;
  }

  .team-grid {
    gap: 34px;
  }

  .team-card {
    min-height: 390px;
    padding: 34px 26px;
    gap: 28px;
  }

  .team-photo-wrap {
    width: 190px;
    min-width: 190px;
    height: 190px;
  }

  .team-name {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .team-desc {
    font-size: 16px;
    line-height: 1.55;
  }
}

@media (max-width: 1399px) {
  .oportunidades-box {
    width: calc(100vw - 20px);
    max-width: 1500px;
  }

  .property-card {
    max-width: 360px;
    min-height: 350px;
  }

  .property-image-wrap {
    height: 200px;
  }

  .property-price {
    font-size: 30px;
  }

  .services-container {
    padding-left: 36px;
    padding-right: 36px;
  }

  .services-title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .service-block {
    margin-bottom: 48px;
  }

  .service-text {
    max-width: 650px;
    padding-left: 10px;
    padding-right: 18px;
  }

  .service-text h3 {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .service-text p {
    font-size: 16px;
  }

  .service-image {
    max-width: 680px;
  }

  .contact-footer-grid {
    min-height: 680px;
  }

  .contact-map-box {
    min-height: 680px;
  }

  .contact-info-box {
    padding: 34px;
  }

  .contact-title {
    font-size: 46px;
  }

  .contact-location-title {
    font-size: 32px;
  }
}

@media (max-width: 1199px) {
  .header-row {
    min-height: 96px;
  }

  .top-icons-left a,
  .top-icons-right a {
    font-size: 20px;
  }

  .brand-logo {
    width: 24px;
  }

  .brand-text h1 {
    font-size: 28px;
  }

  .brand-text p {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .custom-navbar {
    min-height: 42px;
  }

  .custom-nav-links .nav-link {
    font-size: 16px;
    margin-right: 8px;
    padding: 9px 8px;
  }

  .page-with-fixed-header {
    padding-top: 138px;
  }

  .page-content-home {
    height: calc(100vh - 138px);
  }

  .custom-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .oportunidades-section {
    padding: 10px;
  }

  .oportunidades-box {
    width: calc(100vw - 20px);
    padding: 14px 20px 38px 20px;
  }

  .cards-row {
    gap: 16px;
    padding-left: 34px;
    padding-right: 34px;
  }

  .property-card {
    max-width: 300px;
    min-height: 320px;
  }

  .property-image-wrap {
    height: 165px;
  }

  .property-price {
    font-size: 24px;
  }

  .services-section {
    padding: 18px 0px 28px 0px;
  }

  .services-container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .service-text {
    max-width: 100%;
    padding-left: 4px;
    padding-right: 10px;
  }

  .service-text h3 {
    font-size: 24px;
  }

  .service-text p {
    font-size: 15px;
    line-height: 1.42;
  }

  .service-image-box {
    padding-right: 0;
  }

  .service-image {
    max-width: 620px;
  }

  .team-container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .team-title {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .team-grid {
    gap: 28px;
  }

  .team-card {
    min-height: 350px;
    padding: 26px 20px;
    gap: 22px;
  }

  .team-photo-wrap {
    width: 160px;
    min-width: 160px;
    height: 160px;
  }

  .team-name {
    font-size: 22px;
  }

  .team-desc {
    font-size: 15px;
    line-height: 1.5;
  }

  .social-section {
    padding: 56px 20px 70px 20px;
  }

  .social-title {
    font-size: 26px;
  }

  .social-subtitle {
    font-size: 17px;
    margin-bottom: 24px;
  }

  .social-icons {
    gap: 36px;
  }

  .social-circle {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }

  .contact-footer-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-map-box {
    min-height: 460px;
  }

  .contact-info-box {
    padding: 30px 28px 34px 28px;
  }

  .contact-title {
    font-size: 42px;
  }

  .contact-subtitle {
    font-size: 17px;
  }

  .contact-location-title {
    font-size: 30px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .header-row {
    min-height: 88px;
  }

  .top-icons-left a,
  .top-icons-right a {
    font-size: 18px;
  }

  .brand-logo {
    width: 22px;
  }

  .brand-text h1 {
    font-size: 24px;
  }

  .brand-text p {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .custom-navbar {
    min-height: 48px;
  }

  .custom-nav-links .nav-link {
    font-size: 16px;
    padding: 12px 8px;
    margin-right: 0;
  }

  .nav-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-with-fixed-header {
    padding-top: 136px;
  }

  .page-content-home {
    height: calc(100vh - 136px);
  }

  .custom-arrow {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
  }

  .oportunidades-box {
    width: calc(100vw - 16px);
    padding: 14px 10px 34px 10px;
  }

  .oportunidades-title {
    font-size: 24px;
  }

  .cards-row {
    gap: 10px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .property-card {
    max-width: 240px;
    min-height: 280px;
  }

  .property-image-wrap {
    height: 130px;
  }

  .property-name {
    font-size: 11px;
  }

  .property-small-price {
    font-size: 12px;
  }

  .property-price {
    font-size: 20px;
  }

  .oportunidades-arrow {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .services-section {
    padding: 16px 0px 24px 0px;
  }

  .services-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .services-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .service-block {
    margin-bottom: 34px;
  }

  .service-row {
    min-height: auto;
  }

  .service-text h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .service-text p {
    font-size: 14px;
    margin-bottom: 11px;
  }

  .service-btn {
    font-size: 14px;
    padding: 8px 14px;
  }

  .service-image {
    max-width: 100%;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .team-card {
    min-height: auto;
  }

  .team-photo-wrap {
    width: 150px;
    min-width: 150px;
    height: 150px;
  }

  .team-name {
    font-size: 21px;
    margin-bottom: 14px;
  }

  .team-desc {
    font-size: 15px;
  }

  .social-title {
    font-size: 26px;
  }

  .user-menu-wrapper {
    right: 20px;
    top: 54px;
  }

  .auth-modal-header {
    padding: 18px 20px;
  }

  .auth-modal-title {
    font-size: 24px;
  }

  .auth-modal-body {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .header-row {
    min-height: 74px;
  }

  .top-icons-left a,
  .top-icons-right a {
    font-size: 16px;
  }

  .brand-wrapper {
    gap: 8px;
  }

  .brand-logo {
    width: 18px;
  }

  .brand-text h1 {
    font-size: 18px;
  }

  .brand-text p {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .custom-navbar {
    min-height: 44px;
  }

  .custom-nav-links .nav-link {
    font-size: 15px;
    padding: 10px 6px;
    line-height: 1.2;
  }

  .page-with-fixed-header {
    padding-top: 118px;
  }

  .page-content-home {
    height: calc(100vh - 118px);
  }

  .custom-arrow {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    margin: 0px 3px;
  }

  .oportunidades-section {
    padding: 8px 6px 24px 6px;
  }

  .oportunidades-box {
    width: calc(100vw - 12px);
    min-height: auto;
    padding: 12px 6px 30px 6px;
  }

  .oportunidades-title {
    font-size: 22px;
    margin-bottom: 14px;
  }

  #oportunidadesCarousel,
  #oportunidadesCarousel .carousel-inner {
    display: block;
  }

  .cards-row {
    display: block;
    padding-left: 30px;
    padding-right: 30px;
  }

  .property-card {
    max-width: 100%;
    min-height: auto;
    margin: 0 auto 14px auto;
  }

  .carousel-item .property-card:last-child {
    margin-bottom: 0;
  }

  .property-image-wrap {
    height: 220px;
  }

  .property-name {
    font-size: 13px;
    min-height: auto;
  }

  .property-small-price {
    font-size: 13px;
  }

  .property-price {
    font-size: 26px;
  }

  .oportunidades-control-prev,
  .oportunidades-control-next {
    width: 38px;
  }

  .oportunidades-control-prev {
    left: -6px;
  }

  .oportunidades-control-next {
    right: -6px;
  }

  .oportunidades-arrow {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .services-section {
    padding: 14px 0px 22px 0px;
  }

  .services-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .service-block {
    margin-bottom: 28px;
  }

  .service-text {
    padding-left: 0;
    padding-right: 0;
  }

  .service-text h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .service-text p {
    font-size: 14px;
    line-height: 1.4;
  }

  .service-btn {
    font-size: 14px;
    padding: 8px 13px;
  }

  .team-section {
    padding: 18px 0px 24px 0px;
  }

  .team-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .team-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .team-card {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
    gap: 18px;
  }

  .team-photo-wrap {
    width: 150px;
    min-width: 150px;
    height: 150px;
  }

  .team-name {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .team-desc {
    font-size: 14px;
    line-height: 1.45;
  }

  .social-section {
    padding: 44px 16px 58px 16px;
  }

  .social-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .social-subtitle {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .social-icons {
    gap: 24px;
  }

  .social-circle {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }

  .contact-map-box {
    min-height: 360px;
  }

  .contact-info-box {
    padding: 24px 16px 30px 16px;
  }

  .contact-title {
    font-size: 34px;
    margin-bottom: 8px;
  }

  .contact-subtitle {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .contact-form-row {
    flex-direction: column;
    gap: 12px;
  }

  .contact-input {
    height: 54px;
    font-size: 16px;
    padding: 0px 14px;
  }

  .contact-textarea {
    height: 170px;
    font-size: 16px;
    padding: 14px;
  }

  .contact-checkbox-row span {
    font-size: 14px;
  }

  .contact-btn {
    font-size: 16px;
    padding: 12px 20px;
    margin-bottom: 30px;
  }

  .contact-location-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .contact-location-text,
  .contact-location-line {
    font-size: 16px;
  }

  .user-menu-wrapper {
    right: 14px;
    top: 50px;
  }

  .user-icon-btn {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .user-dropdown-menu {
    min-width: 170px;
  }

  .user-dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 10px 16px;
  }

  .auth-modal-title {
    font-size: 22px;
  }

  .whatsapp-btn {
    width: 46px;
    height: 46px;
    font-size: 24px;
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 575px) {
  .header-row {
    min-height: 68px;
  }

  .top-icons-left {
    gap: 6px;
  }

  .top-icons-left a,
  .top-icons-right a {
    font-size: 14px;
  }

  .brand-logo {
    width: 16px;
  }

  .brand-text h1 {
    font-size: 15px;
  }

  .brand-text p {
    font-size: 7px;
    letter-spacing: 1px;
  }

  .custom-navbar {
    min-height: 42px;
  }

  .nav-container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .page-with-fixed-header {
    padding-top: 110px;
  }

  .page-content-home {
    height: calc(100vh - 110px);
  }

  .oportunidades-section {
    padding: 12px 6px 24px 6px;
  }

  .oportunidades-box {
    width: calc(100vw - 12px);
    padding: 10px 6px 28px 6px;
    box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.16);
  }

  .oportunidades-title {
    font-size: 18px;
  }

  .cards-row {
    padding-left: 26px;
    padding-right: 26px;
  }

  .property-image-wrap {
    height: 180px;
  }

  .property-price {
    font-size: 21px;
  }

  .oportunidades-arrow {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .oportunidades-indicators {
    bottom: -22px;
  }

  .services-section {
    padding: 12px 0px 18px 0px;
  }

  .services-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .services-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .service-block {
    margin-bottom: 24px;
  }

  .service-text h3 {
    font-size: 17px;
  }

  .service-text p {
    font-size: 13px;
  }

  .service-btn {
    font-size: 13px;
    padding: 7px 12px;
  }

  .team-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .team-title {
    font-size: 20px;
  }

  .team-card {
    padding: 18px 14px;
  }

  .team-photo-wrap {
    width: 130px;
    min-width: 130px;
    height: 130px;
  }

  .team-name {
    font-size: 18px;
  }

  .team-desc {
    font-size: 13px;
  }

  .social-section {
    padding: 36px 12px 50px 12px;
  }

  .social-title {
    font-size: 18px;
  }

  .social-subtitle {
    font-size: 14px;
  }

  .social-icons {
    gap: 18px;
  }

  .social-circle {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .contact-map-box {
    min-height: 300px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-subtitle {
    font-size: 14px;
  }

  .contact-input,
  .contact-textarea {
    font-size: 15px;
  }

  .contact-location-title {
    font-size: 24px;
  }

  .contact-location-text,
  .contact-location-line {
    font-size: 14px;
  }

  .auth-label,
  .auth-input,
  .auth-main-btn,
  .auth-social-btn,
  .auth-bottom-text,
  .auth-inline-btn,
  .auth-muted-link {
    font-size: 15px;
  }

  .whatsapp-btn {
    width: 44px;
    height: 44px;
    font-size: 22px;
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 420px) {
  .brand-text h1 {
    font-size: 11px;
  }

  .brand-text p {
    font-size: 6px;
    letter-spacing: 0px;
  }

  .oportunidades-box {
    width: calc(100vw - 12px);
  }

  .cards-row {
    padding-left: 22px;
    padding-right: 22px;
  }

  .property-image-wrap {
    height: 160px;
  }

  .property-price {
    font-size: 18px;
  }

  .services-title {
    font-size: 18px;
  }

  .service-text h3 {
    font-size: 16px;
  }

  .service-text p {
    font-size: 12px;
  }

  .team-title {
    font-size: 18px;
  }

  .team-photo-wrap {
    width: 118px;
    min-width: 118px;
    height: 118px;
  }

  .team-name {
    font-size: 16px;
  }

  .team-desc {
    font-size: 12px;
  }

  .contact-title {
    font-size: 24px;
  }

  .whatsapp-btn {
    width: 42px;
    height: 42px;
    font-size: 21px;
  }
}


.user-icon-btn{
  color:#ffffff;
  font-size:28px;
  text-decoration:none;
}

.user-dropdown{
  min-width:220px;
  border:none;
  border-radius:6px;
  box-shadow:0 6px 18px rgba(0,0,0,0.18);
}

.user-dropdown .dropdown-item{
  font-size:20px;
  padding:14px 18px;
  color:#030303;
}

.custom-modal{
  border:none;
  border-radius:8px;
}

.custom-modal .modal-header{
  padding:18px 24px;
}

.custom-modal .modal-body{
  padding:24px;
}

.custom-modal .form-control{
  height:50px;
  font-size:18px;
}


.top-icons-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  overflow: visible;
}

#welcomeMessage {
  white-space: nowrap;
  font-size: 16px;
}

.top-icons-right .dropdown-menu,
.user-dropdown-menu {
  right: 0 !important;
  left: auto !important;
  transform: none !important;
  max-width: 260px;
  white-space: normal;
}

/* =========================================================
   CATÁLOGO DINÁMICO
========================================================= */

.catalogo-section {
  background-color: #ececec;
  padding: 35px 20px;
}

.catalogo-container {
  max-width: 1500px;
  margin: 0 auto;
}

.catalogo-title {
  font-size: 34px;
  font-weight: 700;
  color: #8d0000;
  margin-bottom: 25px;
}

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.catalogo-grid .property-card {
  max-width: none;
}

.property-detail-btn {
  margin-top: 12px;
  display: inline-block;
  background-color: #8d0000;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
}

.property-detail-btn:hover {
  background-color: #6f0000;
  color: white;
}

.catalogo-empty,
.catalogo-loading {
  grid-column: 1 / -1;
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 10px;
  color: #666;
}

@media (max-width: 992px) {
  .catalogo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .catalogo-grid {
    grid-template-columns: 1fr;
  }
}
