:root {
  --primary99: #fef8ee;
  --primary95: #fdeed7;
  --primary90: #f9d9af;
  --primary80: #f5be7c;
  --primary70: #f09947;
  --primary60: #ec7c23;
  --primary50: #dd6219;
  --primary40: #b84a16;
  --primary30: #923c1a;
  --primary20: #763318;
  --primary10: #40180a;
  --textColor-default: #0b0b0b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "IBM Plex Sans", serif;
  background: var(--primary99);
}

h1,
h2 {
  font-family: "IBM Plex Serif", serif;
  font-size: 60px;
  font-weight: 600;
  color: var(--primary20);
  line-height: 65px;
}

h3 {
  font-family: "IBM Plex Serif", serif;
  font-size: 43px;
  font-weight: 500;
  line-height: 47px;
  color: var(--primary20);
}

h4 {
  color: var(--primary10);
  font-family: "IBM Plex Sans", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.24px;
}

h5 {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary10);
}

h6 {
  color: var(--primary20);
  font-family: "IBM Plex Sans", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

p {
  color: var(--primary10);
}

span {
  color: var(--primary50);
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  width: 100%;
  height: 96px;
  background: var(--primary99);
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid var(--primary90);
}

.logo-icon:hover path {
  fill: var(--primary20);
}

.primary-button {
  color: var(--primary99);
  font-family: "IBM Plex Sans", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.5px;
  background: var(--primary60);
  border: none;
  border-radius: 12px;
  width: 359px;
  height: 56px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.primary-button:hover {
  background: var(--primary70);
}

.primary-button:active {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1) inset;
}

.primary-button:disabled {
  color: var(--primary95);
  background: var(--primary80);
}

.secondary-button {
  color: var(--primary50);
  font-family: "IBM Plex Sans", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.5px;
  background: var(--primary99);
  border-radius: 12px;
  width: 359px;
  height: 56px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--primary50);
}

.secondary-button:hover {
  background: var(--primary95);
}

.secondary-button:active {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1) inset;
}

.secondary-button:disabled {
  color: var(--primary99);
  background: var(--primary80);
}

.btn-medium {
  width: 311px;
}

.btn-small {
  font-size: 13px;
  font-weight: 500;
  width: 150px;
  height: 40px;
  border-radius: 32px;
}

.btn-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--primary90);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.add-btn {
  transform: rotate(45deg);
}

.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  padding-inline: 83px;
}

.nav-items {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 83px;
}

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
  color: var(--primary10);
  font-size: 16px;
}

.buy-link {
  cursor: pointer;
}

.nav-links li {
  transition: color 0.3s ease-in-out;
}

.nav-links li:hover {
  color: #dd6219;
}

.nav-links li a.active {
  font-weight: 500;
}

.nav-buttons {
  display: flex;
  gap: 16px;
}

.user-container {
  display: none;
  gap: 36px;
  align-items: center;
}

.user-info{
    display: flex;
    gap: 10px;
    align-items: center;
}

.user-verified {
  font-size: 12px;
  color: white;
  background: var(--primary50);
  padding-inline: 10px;
  border-radius: 32px;
}

.user-name {
  font-weight: 500;
  line-height: normal;
  letter-spacing: normal;
}

.notification-container {
  position: relative;
  cursor: pointer;
}

.notification-dropdown {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  background: var(--primary99);
  border-radius: 16px;
  width: 410px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  overflow: hidden;
}

.notification-dropdown.active {
  display: block;
}

#notif-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.unread {
  background-color: var(--primary95);
}

.fill-screen {
  height: 100vh;
}



.notification-item {
    margin-top: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
    border-bottom: 2px solid var(--primary95);
}

.notification-item:last-child {
  border-bottom: none;
}

.notif-title {
  font-weight: 600;
}

.notif-description {
  font-weight: 400;
}

.notif-description-span {
  font-weight: 500;
  color: var(--primary10);
}

.view-btn {
  background: var(--primary99);
  color: var(--primary50);
  border: 1px solid var(--primary50);
  padding: 12px 16px;
  width: 100px;
  cursor: pointer;
  border-radius: 32px;
}
.view-btn:hover {
  background-color: var(--primary50);
  color: var(--primary99);
}


.loading-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    /* Estilo para cubrir toda la pantalla */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 238, 215, 0.9);
    /* Efecto de desenfoque */
    backdrop-filter: blur(1px);
    z-index: 9999; /* Asegurarse de que esté por encima de otros elementos */
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary95);
    border-top: 4px solid var(--primary60);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    font-family: "IBM Plex Sans", serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--textColor-default);
    text-align: center;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.section1 {
  width: 100%;
  height: 838px;
  background: linear-gradient(to bottom, var(--primary95), var(--primary99) 50%);
  display: flex;
  position: relative;
}

.container-testimonial {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 88px;
  width: 270px;
  height: 285px;
  background-color: var(--primary99);
  border-radius: 8px;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.1));
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-profile {
  display: flex;
  gap: 20px;
}

.profile-img {
  width: 64px;
  height: 64px;
  background-color: var(--primary90);
  border-radius: 50%;
}

.profile-data {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.profile-data-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1%;
  color: var(--primary10);
}

.profile-data-type {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -1%;
  color: #000929;
  opacity: 50%;
}

.profile-data-footer {
  display: flex;
  align-items: end;
  gap: 5px;
}

.profile-data-footer-p {
  font-size: 12px;
  font-weight: 300;
  line-height: 80%;
  letter-spacing: 0.5%;
  color: #000929;
  opacity: 50%;
}

.testimonial {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.testimonial-p {
  font-size: 12px;
  letter-spacing: -1%;
  line-height: 160%;
  color: var(--primary10);
  width: 170px;
  height: 60px;
}

.testimonial-separator {
  height: 1px;
  background: var(--primary90);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-footer-p {
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1%;
  color: var(--primary10);
}
.testimonial-footer-span {
  font-size: 10px;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: -1%;
  color: var(--primary10);
  opacity: 50%;
}

.container-head {
  width: 53%;
  display: flex;
  flex-direction: column;
  gap: 65px;
  padding: 88px 0 0 160px;
  z-index: 10;
}

.headline-container {
  width: 587px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}



.custom-multiselect {
    position: relative;
    width: 100%;
    font-family: inherit;
    user-select: none;
}

.custom-multiselect-selected {
    border: 1px solid #b9652c;
    padding: 7px 12px;
    background: #fff;
    border-radius: 5px;
    min-height: 38px;
    cursor: pointer;
    color: #333;
    box-sizing: border-box;
    position: relative;
    padding-right: 32px; /* espacio para la flecha */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    /* Flechita */
    .custom-multiselect-selected .dropdown-arrow {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        width: 16px;
        height: 16px;
        display: inline-block;
    }

.custom-multiselect:not(.open) .dropdown-arrow {
    background: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 6L8 10L12 6" stroke="%23b9652c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
}

.custom-multiselect.open .dropdown-arrow {
    background: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 10L8 6L12 10" stroke="%23b9652c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
}

.custom-multiselect-options {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    border: 1px solid #b9652c;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 8px #0002;
    max-height: 230px;
    overflow-y: auto;
    z-index: 100;
    margin-top: 2px;
 
}

.custom-multiselect.open .custom-multiselect-options {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
}

.custom-multiselect-options label {
    display: contents;
    font-size: 16px;
}

.custom-multiselect-options input[type="checkbox"] {
    margin: 0 0 0 20px;
    accent-color: #b9652c;
    justify-self: center;
}

.custom-multiselect-options label span,
.custom-multiselect-options label input[type="checkbox"] + * {
    justify-self: start;
}

.custom-multiselect-options label:hover,
.custom-multiselect-options input[type="checkbox"]:hover {
    background: #f8efe6;
}

#mapa {
    height: 400px;
    width: 100%;
    min-height: 300px;
}

.frame866 {
  width: 771px;
  position: relative;
}

.frame866-tabs {
  display: inline-flex;
  border-bottom: 1px solid var(--primary90);
}

.frame866-tabs-buttons {
  font-family: "IBM Plex Sans", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.5px;
  background: #ffffff;
  border: none;
  padding: 15px 25px;
}

.button-sell {
  color: var(--primary60);
  border-bottom: 3px solid var(--primary60);
  border-top-left-radius: 8px;
}

.button-buy {
  color: var(--primary10);
  border-top-right-radius: 8px;
}

.button-buy:hover {
  color: var(--primary99);
  background-color: var(--primary60);
}

.frame866-search {
  width: 100%;
  height: 104px;
  background: white;
  border-radius: 0 12px 8px 8px;
  box-shadow: -10px 10px 10px rgba(221, 98, 25, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
}

.frame866-search-location {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.frame866-search-location label {
  font-weight: 500;
  letter-spacing: 0.25px;
  color: #6d6d6d;
}

.frame866-search-input {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.search-icon {
  display: none;
}

.frame866-search-location input {
  width: 300px;
  border: none;
  outline: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  color: var(--primary60);
}

.frame866-search-location input::placeholder {
  color: var(--primary60);
}

.frame866-search-separator {
  position: absolute;
  left: 50%;
  top: 30%;
  bottom: 30%;
  width: 1px;
  background-color: var(--primary90);
  transform: translateX(-50%);
}

.frame866-search-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-numbers {
  display: flex;
  gap: 80px;
  width: 771px;
}

.number {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.number-text-title {
  font-family: "Plus Jakarta Sans", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -1%;
  color: var(--primary60);
}

.number-text-description {
  font-family: "Plus Jakarta Sans", serif;
  font-weight: 500;
  line-height: 150%;
  color: var(--primary10);
}

.section2 {
  width: 100%;
  background: var(--primary99);
  display: flex;
  padding: 65px 160px;
  justify-content: space-between;
}

.frame867 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.frame867-img-responsive {
  display: none;
  pointer-events: none;
}

.frame867-img {
  width: 50%;
  pointer-events: none;
}

.frame867-p {
  font-size: 20px;
  color: var(--primary10);
  margin-bottom: 20px;
}

.frame867-span {
  color: var(--primary10);
  font-weight: 500;
}

.section3 {
  width: 100%;
  height: 589px;
  background: var(--primary95);
  display: flex;
  padding: 40px 160px;
  justify-content: space-between;
}

.slider-container-video {
  width: 536px;
  height: 475px;
  background: var(--primary99);
  filter: drop-shadow(0px 6px 10px rgba(0, 0, 0, 0.03)) drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.03))
    drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.06));
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-video {
  width: 480px;
}

.section4 {
  width: 100%;
  background: var(--primary99);
  display: flex;
  flex-direction: column;
  padding: 65px 160px;
  gap: 80px;
}

.section5-buyer {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.section5-buyer-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--primary99);
  padding: 45px 0px;
  align-items: center;
  justify-content: center;
}

.section5-buyer-header h3 {
  color: var(--primary10);
}

.section5-buyer-header p {
  color: var(--primary10);
  font-size: 20px;
  opacity: 0.7;
}

.section5-buyer-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  background: var(--primary95);
  padding: 45px 170px;
  align-items: center;
}

.filter-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.filter-container-selects {
  display: flex;
  gap: 10px;
  background: var(--primary99);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--primary80);
}

.select-option {
  position: relative;
}

.select-option input[type="radio"] {
  display: none;
}

.select-option label {
  font-size: 18px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.09px;
  opacity: 0.5;
  display: block;
  padding: 10px 25px;
  background: var(--primary99);
  color: var(--primary10);
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  user-select: none;
}

.select-option label:hover {
  background: var(--primary70);
  color: var(--primary10);
  transition: background 0.3s, color 0.3s;
}

.select-option input[type="radio"]:checked + label {
  background: var(--primary40);
  color: var(--primary99);
  opacity: 1;
}

.filter-container-input {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--primary99);
  border: 1px solid var(--primary80);
  border-radius: 8px;
  padding: 10px 20px;
}

.filter-container-input input {
  outline: none;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.09px;
}

.filter-container-input input::placeholder {
  color: var(--primary40);
  opacity: 0.5;
}

.section5-buyer-grid-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(333px, 333px));
  gap: 34px;
  justify-items: space-between;
}

.card-lotes {
  height: 351px;
  width: 333px;
  background: var(--primary99);
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.06),
    0px 12px 20px 0px rgba(0, 0, 0, 0.08);
}

.card-lotes-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-lotes-icons {
  display: flex;
  gap: 10px;
}

.card-icon {
  background: var(--primary90);
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.card-lotes span {
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.5px;
}

.card-lotes-header span {
  color: var(--primary95);
  background: var(--primary40);
  padding: 8px;
  border-radius: 8px;
}

.card-lotes h3 {
  color: var(--primary30);
}

.card-lotes-title span {
  color: var(--primary30);
}

.card-lotes-price {
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: var(--primary40);
  display: flex;
  align-items: center;
}

.card-lotes-price span {
  color: var(--primary40);
}

.card-lotes-area {
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
  color: var(--primary40);
}

.card-lotes-area span {
  color: var(--primary40);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
}

.card-lotes-info {
  display: flex;
  align-items: center;
}

.card-lotes-info h5 {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.25px;
  color: var(--primary40);
}

.card-lotes-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-lotes-arrow {
  display: flex;
  width: 36px;
  height: 36px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: var(--primary40);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.section4-article1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section4-article2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rectangle32 {
  background: var(--primary95);
  border-radius: 35px;
  padding: 70px 48px;
}

.rectangle32-span {
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.5px;
  border: 1px solid var(--primary60);
  border-radius: 8px;
  padding: 8px;
}

.rectangle32-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 30px 0 90px 0;
}

.rectangle32-p {
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
  opacity: 0.7;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 45px 24px;
}

.container-benefit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 310px;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-text-p {
  font-weight: 400;
  line-height: 150%;
  color: var(--primary10);
}

.newsletter {
  width: 100%;
  background: var(--primary95);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 35px;
  text-align: center;
}

.newsletter h4 {
  color: var(--primary60);
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
}

.newsletter h3 {
  color: var(--primary10);
  font-family: "IBM Plex Sans", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 106%;
  letter-spacing: -0.38px;
}

.newsletter p {
  color: var(--primary20);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  margin: 16px 0 45px 0;
}

.newsletter-input-container {
  border: 1px solid var(--primary60);
  border-radius: 8px;
  padding: 20px 33px;
  margin-bottom: 24px;
  background: var(--primary99);
  display: flex;
  justify-content: space-between;
  width: 543px;
}

.newsletter-input {
  border: none;
  background: var(--primary99);
  font-family: "Plus Jakarta Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.09px;
  color: var(--primary60);
}

.newsletter-input::placeholder {
  color: var(--primary60);
  opacity: 1;
}

.newsletter-input:focus {
  outline: none;
  border: none;
}

/* ---------- ABOUT ---------- */

.about-section1 {
  width: 100%;
  height: 517px;
  background: linear-gradient(to bottom, var(--primary95), var(--primary99) 80%);
  display: flex;
  position: relative;
}

.about-headline {
  width: 100%;
  display: flex;
  padding: 35px 100px;
  align-items: flex-start;
  justify-content: space-between;
}

.headline-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.headline-text h5 {
  font-weight: 400;
  line-height: 160%;
}

.headline-text span {
  color: var(--primary10);
  font-weight: 500;
}

.about-section2 {
  width: 100%;
  background: var(--primary99);
  padding: 65px 100px;
  position: relative;
}

.about-section2 h3 {
  margin: 0 0 58px 60px;
}

.section2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(338px, 1fr));
  gap: 63px;
  justify-content: center;
  align-items: center;
  justify-items: center;
  margin-bottom: 74px;
}

.person-card {
  width: 338px;
  height: 436px;
  background: var(--primary99);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.06),
    0px 12px 20px 0px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.person-card-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 20px;
}

.person-card-data span {
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.person-card-data h5 {
  line-height: normal;
}

.person-card button {
  width: 150px;
  padding: 12px 16px;
  border-radius: 32px;
  border: 1px solid var(--primary50);
  background: transparent;
  color: var(--primary50);
  font-family: "IBM Plex Sans", serif;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
}

.person-card button:hover {
  background: var(--primary50);
  color: var(--primary95);
}

.section2-button-container {
  display: flex;
  justify-content: center;
}

/* ---------- BLOG ---------- */

.blog-section {
  width: 100%;
  background: linear-gradient(to bottom, var(--primary95), var(--primary99) 80%);
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 107px 143px;
  gap: 112px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: center;
  justify-items: center;
}

.blog-card {
  width: 345px;
  height: 551px;
  background: var(--primary99);
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.06),
    0px 12px 20px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.blog-card-img {
  width: 100%;
  height: 229px;
  padding: 2px 2px 0 2px;
}

.blog-card-img-container {
  background: var(--primary95);
  width: 100%;
  height: 229px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.blog-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card-content h3 {
  font-family: "IBM Plex Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  height: 75px;
  overflow: hidden;
}

.blog-card-footer {
  padding-inline: 30px;
  display: flex;
  justify-content: space-between;
}

.blog-card-footer span {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: var(--primary70);
}

.blog-card-footer a {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: var(--primary20);
}

.article-detail {
  width: 100%;
  background: linear-gradient(to bottom, var(--primary95), var(--primary99) 80%);
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 140px 240px;
  gap: 47px;
}

.buttons-article-mobile {
  display: none;
}

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-header-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.article-header-info #category {
  padding: 6px 12px;
  background: var(--primary60);
  border-radius: 6px;
  color: var(--primary99);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.article-header-info #author {
  color: var(--primary70);
  font-weight: 700;
  line-height: 150%;
}

.article-header-info #date {
  color: var(--primary70);
  font-weight: 500;
  line-height: 38px;
  padding-left: 24px;
}

.article-detail #img {
  height: 459px;
  overflow: hidden;
  border-radius: 32px;
}

.article-detail #img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-detail #content {
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
  color: var(--primary10);
}



/* ---------- CONTACT ---------- */

.contact-headline {
  width: 100%;
  background: linear-gradient(to bottom, var(--primary95), var(--primary99) 80%);
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 88px 160px 30px 160px;
  gap: 87px;
}

.contact-h2-mobile {
  display: none;
  font-family: "IBM Plex Sans";
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: var(--primary20);
}

.contact-headline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: center;
  justify-items: center;
}

.contact-card {
  width: 340px;
  height: 265px;
  border: 1px solid var(--primary60);
  background: var(--primary99);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.06),
    0px 12px 20px 0px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  padding-block: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  gap: 6px;
  cursor: pointer;
}

.contact-card.active {
  background: var(--primary95);
}

.contact-card h4 {
  color: var(--primary50);
}

.contact-card span {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
}

.contact-card button {
  width: 150px;
  padding: 12px 16px;
  border-radius: 32px;
  border: 1px solid var(--primary50);
  background: transparent;
  color: var(--primary50);
  font-family: "IBM Plex Sans", serif;
  font-weight: 500;
  cursor: pointer;
}

.contact-card button:hover {
  background: var(--primary50);
  color: var(--primary95);
}

.contact-card-checked {
  display: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--primary50);
  align-items: center;
  justify-content: center;
}

.contact-card-checked.active {
  background: var(--primary50);
}

/* ---------- QUESTIONS ---------- */

.questions-section {
  width: 100%;
  background: var(--primary99);
  padding: 65px 160px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.questions-container {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--primary95);
  border: 2px solid var(--primary80);
  border-radius: 8px;
  overflow: hidden;
  padding: 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.accordion-header {
  display: flex;
  cursor: pointer;
}

.accordion-button {
  width: 100%;
  border: none;
  background: var(--primary95);
  color: var(--primary50);
  text-align: left;
  font-size: 20px;
  font-family: "IBM Plex Sans", serif;
  font-weight: 500;
  outline: none;
  transition: background 0.3s;
  cursor: pointer;
}

.toggle-icon {
  display: none;
}

.accordion-content {
  display: none;
  overflow: hidden;
}

.accordion-content ul {
  list-style-type: disc !important;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-content ul li::marker {
  color: #dd6219;
  font-size: 1.2em;
}

.accordion-content p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary20);
  line-height: 120%;
}

/* ---------- FOOTER ---------- */

.container-footer {
  background: var(--primary10);
  width: 100%;
}

.footer-top {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 80px 170px;
  border-bottom: 1.5px solid #e8e6f9;
}

.container-grid-footer {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 88px 48px;
}

.nav-footer {
  display: flex;
  flex-direction: column;
}

.nav-footer-h5 {
  color: var(--primary95);
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.nav-footer-a {
  color: var(--primary95);
  font-size: 16px;
  font-weight: 400;
  line-height: 38px;
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  padding: 26px 160px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-p {
  color: var(--primary99);
  opacity: 0.5;
}

.footer-social {
  display: flex;
  gap: 40px;
}

.footer-social-a {
  opacity: 0.5;
}


/* Estilo para el necesitas ayuda numero de whatsapp*/

.help-whatsapp-fixed {
    position: fixed;
    right: 20px;
    bottom: 20px;
    color: #FEF8EE;
    border-radius: 16px;
    padding: 12px 18px 12px 12px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    min-width: 160px;
    font-family: inherit;
    transition: box-shadow 0.2s;
    justify-content: flex-end;
}
    .help-whatsapp-fixed .footer-icon {
        display: flex;
        align-items: center;
        background: #e67217;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
        transition: box-shadow 0.2s, background 0.2s;
    }

        .help-whatsapp-fixed .footer-icon:hover {
            background: var(--primary70);
        }

@media (max-width: 600px) {
    .help-whatsapp-fixed {
        right: 8px;
        bottom: 8px;
        max-width: 90vw;
        padding: 8px 10px 8px 8px;
    }


}

.recovery-pass-section {
    width: 100%;
    height: 100vw;
    background: linear-gradient(180deg, var(--primary95), var(--primary99) 100%);
    display: flex;
    position: relative;
    padding: 88px 160px 10px 160px;
    justify-content: space-between;
}





/* ---------- LOGIN & SIGNUP ---------- */

.login-section {
    width: 100%;
    background: linear-gradient(180deg, var(--primary95), var(--primary99) 100%);
    display: flex;
    position: relative;
    padding: 88px 160px 10px 160px;
    justify-content: space-between;
}

.login-left {
  width: 50%;
  overflow: hidden;
}

.signup-steps {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 200%;
}

.signup-step {
    width: 50%;
}


.signup-step.slide-left {
  transform: translateX(-100%);
}

.signup-step h5,
.login-left h5 {
  font-weight: 500;
  margin: 24px 0 50px 0;
}

.signup-step span,
.login-left span {
  color: var(--primary50);
}

.login-form,
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 424px;
}

.form-group label {
  color: var(--primary10);
}

.form-group a {
  color: var(--primary60);
  margin-left: auto;
}

.form-input-container {
  border: 1px solid var(--primary50);
  border-radius: 16px;
  padding: 18px 32px;
  background: var(--primary99);
  display: flex;
  justify-content: space-between;
}

.form-input-container input {
  border: none;
  background: var(--primary99);
  font-family: "IBM Plex Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--primary50);
  width: 100%;
}

.form-input-container input::placeholder {
  color: var(--primary20);
  opacity: 1;
}

.form-input-container input:focus {
  outline: none;
  border: none;
}

#email-check, #address-check, #name-check, #tel-check, #password-check, #password-repeat-check, #address-check-1, #address-check-2 {
  display: none;
}

.password,
.password-repeat {
  background: transparent;
}

.password input,
.password-repeat input {
  background: transparent;
  color: var(--primary60);
  font-weight: 500;
}

.password input::placeholder,
.password-repeat input::placeholder {
  color: var(--primary20);
}

.toggle-password,
.toggle-password-repeat {
  cursor: pointer;
}

.password .show,
.password-repeat .show {
  display: none;
}

.verification-form .form-group {
  margin-bottom: 72px;
}

.code-input-container {
  display: flex;
  gap: 14px;
}

.code-input {
  font-size: 36px;
  font-weight: 500;
  line-height: 42px;
  color: var(--primary10);
  font-family: "IBM Plex Sans";
  background: transparent;
  border: 1px solid var(--primary80);
  border-radius: 15px;
  width: 80px;
  height: 77px;
  text-align: center;
}

.code-input:focus {
  outline-color: var(--primary30);
}

.form-login-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 359px;
  margin-top: 20px;
  align-items: center;
}

.divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.divider-container span {
  color: var(--primary70);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

.divider-container span::before,
.divider-container span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  background-color: var(--primary80);
}

.divider-container span::before {
  left: -70px;
}

.divider-container span::after {
  right: -70px;
}

.form-login-buttons a {
  color: #000;
  font-family: "Inter", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  border-radius: 10px;
  background-color: var(--primary99);
  border: none;
  box-shadow: inset 0 0 0 1px var(--primary80);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 45px;
  width: 100%;
}

.form-login-buttons a:hover {
  background-color: var(--primary80);
}

.login-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-footer {
  display: flex;
  align-items: center;
  padding: 0 85px 40px 0;
  justify-content: end;
  gap: 23px;
}

.login-footer a {
  color: var(--primary60);
}

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary60);
}



/*Mobile para el login*/

@media (max-width: 1350px) {
    
}


/* Opicones de direcciones normalizadas en formulario de alta de lote */

.direccion-normalizada-list {
    border: 1px solid #F4CBA5;
    border-radius: 8px;
    background-color: #FFF9F2;
    padding: 0.75rem;
    margin-top: 0.5rem;
    max-width: 480px;
    max-height: 200px;
    overflow-y: auto;
    font-family: sans-serif;
    display: none;
}

.direccion-normalizada-item {
    padding: 6px 0;
    color: #8B3E00;
    cursor: pointer;
    border-bottom: 1px solid #F4CBA5;
}

.direccion-normalizada-item:last-child {
    border-bottom: none;
}

.direccion-normalizada-item:hover {
    background-color: #FCEBDD;
}

/* ---------- NOTIFICATIONS ---------- */

#notifications-container {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
}

.notification {
  margin-bottom: 10px;
  width: 395px;
  height: 104px;
  padding: 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 10px;
}

.notification.success {
  background-color: #E6FAF5;
  border: 1px solid #0C9;
}

.notification.error {
  background-color: #FDEEEE;
  border: 1px solid #EB5757;
}

.notification.warning {
  background-color: var(--primary99);
  border: 1px solid var(--primary60);
}

.notification-icon {
  width: 89px;
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-message {
  flex-grow: 1;
}

.notification-message h3 {
  font-family: "IBM Plex Sans";
font-size: 38px;
font-weight: 500;
line-height: 106%;
letter-spacing: -0.38px;
color: #2F3032;
}

.notification-message p {
  color: #2F3032;
font-family: "IBM Plex Sans";
font-size: 20px;
font-weight: 500;
line-height: normal;
margin-top: 12px;
}

/* ---------- SELLER ---------- */

.sell-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--primary95) 0%, var(--primary99) 100%);
}

.sell-main {
  flex: 1;
  padding: 100px 160px 0 160px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.progress-container {
  width: 100%;
  height: 4px;
  background: var(--primary90);
  border-radius: 10px;
}

.progress-bar {
  height: 100%;
  background: var(--primary60);
  width: 0;
  transition: width 0.3s ease;
  border-radius: 10px;
}

.form-container {
  height: auto;
  display: flex;
  position: relative;
  width: 100%;
}


#schedule-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #schedule-modal.hidden {
        display: none;
    }    

    #schedule-modal .modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.35);
        z-index: 0;
    }

    #schedule-modal .modal-content {
        position: relative;
        z-index: 1;
        background: #fdf7ee;
        border-radius: 16px;
        width: 95vw;
        max-width: 440px;
        min-height: 480px;
        max-height: 90vh;
        padding: 32px 24px 16px 24px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }

    #schedule-modal .modal-close {
        position: absolute;
        top: 20px;
        right: 24px;
        background: none;
        border: none;
        font-size: 2rem;
        color: #763318;
        cursor: pointer;
        z-index: 2;
    }

    #schedule-modal .step-sched {
        flex: 1 1 0%;
        display: none;
        flex-direction: column;
        height: 100%;
        min-height: 0;
    }

        #schedule-modal .step-sched.active {
            display: flex;
        }

    #schedule-modal .step-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #schedule-modal .modal-days,
    #schedule-modal .modal-times,
    #schedule-modal .form-group {
        width: 100%;
        margin-bottom: 16px;
    }

    #schedule-modal .form-group {
        gap: 20px !important;
    }

        #schedule-modal .modal-days {
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
        }

    #schedule-modal .days-wrapper {
        display: flex;
        gap: 10px;
    }

    #schedule-modal .day {
        background: #fff;
        border: 1px solid #763318;
        color: #763318;
        border-radius: 8px;
        padding: 8px 14px;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.15s, color 0.15s;
        margin-top: 20px;
    }

        #schedule-modal .day.active,
        #schedule-modal .day:focus {
            background: #763318;
            color: #fff;
        }
            #schedule-modal .day.active span,
            #schedule-modal .day:focus span {
                color: #fff;
            }

    #schedule-modal .days-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-bottom: 8px;
    }

    #schedule-modal .days-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ddd;
        display: inline-block;
        cursor: pointer;
    }

        #schedule-modal .days-dot.active {
            background: #763318;
        }


.modal-times {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1.5rem;
    max-height: 220px;
    overflow-y: auto;
    width: 100%;
    align-items: center;
    scrollbar-width: none; /* Oculta la barra en Firefox */
    margin-top: 30px;
}

    .modal-times::-webkit-scrollbar {
        display: none; /* Oculta la barra en Chrome/Safari */
    }

        #schedule-modal .time.active,
        #schedule-modal .time:focus {
            background: #763318;
            color: #fff;
        }

    #schedule-modal .form-group {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    #schedule-modal input[type="email"],
    #schedule-modal input[type="text"] {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    #schedule-modal .button-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: auto;
        width: 100%;
        align-items: center;
    }



@media (max-width: 600px) {
    #schedule-modal .modal-content {
        width: 98vw;
        min-width: unset;
        padding: 12px 2vw 8px 2vw;
        max-width: 100vw;
    }

    #schedule-modal .form-group {
        gap: 10px;
    }
}


.step {
  min-width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateX(100%);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.step.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  height: auto;
}

.step-head-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-head-text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
}

.container-inputs-address {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.container-input-address-add {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-address-add {
    display: flex;
    align-items: center;
    gap: 20px;
}

#additional-input-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sell-form-input {
  width: 470px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary95);
  gap: 20px;
}

.sell-form-input input {
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
  background: var(--primary95);
}

.container-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 470px;
}

.switch-add-span {
  color: var(--primary20);
  font-size: 18px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.09px;
  opacity: 0.75;
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.line-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  left: -30px;
  top: 30px;
}

.circle-line {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary70);
}

.line {
  width: 0.5px;
  height: 86px;
  background: var(--primary70);
  margin-left: 4px;
}

#first-line,
#second-line {
  display: none;
}

.slider-span {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary80);
  transition: 0.4s;
  border-radius: 34px;
}

.slider-span:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  border-radius: 50%;
  left: 2px;
  bottom: 2px;
  background-color: var(--primary99);
  transition: 0.4s;
}

.switch input:checked + .slider-span {
  background-color: var(--primary50);
}

.switch input:checked + .slider-span:before {
  transform: translateX(20px);
}

.add-remove-buttons {
  display: flex;
  gap: 10px;
}

.add-remove-buttons button {
  padding: 5px 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.add-remove-buttons button.delete {
  background-color: #f44336;
}

.button-group {
  display: flex;
  gap: 30px;
}

.checkboxs-container {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.checkboxs-container-grid {
  display: grid;
  gap: 17px;
}

.two-columns {
  grid-template-columns: 470px 470px;
  column-gap: 30px;
}

.checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--primary60);
  background: var(--primary95);
  height: 60px;
  width: 470px;
  border-radius: 12px;
  padding: 12px 32px;
  gap: 24px;
  color: var(--primary10);
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
}

.checkbox input {
  background-color: initial;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary60);
  border-radius: 3px;
}

.checkbox input:checked {
  background-color: var(--primary60);
}

.checkbox label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.checkbox input:checked + label::after {
  content: "✔";
  font-size: 20px;
  color: var(--primary99);
  position: absolute;
  left: -44px;
}

.checkboxs-m2-container {
  display: flex;
  gap: 27px;
}

.checkbox-m2 {
  position: relative;
  width: 224px;
  height: 229px;
  border: 2px solid var(--primary90);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.checkbox-m2 input[type="radio"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.checkbox-m2 label {
  font-family: "IBM Plex Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  color: var(--primary20);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.checkbox-m2 input[type="radio"]:checked + label {
  color: var(--primary40);
  background: var(--primary90);
}

.checkbox-m2 input[type="radio"]:checked + label path {
  fill: var(--primary40);
}

.sell-form-password {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sell-form-password h5 {
  color: var(--primary20);
}

.password-step {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.password-step a {
  color: var(--primary50);
}


.verifying-step {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 100%;
}

.verifying-step h2 {
  width: 50%;
}

.verifying-step-right {
  width: 50%;
}

.verifying-step-right img {
  width: 100%;
  height: 100%;
}

.ready-step {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.ready-step-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.ready-step-left-h2 {
  color: var(--primary70);
}

/* ---------- DASHBOARD ---------- */

.dashboard-main {
  display: flex;
  flex-direction: row;
}

.sidebar {
  width: 345px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 65px;
  padding: 62px 46px;
  background: var(--primary95);
  position: fixed;
}

.navbar-dashboard {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nav-links-dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
}

.nav-links-dashboard li {
  list-style: none;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: var(--primary10);
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 22px;
  cursor: pointer;
  position: relative;
}

#search-link {
  display: none;
}

.nav-links-dashboard li a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links-dashboard .active {
  background: var(--primary60);
  color: var(--primary99);
}

.active .color-svg-path {
  fill: var(--primary99);
}

.counter-container {
  display: none;
  align-items: center;
  justify-content: center;
  background: red;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 40px;
  top: 10px;
}

.counter {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: white;
}

.nav-links-dashboard-exit {
  margin-top: auto;
}

.dashboard-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 54px 42px;
  margin-left: 345px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-header-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-header-text h4 {
  font-size: 38px;
  font-weight: 500;
  line-height: 106%;
  letter-spacing: -0.38px;
  color: var(--primary20);
}

.dashboard-header-text h5 {
  color: var(--primary20);
}

.dashboard-header-right {
  display: flex;
  gap: 36px;
  align-items: center;
}

.dashboard-header-buttons {
  display: flex;
  gap: 10px;
}

.button-dashboard-header {
  width: 46px;
  height: 46px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  background: var(--primary90);
}

.divider-header-dashboard {
  width: 1px;
  height: 28px;
  background: #b6b6b6;
}

.home,
.activity,
#home-seller
{
  display: flex;
  flex-direction: column;
  gap: 43px;
}

.land-grid {
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 310px));
  gap: 26px;
}


.land-card {
  width: 310px;
  height: 260px;
  background: var(--primary95);
  border-radius: 35px;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.03);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.land-card h3 {
  font-family: "IBM Plex Sans";
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
  color: var(--primary50);
}

.land-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.land-card-header span {
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: var(--primary80);
}

.land-card-header .authorized {
  color: var(--primary60);
}

.land-card-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary90);
  margin-left: auto;
  cursor: pointer;
}

.land-card-buttons {
  width: 100%;
  display: flex;
  gap: 10px;
}

.land-card-buttons a,
.land-card-buttons button {
  width: 50%;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.1px;
  border-radius: 32px;
  height: 40px;
}

.land-card-buttons .btn-view-land {
  width: 100%;
}

.land-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.land-dropdown-btn {
    background: none;
    border: 1px solid #EC7C23;
    padding: 5px 10px;
    width: 100%;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.land-dropdown-menu {
    display: none;
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #EC7C23;
    border-radius: 5px;
    margin-top: 5px;
    list-style: none;
    padding: 0;
    z-index: 10;
}

.land-dropdown-menu.open {
    display: block;
}

.lote-item {
    padding: 8px;
    cursor: pointer;
}

.lote-item:hover {
    background: #F5BE7C;
}

.multi-lote-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #EC7C23;
}

.land-address-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 150px;
    overflow-y: auto;
    padding: 4px;
}

    .land-address-list.scrollable {
        scrollbar-width: thin;
    }

.land-address-item {
    padding: 4px;
    font-size: 16px;
    color: #5a2e13;
    cursor: pointer;
}

    .land-address-item:hover {
        text-decoration: underline;
    }

.multi-lote-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #ec7c23;
    font-weight: 500;
}

    .multi-lote-toggle:hover {
        background: rgba(255, 165, 0, 0.3);
    }

.icon-container {
    width: 26px; /* Define el tamaño del círculo */
    height: 26px;
    background-color: #EC7C23; /* Fondo naranja */
    border-radius: 50%; /* Hace el contenedor redondo */
    display: flex;
    justify-content: center;
    align-items: center;
}

    .icon-container img {
        width: 18px; /* Ajusta el tamaño de la imagen */
        height: 18px;
    }

.single-lote-view .land-address-list {
    display: none;
}

.address-panel {
    border: 1.5px solid #ec7c23;
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 16px;
    background: #fff;
}



.authorized-land {
  display: flex;
  gap: 16px;
  width: 310px;
  background: var(--primary95);
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--primary90);
}

.authorized-land svg {
  flex-shrink: 0;
}

.authorized-land p {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.25px;
  color: var(--primary20);
  margin-bottom: 16px;
}

.authorized-land span {
  font-weight: 700;
  color: var(--primary20);
  font-size: 16px;
}

.authorized-land a {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: var(--primary60);
}

.buttons-dashboard {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard-footer {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 23px;
}

.dashboard-footer span {
  color: var(--primary10);
  font-size: 18px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.09px;
}

.dashboard-footer a {
  color: var(--primary60);
}

.profile {
  display: none;
  flex-direction: column;
  margin-top: 62px;
}

.form-profile {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 356px;
}

.input-group {
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--primary80);
  border-radius: 8px;
  padding: 16px 12px;
}
.input-role label {
  color: var(--textColor-default);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1px;
  margin-bottom: 6px;
}
.input-group input,
.input-group select {
  border: none;
  outline: none;
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.25px;
  color: var(--primary20);
  background: transparent;
  width: 100%;
}

.input-group input::-webkit-calendar-picker-indicator {
  display: none;
}

#datePicker {
  cursor: pointer;
}

.input-phone {
  display: flex;
  gap: 10px;
  width: 100%;
}

.input-phone input {
  border: 1px solid var(--primary80);
  border-radius: 8px;
  padding: 16px 12px;
  outline: none;
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.25px;
  color: var(--primary20);
  background: transparent;
}

.phone-code {
  width: 115px;
}
.phone-number {
  width: 100%;
}

.select-role {
  background: var(--primary95);
}

.profile-container {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-placeholder {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  color: var(--primary99);
  background-color: var(--primary70);
  border-radius: 50%;
  display: none;
  font-size: 43px;
  font-weight: 500;
  line-height: 47px;
  font-family: "IBM Plex Serif";
}

.edit-btn-img {
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 10;
  background-color: var(--primary30);
  border: none;
  padding: 4px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.edit-btn-img:hover {
  background-color: var(--primary40);
}
#profileImage {
  display: none;
}

.form-profile .primary-button {
  margin-top: 50px;
}

#rtn-button-profile {
  margin-top: 16px;
}

.activity {
  display: none;
}

.ofers-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.fixed-notifications {
  width: 468px;
}

.search-container-dashboard {
  display: none;
  align-items: center;
  border: 1px solid var(--primary40);
  border-radius: 32px;
  padding: 16px;
  width: 335px;
  gap: 8px;
}

.search-container-dashboard input {
  border: none;
  outline: none;
  background: transparent;
  font-family: "IBM Plex Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--primary40);
}

.search-container-dashboard input::placeholder {
  color: var(--primary40);
}

#home-buyer {
  margin-top: 70px;
  width: 100%;
  display: none;
  gap: 30px;
}

.welcome-buyer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 50%;
}

.welcome-buyer h5 {
  color: var(--primary40);
}

.complete-reg-card {
  background: var(--primary90);
  width: 410px;
  height: 100%;
  padding: 14px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.complete-reg-card p {
  color: var(--primary20);
  font-weight: 600;
  line-height: 24px;
}

.complete-reg-card a {
  color: var(--primary40);
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
  margin-left: auto;
}

.container-search {
  padding: 54px 22px;
}

.search {
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
    display: none;
}

.filter-container-dashboard {
  display: flex;
  align-items: center;
}

.filter-container-dashboard .select-option label {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0;
  opacity: 1;
  padding: 4px 12px;
  background: transparent;
  color: var(--primary20);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  user-select: none;
  border-bottom: 1px solid var(--primary90);
  border-radius: 0;
}

.filter-container-dashboard .select-option label:hover {
  background: transparent;
  color: var(--primary50);
  transition: background 0.3s, color 0.3s;
  border-bottom: 1px solid var(--primary50);
}

.filter-container-dashboard .select-option input[type="radio"]:checked + label {
  background: transparent;
  color: var(--primary50);
  border-bottom: 1px solid var(--primary50);
}

.filter-container-dashboard button {
  display: none;
  margin-left: auto;
}

.map-search {
  height: 494px;
  width: 100%;
  background: var(--primary99);
  border-radius: 16px;
}

.search-grid-container {
  width: 100%;
  display: flex;
  grid-template-columns: repeat(auto-fill, minmax(333px, 333px));
  column-gap: 15px;
  row-gap: 20px;
}

.contact {
  margin-top: 20px;
  gap:100px;
}

.contact h3 {
  color: var(--primary50);
  width: 490px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(316px, 316px));
  gap: 10px;

}

.contact-grid .dashboard {
  width: 316px;
  height: 211px;
  border: none;
  box-shadow: none;
  background: var(--primary95);
}

.contact-card.dashboard.active {
  background: var(--primary90);
  border: 1px solid var(--primary60);
}

/* ---------- DETAIL ---------- */

.nav-links-land {
  display: flex;
  align-items: center;
  margin-top: 57px;
}

.nav-links-land li {
  list-style: none;
  line-height: 140%;
  color: var(--primary20);
  padding: 4px 12px;
  cursor: pointer;
  border-bottom: 1px solid var(--primary90);
}

.nav-links-land .active-land {
  color: var(--primary50);
  border-bottom: 1px solid var(--primary50);
}

.info,
.potential,
.price,
.conctact{
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 47px;
}

.potential {
  flex-direction: row;
  gap: 70px;
}

.price {
  margin-top: 0;
}

.info h4,
.potential h4 {
  font-family: "IBM Plex Sans";
  font-size: 18px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.09px;
  color: var(--primary20);
}

.land-container {
  display: flex;
  gap: 28px;
}

.container-left {
  width: 346px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.container-data {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.container-data.parcel {
  margin-top: auto;
}

.land-card1 {
  display: flex;
  background: var(--primary95);
  border: 0.5px solid var(--primary90);
  border-radius: 16px;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05), 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.content-land-card {
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.content-land-card.divider {
  border-right: 1px solid var(--primary90);
}

.content-land-card span,
.land-card3 span {
  color: var(--primary50);
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.25px;
  white-space: nowrap;
}

.content-land-card p,
.land-card3 p {
  font-family: "IBM Plex Sans";
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
  color: var(--primary10);
}

.land-card2 {
  height: 167px;
  display: flex;
  background: var(--primary95);
  border: 0.5px solid var(--primary90);
  border-radius: 16px;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05), 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.land-card2-left .content-land-card {
  gap: 15px;
}

.land-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.content-land-card.surface {
  width: 198px;
  background: var(--primary60);
  justify-content: center;
}

.surface span {
  color: var(--primary95);
}

.surface p {
  color: var(--primary99);
  font-size: 36px;
  line-height: 42px;
}

.container-right {
  width: 346px;
}

.container-patrimony {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.left-mark {
  position: absolute;
  background: var(--primary80);
  width: 12px;
  height: 100%;
  z-index: 1;
}

.town-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(346px, 346px));
  row-gap: 18px;
  column-gap: 28px;
}

.container-mts {
  display: flex;
  flex-direction: column;
}

.progress-bar-mts {
  width: 100%;
  height: 20px;
  background-color: var(--primary95);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  margin-block: 16px;
}

.progress-bar-mts-labels {
  display: flex;
  justify-content: space-between;
}

.progress-bar-mts-labels span {
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.25px;
  color: var(--primary20);
}

.progress-bar-mts-labels p {
  font-family: "IBM Plex Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  color: var(--primary20);
}

.covered {
  background-color: var(--primary80);
  height: 100%;
}

.expansions {
  background-color: var(--primary60);
  height: 100%;
}

.covered-label,
.expansions-label {
  display: flex;
  align-items: center;
  gap: 15px;
}

.covered-label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: var(--primary80);
}

.expansions-label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: var(--primary60);
}

.container-surface {
  width: 100%;
}

.table-surface {
  border-collapse: separate;
  border-spacing: 0 7px;
  width: 100%;
}

.table-surface th {
  font-family: "IBM Plex Sans";
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  padding: 7px;
  color: var(--primary20);
}

.table-surface th.common {
  color: var(--primary60);
}

.table-surface tbody tr {
  background: var(--primary60);
  height: 30px;
}

tbody tr td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

tbody tr td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.table-surface td {
  font-family: "IBM Plex Sans";
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
  padding: 7px;
  text-align: center;
  color: var(--primary95);
}

.table-surface td.common-m2 {
  color: var(--primary90);
  font-weight: 500;
}

.container-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
}

.container-buttons button {
  width: 100%;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.modal-content {
    background: var(--primary99);
    height: 632px;
    width: 634px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 94px 45px 94px;
    position: relative;
    align-items: center;
}

.content-reg-false {
  gap: 30px;
  justify-content: center;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content h3 {
  font-family: "IBM Plex Sans";
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
}

.h3-center-modal {
  text-align: center;
  width: 382px;
}

.modal-content p {
  font-family: "IBM Plex Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
  color: var(--primary20);
}

.modal-content span {
  color: var(--primary20);
  font-weight: 500;
}

#authorized-modal .modal-content {
  align-items: start;
  justify-content: center;
  gap: 10px;
  padding-inline: 94px;
  padding-block: 0;
}

#authorized-modal span {
  color: var(--primary50);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  text-align: start;
}

#authorized-modal h3 {
  color: var(--primary50);
  font-size: 38px;
  font-weight: 500;
  line-height: 106%;
  letter-spacing: -0.38px;
}

#authorized-modal p {
  color: var(--primary10);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.5px;
}



/*Modal param coordinar una reunion*/

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    top: 0;
    left: 0;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-content h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #5b2e0e;
}

.modal-days {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
    position: relative;
}

.days-wrapper {
    display: flex;
    gap: 16px;
    overflow: hidden;
    width: 320px; /* Ajusta según el tamaño de tus botones */
    justify-content: center;
}

.day {
    min-width: 90px;
    background: var(--primary99);
    border: 2px solid var(--primary80);
    color: var(--primary40);
    border-radius: 16px;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: border-color 0.2s;
}

    .day.active {
        border-color: var(--primary40);
        background: #fff6ee;
    }

.days-nav {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary40);
    cursor: pointer;
    padding: 0 8px;
}

.days-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
}

.days-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary80);
    opacity: 0.3;
}

    .days-dot.active {
        opacity: 1;
        background: var(--primary40);
    }

.modal-times {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1.5rem;
    max-height: 220px;s
    overflow-y: auto;
    width: 100%;
    align-items: center;
    scrollbar-width: none; /* Oculta la barra en Firefox */
}

    .modal-times::-webkit-scrollbar {
        display: none; /* Oculta la barra en Chrome/Safari */
    }

.time {
    width: 100%;
    background: #fff6ee;
    border: 2px solid var(--primary80);
    color: var(--primary40);
    border-radius: 12px;
    padding: 12px 0;
    font-weight: bold;
    font-size: 1.05rem;
    cursor: pointer;
}

    .time.active {
        border: 2px solid var(--primary40);
        background: var(--primary99);
    }


.virtual-signature {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--primary70);
    padding-block: 10px;
    gap: 8px;
    margin-block: 20px;
    width: 100%;
}

.virtual-signature input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
  color: var(--primary70);
  font-family: "IBM Plex Sans";
  width: 100%;
}

.virtual-signature input::placeholder {
  color: var(--primary70);
}

#authorized-step2-modal .modal-content {
  justify-content: center;
  gap: 20px;
  text-align: center;
}

#authorized-step2-modal img {
  width: 266px;
  height: 248px;
}

.price-today {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 30px;
}

.container-price {
  display: flex;
  width: 100%;
}

.container-price h3 {
  width: 50%;
  color: var(--primary50);
}

.slider-container {
  width: 50%;
  padding-inline: 30px;
}

.slider {
  position:relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

#slider-value,
#slider-value-days,
#slider-value-tomorrow {
  background: var(--primary50);
  padding: 10px 15px;
  border-radius: 5px;
  color: var(--primary99);
  position: relative;
  margin-bottom: 15px;
}


#slider-value::after,
#slider-value-days::after,
#slider-value-tomorrow::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid var(--primary50);
}

.slider-content-min-max {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.slider-content-min-max span {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary50);
}

.slider-max {
  text-align: right;
}

.slider-content-input {
  width: 100%;
  display: flex;
}

.slider-left {
  width: 20px;
  height: 15px;
  background: var(--primary50);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.slider-right {
  width: 20px;
  height: 15px;
  background: var(--primary90);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  background: linear-gradient(to right, var(--primary50) 0%, var(--primary90) 100%);
  outline: none;
  transition: background 0.2s;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--primary50);
  border: 3px solid var(--primary99);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.06),
    0px 12px 20px 0px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transform: scale(1.5);
  transform-origin: center center;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--primary50);
  border: 3px solid var(--primary99);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.06),
    0px 12px 20px 0px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transform: scale(1.5);
  transform-origin: center center;
}

.incidence-land {
  display: flex;
  gap: 16px;
  width: 359px;
  background: var(--primary95);
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--primary90);
}

.incidence-land svg {
  flex-shrink: 0;
}

.incidence-land p {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.25px;
  color: var(--primary20);
  margin-bottom: 16px;
}

.incidence-land span {
  font-weight: 700;
  color: var(--primary20);
  font-size: 16px;
}

.incidence-land a {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: var(--primary60);
}

.price-tomorrow {
  display: none;
  flex-direction: column;
}

.container-price.tomorrow {
  padding-block: 45px;
  border-bottom: 1px solid var(--primary90);
}

.buttons-price {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 55px;
}

/* ---------- LOTE ---------- */

.header-lote-body {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.buttons-lote {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 346px;
}

.buttons-lote button {
  display: flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--primary90);
  cursor: pointer;
}

.lote-info {
  display: flex;
  gap: 70px;
}

.lote-info-left {
  display: flex;
  flex-direction: column;
  width: 346px;
}

.lote-info-left-top {
  display: flex;
  align-items: center;
}

.lote-info-left-top p {
  color: var(--primary20);
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.5px;
}

.lote-info-left-top span {
  background: var(--primary40);
  color: var(--primary95);
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.5px;
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 8px;
}

.lote-info-left-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lote-info-left-bottom h1 {
  font-size: 43px;
  font-weight: 500;
  line-height: 47px;
}

.lote-info-left-bottom-address,
.container-surface-top {
  display: flex;
  align-items: center;
}

.lote-info-left-bottom-address h6 {
  color: var(--primary30);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.lote-info-left-bottom-address button,
.container-surface-top button {
  background: transparent;
  border: none;
  color: var(--primary40);
  font-family: "IBM Plex Sans";
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.5px;
  margin-left: auto;
  cursor: pointer;
}

.lote-info-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offer-land {
  width: 356px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--primary90);
  padding: 13px;
  border-radius: 8px;
  border: 1px solid var(--primary40);
  position: relative;
}

.offer-land h6 {
  font-family: "IBM Plex Sans";
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: var(--primary40);
}

.offer-land p {
  font-family: "IBM Plex Sans";
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: var(--primary40);
}

/* ---------- BUYER ACTIVE ---------- */

.buyer-active {
  background: var(--primary95);
}

.buyer-active .header-container {
  background-color: var(--primary20);
}

.buyer-active .nav-links {
  color: var(--primary95);
}

.buyer-active .nav-items-dropdown .nav-links {
  color: var(--primary20);
}

.buyer-active .logo-icon path {
  fill: var(--primary95);
}

.buyer-active .logo-icon:hover path {
  fill: var(--primary60);
}

.buyer-active .mobile-nav-items {
  background-color: var(--primary95);
}

.buyer-active .icon-circle1 {
  fill: var(--primary95);
  stroke: var(--primary40);
}

.buyer-active .icon-circle2 {
  fill: var(--primary40);
}

.buyer-active .icon-path1 {
  fill: var(--primary95);
}

.buyer-active .icon-path2 {
  fill: var(--primary40);
  stroke: var(--primary40);
}

.buyer-active .icon-path3 {
  stroke: var(--primary95);
}

.buyer-active .icon-path4 {
  stroke: var(--primary40);
}

.buyer-active .icon-path5 {
  fill: var(--primary40);
}

.buyer-active .icon-path6 {
  fill: var(--primary20);
}

.buyer-active .number-text-title {
  color: var(--primary40);
}

.buyer-active .primary-button {
  background: var(--primary40);
}

.buyer-active .primary-button:hover {
  background: var(--primary30);
}

.buyer-active .primary-button:disabled {
  background: var(--primary90);
  color: var(--primary70);
}

.buyer-active .secondary-button {
  background: var(--primary95);
  color: var(--primary40);
}

.buyer-active .secondary-button:hover {
  background: var(--primary90);
}

.buyer-active .secondary-button:disabled {
  background: var(--primary99);
  color: var(--primary80);
}

.buyer-active .buyer-btn-login {
  background: var(--primary20);
  color: var(--primary95);
  border: 1px solid var(--primary95);
}

.buyer-active .buyer-btn-login:hover {
  background: var(--primary10);
}

.buyer-active .buyer-btn-signup {
  background: var(--primary95);
  color: var(--primary20);
}

.buyer-active .buyer-btn-signup:hover {
  background: var(--primary90);
}

.buyer-active .section1 {
  background: linear-gradient(to bottom, var(--primary90), var(--primary95) 50%);
}

.buyer-active .map {
  background: linear-gradient(90deg, var(--primary95) 0%, rgba(247, 247, 253, 0.2) 100%),
    url("/assets/mapHome.png") center/cover no-repeat;
}

.buyer-active .section2 {
  background: var(--primary95);
}

.buyer-active .section3 {
  background: var(--primary99);
  align-items: center;
}

.buyer-active .section4 {
  flex-direction: row;
  background: var(--primary95);
  justify-content: space-between;
  gap: 0;
}

.buyer-active .newsletter {
  background: var(--primary99);
}

.buyer-active .newsletter h4 {
  color: var(--primary40);
}

.buyer-active .newsletter-input-container {
  border: 1px solid var(--primary40);
}

.buyer-active .newsletter-input {
  color: var(--primary40);
}

.buyer-active .newsletter-input::placeholder {
  color: var(--primary40);
}

.buyer-active .footer-icon {
  background: var(--primary40);
}

.buyer-active .progress-bar {
  background: var(--primary40);
}

.buyer-active .checkbox {
  border: 1px solid var(--primary40);
  color: var(--primary20);
}

.checkbox input {
  border: 2px solid var(--primary40);
}

.checkbox input:checked {
  background-color: var(--primary40);
}

/* ------ dasboard buyer ------ */

.buyer-active .sidebar {
  background: var(--primary20);
}

.buyer-active .nav-links-dashboard li {
  color: var(--primary95);
}

.buyer-active .nav-links-dashboard li path {
  fill: var(--primary95);
}

.buyer-active .nav-links-dashboard .active {
  background: var(--primary40);
}

.buyer-active .active .color-svg-path {
  fill: var(--primary95);
}

.buyer-active .dashboard-header-text h4 {
  color: var(--primary10);
}

.buyer-active .dashboard-header-text h5 {
  color: var(--primary10);
}

.buyer-active .land-card1 {
  background: var(--primary90);
}

.buyer-active .content-land-card.divider {
  border-right: 1px solid var(--primary80);
}

.buyer-active .content-land-card span {
  color: var(--primary40);
}

.buyer-active .land-card2 {
  background: var(--primary90);
}

.buyer-active .content-land-card.surface {
  background: var(--primary40);
}

.buyer-active .surface span {
  color: var(--primary95);
}

.buyer-active .left-mark {
  background: var(--primary40);
}

.buyer-active .progress-bar-mts-labels span {
  color: var(--primary40);
}

.buyer-active .progress-bar-mts-labels p {
  color: var(--primary40);
}

.buyer-active .expansions {
  background-color: var(--primary40);
}

.buyer-active .expansions-label::before {
  background-color: var(--primary40);
}

.buyer-active .table-surface th.common {
  color: var(--primary40);
}

.buyer-active .table-surface tbody tr {
  background: var(--primary40);
}

.buyer-active .table-surface td.common-m2 {
  color: var(--primary95);
}

.buyer-active .container-price h3 {
  color: var(--primary40);
}

.buyer-active #slider-value {
  background: var(--primary40);
}

.buyer-active #slider-value::after {
  border-top: 20px solid var(--primary40);
}

.buyer-active .slider-content-min-max span {
  color: var(--primary40);
}

.buyer-active .slider-left {
  background: var(--primary40);
}

.buyer-active input[type="range"] {
  background: linear-gradient(to right, var(--primary40) 0%, var(--primary90) 100%);
}

.buyer-active input[type="range"]::-webkit-slider-thumb {
  background: var(--primary40);
}

.buyer-active input[type="range"]::-moz-range-thumb {
  background: var(--primary40);
}

.buyer-active .land-card3 {
  height: 167px;
  display: flex;
  background: var(--primary90);
  border: 0.5px solid var(--primary90);
  border-radius: 16px;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05), 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.buyer-active .land-card3-left {
  gap: 15px;
  padding: 24px;
  background: var(--primary90);
}

.buyer-active .land-card3 span {
  color: var(--primary40);
}

.buyer-active .land-card3 p {
  color: var(--primary20);
}

.buyer-active .content-land-card.surface-2 {
  width: 198px;
  background: var(--primary40);
  justify-content: center;
}

.buyer-active .content-land-card.surface-2 span,
.buyer-active .content-land-card.surface-2 p {
  color: var(--primary95);
}

.buyer-active .dashboard-footer span {
  color: var(--primary20);
}

.buyer-active .dashboard-footer a {
  color: var(--primary40);
}


/*Lote Search Buyer*/

.lotebuyer-item {
    background-color: #fff7f0;
    border-radius: 16px;
    padding: 24px;
    width: 280px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Georgia', serif;
    color: #873f1d;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lotebuyer-badge {
    width: 50%;
    background-color: #b94d1f;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 6px;
    display: inline-block;
    font-weight: bold;
}

.lotebuyer-title {
    font-size: 24px;
    font-weight: bold;
}

.lotebuyer-subtitle {
    font-size: 14px;
    color: #a46a46;
}

.lotebuyer-incidencia {
    font-size: 16px;
    margin-top: 8px;
}

.lotebuyer-vendibles {
    font-size: 24px;
    font-weight: bold;
}

.lotebuyer-expansion {
    font-size: 14px;
    color: #a46a46;
}

.lotebuyer-icons {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
}

.lotebuyer-icon {
    width: 28px;
    height: 28px;
    background-color: #fbe0cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
}

.lotebuyer-arrow {
    margin-top: auto;
    align-self: flex-end;
    background-color: #b94d1f;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}




/* ---------- RESPONSIVE ---------- */

.mobile-nav {
  width: 100%;
  display: none;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-items {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary60);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mobile-nav-items svg {
  cursor: pointer;
}

.nav-items-dropdown {
  display: none;
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary99);
  border-radius: 16px;
  width: 360px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  overflow: hidden;
  padding: 12px;
}

.nav-items-dropdown.active {
  display: block;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.mobile-nav-buttons a {
  width: 100%;
  border-radius: 100px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: var(--primary50);
}

.footer-bottom-mobile {
  display: none;
  flex-direction: column;
  padding: 36px 20px;
  gap: 32px;
}

.footer-bottom-mobile h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 42px;
  color: var(--primary60);
}

.footer-bottom-mobile p {
  color: var(--primary40);
}

.button-footer-mobile {
  color: var(--primary60);
  font-family: "IBM Plex Sans", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.5px;
  background: transparent;
  border-radius: 12px;
  width: auto;
  height: 56px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--primary60);
}

.button-footer-mobile:hover {
  background: var(--primary50);
  color: var(--primary99);
}

.nav-footer-mobile {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.questions-section-mobile {
  display: none;
  flex-direction: column;
  gap: 24px;
  padding: 0 20px 48px 20px;
}

.questions-section-mobile h3 {
  font-family: "IBM Plex Sans";
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
  color: var(--primary20);
}

.screenshots-mobile {
  display: none;
  width: 100%;
}

.h2-mobile {
  display: none;
}

.section5-buyer-mobile {
  display: none;
  width: 100%;
  background: var(--primary99);
  padding: 36px 20px;
  flex-direction: column;
  gap: 14px;
}

.section5-buyer-mobile-h2 {
  margin-bottom: 36px;
}

.section5-buyer-mobile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary95);
  border-radius: 10px;
  padding: 18px 16px;
}

.section5-buyer-mobile-card h2,
.section5-buyer-mobile-card p {
  color: var(--primary40);
}

.about-img-mobile {
  display: none;
  width: 100%;
  padding: 50px 20px;
  background: var(--primary95);
}

.newsletter-mobile {
  display: none;
  flex-direction: column;
  width: 100%;
  padding: 36px 20px;
  background: var(--primary99);
  gap: 25px;
}

.newsletter-mobile h3 {
  font-family: "IBM Plex Sans";
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
}

.newsletter-mobile p {
  color: var(--primary70);
  font-family: "IBM Plex Sans";
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.newsletter-mobile input {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.25px;
  color: var(--primary30);
  padding: 18px 16px;
  border-radius: 10px;
  border: 1px solid var(--primary60);
  background: transparent;
}

.newsletter-mobile input::placeholder {
  color: var(--primary30);
}



/*Solucion a: Cuando el navegador está angosto, la imágen tapa el form de login*/

@media (max-width: 1324px) {
    .login-left{
        width:100%;
    }

    .login-right{
        display: none;
    }

}




    @media (max-width: 1024px) {
        h1,
        h2 {
            font-size: 43px;
            font-weight: 500;
            line-height: 47px;
        }

        h4 {
            font-size: 16px;
            font-weight: 600;
            line-height: 20px;
            letter-spacing: 0.5px;
        }

        h5 {
            font-size: 16px;
            font-weight: 400;
            line-height: 20px;
            letter-spacing: 0.25px;
            color: var(--primary20);
        }

            h5 span {
                font-weight: 600;
            }

        .primary-button,
        .secondary-button {
            width: 311px;
        }

        .btn-small {
            font-size: 13px;
            font-weight: 500;
            width: 150px;
            height: 40px;
            border-radius: 32px;
        }

        .btn-small-tablet {
            font-size: 13px;
            font-weight: 500;
            width: 150px;
            height: 40px;
            border-radius: 32px;
        }

        .buyer-active {
            background: var(--primary95);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar {
            display: none;
        }

        .mobile-nav {
            display: flex;
            padding: 30px;
        }

        .nav-items-dropdown {
            top: 50px;
            transform: translateX(-100%);
        }

        .nav-links {
            flex-direction: column;
            gap: 0;
            color: var(--primary20);
            font-size: 14px;
            font-weight: 600;
        }

            .nav-links li {
                width: 100%;
                border-radius: 100px;
                display: flex;
            }

            .nav-links .buy-link {
                padding: 16px 24px;
            }

            .nav-links li a {
                width: 100%;
                padding: 16px 24px;
                border-radius: 100px;
            }

            .nav-links li {
                transition: none;
            }

                .nav-links li:hover {
                    transform: none;
                    background: var(--primary90);
                }

                .nav-links li a.active {
                    font-weight: 600;
                    background: var(--primary90);
                }

        .section1 {
            height: 100%;
        }

        .headline-container h5 br,
        .headline-container h1 br {
            display: none;
        }

        .container-testimonial {
            left: 48%;
            top: 42px;
            width: 242px;
            height: 252px;
        }

        .testimonial-profile {
            gap: 10px;
        }

        .profile-img {
            width: 60px;
            height: 60px;
        }

        .profile-data-name {
            font-size: 15px;
        }

        .profile-data-type {
            font-size: 11px;
        }

        .testimonial-p {
            font-size: 10px;
            width: 140px;
            height: 50px;
        }

        .container-head {
            gap: 55px;
            padding: 65px 0 30px 50px;
        }

        .headline-container {
            width: 360px;
            gap: 13px;
        }

        .frame866 {
            width: 526px;
        }

        .frame866-tabs {
            display: inline-flex;
            border-bottom: 1px solid var(--primary90);
        }

        .frame866-tabs-buttons {
            font-size: 14px;
            font-weight: 500;
            line-height: 19px;
            letter-spacing: 0.25px;
        }

        .frame866-search {
            height: 89px;
        }

        .frame866-search-location label {
            font-size: 12px;
        }

        .frame866-search-location input {
            font-size: 18px;
            line-height: 145%;
        }

        .frame866-search-separator {
            left: 65%;
        }

        .section2,
        .section2-buyer {
            height: 100%;
            padding: 60px 50px;
        }

        .frame867 {
            width: 50%;
        }

        .frame867-img {
            width: 378px;
        }

        .frame867-p {
            font-size: 16px;
            color: var(--primary20);
            margin-bottom: 10px;
        }

        .frame867-span {
            color: var(--primary20);
        }

        .section3,
        .section3-buyer,
        .section4-buyer {
            height: 100%;
            padding: 60px;
        }

        .frame867-img.resized {
            width: 50%;
        }

        .section3-buyer {
            gap: 47px;
        }

        .slider-container-video {
            width: 342px;
            height: 303px;
        }

        .slider-video {
            width: 305px;
        }

        .section4 {
            padding: 60px 50px;
            gap: 80px;
        }

        .section4-article2 {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .benefits {
            width: 50%;
        }

        .container-benefit {
            width: 230px;
        }

        .benefit-text {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

            .benefit-text h4 {
                font-size: 22px;
                font-weight: 500;
            }

        .section5-buyer-header h3 {
            font-family: "IBM Plex Sans";
            font-size: 32px;
            font-weight: 500;
            line-height: 36px;
        }

        .section5-buyer-container {
            padding: 45px 40px;
        }

        .select-option label {
            font-size: 14px;
        }

        .filter-container-input input {
            font-size: 16px;
        }

        .section5-buyer-grid-container {
            grid-template-columns: repeat(auto-fill, minmax(300px, 300px));
            gap: 20px 10px;
        }

        .card-lotes {
            width: 300px;
        }

        /* ---------- FOOTER - TABLET ---------- */

        .footer-top {
            padding: 80px 50px;
        }

        .container-grid-footer {
            width: 80%;
            grid-template-columns: repeat(3, 220px);
            gap: 48px 88px;
        }

        .footer-bottom {
            padding: 26px 50px;
        }

        /* ---------- SELLER - TABLET ---------- */

        .sell-main {
            padding: 115px 60px 0 60px;
            gap: 65px;
        }

        .step {
            gap: 50px;
        }

            .step.active {
                opacity: 1;
                visibility: visible;
                transform: translateX(0);
                height: auto;
            }

        .sell-form-input {
            width: 388px;
        }

            .sell-form-input input {
                font-size: 18px;
                line-height: 145%;
            }

        .verifying-step h2 {
            width: 40%;
            margin-top: 50px;
        }

        .verifying-step-right {
            width: 60%;
        }

        /* ---------- ABOUT - TABLET ---------- */

        .about-headline {
            padding: 35px 50px;
        }

        .about-section2 {
            padding: 35px 50px 0 50px;
        }

        /* ---------- QUESTIONS - TABLET ---------- */

        .questions-section {
            padding: 35px 50px;
            gap: 28px;
        }

            .questions-section h3 {
                font-family: "IBM Plex Sans";
                font-size: 32px;
                font-weight: 500;
                line-height: 36px;
                color: var(--primary20);
            }

        /* ---------- CONTACT - TABLET ---------- */

        .contact-headline {
            padding: 35px 50px 0 50px;
            gap: 20px;
        }

        .buyer-active .contact-headline {
            padding: 35px 50px;
        }

        .contact-headline h1 {
            font-family: "IBM Plex Sans";
            font-size: 32px;
            font-weight: 500;
            line-height: 36px;
            color: var(--primary20);
        }

            .contact-headline h1 br {
                display: none;
            }

        .contact-headline h2 {
            display: block;
        }

        .contact-headline-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 10px;
            justify-content: center;
            align-items: center;
            justify-items: center;
        }

        .contact-card {
            width: 290px;
            height: 220px;
            padding-block: 30px;
        }

        /* ---------- BLOG - TABLET ---------- */

        .blog-section {
            padding: 42px 50px;
            gap: 35px;
        }

        .article-detail {
            padding: 30px 50px;
            gap: 30px;
        }

        /* ---------- LOGIN & SIGNUP - TABLET ---------- */

        .login-section {
            padding: 30px 50px;
        }

        .form-login-buttons {
            width: 311px;
        }

        .login-right {
            width: 50%;
        }

            .login-right img {
                width: 100%;
            }
    }

    @media (max-width: 500px) {
        .primary-button,
        .secondary-button {
            width: 100%;
        }

        .btn-medium {
            width: 128px;
            padding: 12px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            line-height: 16px;
            letter-spacing: 0.1px;
        }

        .header-container {
            border: none;
            background: var(--primary95);
        }

        .section1 {
            background: var(--primary99);
            padding-block: 38px;
        }

        .container-head {
            width: 100%;
            padding: 0 20px;
            gap: 24px;
        }

        .frame866andsearch-container {
            height: 100%;
        }

        .frame866 {
            width: 100%;
        }

        .frame866-search {
            width: 100%;
            height: 56px;
            background: transparent;
            border-radius: none;
            box-shadow: none;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
        }

        .frame866-search-location {
            border: 1px solid var(--primary60);
            padding: 12px;
            border-radius: 8px;
            height: 100%;
            justify-content: center;
            width: 100%;
        }

        .search-icon {
            display: block;
        }

        .frame866-search-location label {
            display: none;
        }

        .frame866-search-location input {
            background: transparent;
            width: 100%;
            border: none;
            outline: none;
            font-size: 13px;
            font-weight: 500;
            line-height: 16px;
            letter-spacing: 0.1px;
            color: var(--primary60);
        }

        .frame866-search-separator {
            display: none;
        }

        .frame866-tabs {
            display: none;
        }

        .container-numbers {
            display: none;
        }

        .container-testimonial {
            display: none;
        }

        .map {
            display: none;
        }

        .section2,
        .section2-buyer {
            padding: 0 20px 48px 20px;
            flex-direction: column;
        }

        .frame867 {
            width: 100%;
        }

        .frame867-img-responsive {
            display: block;
            width: 100%;
        }

        .frame867-img {
            display: none;
        }

        .frame867 h2 br,
        .frame867 p br {
            display: none;
        }

        .section3,
        .section3-buyer,
        .section4-buyer {
            flex-direction: column;
            padding: 36px 20px;
            justify-content: space-between;
        }

        .section3 {
            gap: 30px;
        }

        .slider-container-video {
            width: 100%;
            height: 100%;
        }

        .slider-video {
            width: 100%;
            padding: 44px 18px;
        }

        .h2-mobile {
            display: block;
        }

        .frame867-p.desktop,
        .frame867-h2.desktop {
            display: none;
        }

        .section4 {
            padding: 36px 20px;
        }

        .section4-article2 {
            display: none;
        }

        .section4-article1 {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .section5-buyer {
            display: none;
        }

        .buyer-active .section5-buyer {
            display: none;
        }

        .buyer-active .questions-section-mobile {
            display: none;
        }

        .section5-buyer-mobile {
            display: flex;
        }

        .newsletter {
            display: none;
        }

        .questions-section-mobile {
            display: flex;
        }

        .accordion-item {
            gap: 8px;
            border: 1px solid var(--primary90);
        }

        .accordion-button {
            font-size: 16px;
            font-weight: 600;
            line-height: 125%;
            letter-spacing: 0.5px;
        }

        .accordion-content p {
            font-size: 16px;
            font-weight: 400;
            line-height: 125%;
            letter-spacing: 0.25px;
        }

        .screenshots-mobile {
            display: block;
        }

        /* ---------- FOOTER - MOBILE ---------- */

        .footer-desktop {
            display: none;
        }

        .footer-bottom-mobile {
            display: flex;
        }

        .nav-footer-a {
            opacity: 1;
            line-height: 20px;
        }

        .footer-social {
            gap: 16px;
        }

        .footer-social-a {
            opacity: 1;
        }

        /* ---------- SELLER - MOBILE ---------- */

        .sell-main {
            padding: 48px 16px;
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .sell-form-input {
            width: 359px;
        }

            .sell-form-input input {
                font-size: 14px;
                line-height: 135%;
            }

        .form-group {
            width: 100%;
        }

        .form-input-container {
            border-radius: 10px;
            padding: 18px 16px;
        }

        .button-group {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .step {
            gap: 48px;
        }

        .checkboxs-container {
            gap: 0;
        }

        .checkbox {
            height: 40px;
            width: 100%;
            gap: 0;
            color: var(--primary20);
            background: transparent;
            border: none;
            font-size: 16px;
            font-weight: 600;
            border-bottom: 1px solid var(--primary95);
            border-radius: none;
            padding-block: 25px;
            flex-direction: row-reverse;
        }

            .checkbox label {
                width: 100%;
                justify-content: space-between;
            }

            .checkbox input {
                width: 18px;
                height: 18px;
            }

                .checkbox input:checked + label::after {
                    content: none;
                }

                .checkbox input:checked + label::before {
                    content: "✔";
                    font-size: 12px;
                    color: var(--primary99);
                    position: absolute;
                    right: -14px;
                }

        .sell-form-password h5 {
            font-size: 16px;
            font-weight: 400;
            line-height: 20px;
        }

        .verifying-step {
            display: flex;
            flex-direction: column;
        }

        .verifying-step-right {
            width: 100%;
        }

        .verifying-step h2 {
            width: 100%;
        }

        .verifying-step-right img {
            width: 100%;
        }

        .ready-step {
            display: flex;
            flex-direction: column;
        }

        .ready-step-left {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 80px;
        }

        .ready-step img {
            display: none;
        }

        .login-link {
            font-size: 16px;
        }

        .login-footer {
            display: flex;
            align-items: center;
            padding: 10px 0;
            justify-content: center;
            gap: 23px;
        }

        /* ---------- ABOUT - MOBILE ---------- */

        .about-section1 {
            height: 100%;
            background: var(--primary99);
            flex-direction: column;
        }

        .buyer-active .about-section1 {
            background: var(--primary95);
        }

        .about-headline {
            padding: 35px 20px;
        }

            .about-headline img {
                display: none;
            }

        .headline-text {
            width: 100%;
            gap: 20px;
        }

            .headline-text h5 br {
                display: none;
            }

        .about-section2 {
            padding: 0 20px 0 20px;
        }

        .buyer-active .about-section2 {
            padding: 20px 20px 0 20px;
        }

        .about-section2 h3 {
            margin: 0 0 35px 0;
        }

        .section2-grid {
            gap: 32px;
            margin-bottom: 55px;
        }

        .about-img-mobile {
            display: block;
        }

        /* ---------- QUESTIONS - TABLET ---------- */

        .questions-section {
            padding: 35px 20px;
        }

        /* ---------- CONTACT - MOBILE ---------- */

        .contact-headline {
            background: var(--primary99);
            padding: 35px 20px 0 20px;
        }

        .buyer-active .contact-headline {
            background: var(--primary95);
            padding: 35px 20px;
        }

        .contact-headline-grid {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-card {
            width: 100%;
            height: 100%;
            box-shadow: none;
            border-radius: 10px;
            padding: 18px 16px;
            flex-direction: row;
        }

        .buyer-active .contact-card {
            background: var(--primary95);
        }

            .buyer-active .contact-card.active {
                background: var(--primary99);
            }

        .contact-card-content {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-card span {
            display: none;
        }

        .contact-card button {
            display: none;
        }

        .contact-card-checked {
            display: flex;
        }

        /* ---------- BLOG - MOBILE ---------- */

        .blog-section {
            background: var(--primary99);
            padding: 42px 20px;
        }

        .article-detail {
            background: var(--primary99);
            padding: 0;
            gap: 0;
        }

        .article-header {
            order: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .article-header .card-lotes-icons {
                display: none;
            }

        .article-header-info {
            padding: 34px 20px;
        }

            .article-header-info #category {
                display: none;
            }

        .article-footer-info {
            width: 100%;
            display: flex;
            justify-content: space-between;
        }

        .article-header-info #author {
            font-size: 14px;
            font-weight: 500;
            line-height: 140%;
        }

        .article-header-info #date {
            font-weight: 500;
            line-height: 140%;
            font-size: 14px;
            padding: 0;
        }

        .article-detail #img {
            order: 0;
            height: 229px;
            overflow: hidden;
            border-radius: 0;
            position: relative;
        }

        .buttons-article-mobile {
            display: flex;
            width: 100%;
            justify-content: space-between;
            padding-inline: 20px;
            position: absolute;
            top: 30px;
            z-index: 10;
        }

        .article-detail #content {
            order: 2;
            font-size: 16px;
            font-weight: 400;
            line-height: 20px;
            letter-spacing: 0.25px;
            padding-inline: 20px;
        }

        .article-detail button {
            display: none;
        }

        .newsletter-mobile {
            display: flex;
        }

        /* ---------- LOGIN & SIGNUP - MOBILE ---------- */

        .login-section {
            background: var(--primary99);
            padding: 35px 20px;
        }

        .buyer-active .login-section {
            background: var(--primary95);
        }

        .login-left {
            width: 100%;
        }

            .signup-step h5,
            .login-left h5 {
                font-weight: 500;
                margin: 24px 0 35px 0;
            }

            .signup-step span,
            .login-left span {
                color: var(--primary50);
            }

        .verification-form .form-group {
            margin-bottom: 50px;
        }

        .code-input-container {
            gap: auto;
        }

        .code-input {
            width: 100%;
        }

        .form-login-buttons {
            width: 100%;
        }

        .divider-container span::before,
        .divider-container span::after {
            width: 100px;
        }

        .divider-container span::before {
            left: -100px;
        }

        .divider-container span::after {
            right: -100px;
        }

        .login-right {
            display: none;
        }

        .login-footer {
            padding: 0;
            margin-bottom: 20px;
        }

            .login-footer h5 {
                font-weight: 500;
                color: var(--primary10);
            }

            .login-footer a {
                font-weight: 500;
            }
    }

    /* ---------- FADE-IN ---------- */

    .container-head,
    .container-testimonial,
    .section2,
    .section3,
    .section4-article1,
    .section4-article2,
    .section2-buyer,
    .section3-buyer,
    .section4-buyer,
    .section5-buyer,
    .section5-buyer-mobile,
    .about-section1,
    .about-section2,
    .questions-section,
    .contact-headline,
    .blog-grid {
        opacity: 0;
        transform: translateY(10vh);
        visibility: hidden;
        transition: opacity 1200ms ease-out, transform 600ms ease-out, visibility 1200ms ease-out;
        will-change: opacity, transform, visibility;
    }

    .fade-in {
        opacity: 1;
        transform: none;
        visibility: visible;
    }


    /* Tabla de actividades */

    .activity-table-container {
        margin-top: 20px;
    }

    .activity-table {
        width: 100%;
        border-collapse: collapse;
        font-family: "IBM Plex Sans", serif;
        color: var(--textColor-default);
        background-color: var(--primary95);
        border: 1px solid var(--primary90);
        border-radius: 8px;
    }

        .activity-table th,
        .activity-table td {
            padding: 10px 15px;
            text-align: left;
        }

        .activity-table th {
            background-color: var(--primary80);
            color: var(--primary99);
        }

        .activity-table tr:nth-child(even) {
            background-color: var(--primary99);
        }

        .activity-table tr:nth-child(odd) {
            background-color: var(--primary95);
        }
