:root {
  --bg: #f2f2eb;
  --text: #000000;
  --muted: #4d4d4a;
  --soft: #7a7a74;
  --line: rgba(31, 31, 29, 0.18);
  --white: #ffffff;
  --title: #383740;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
}

body {
  letter-spacing: -0.01em;
}

img,
video {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 48px;
  min-height: 44px;
  border: 0.8px solid var(--text);
  border-radius: 32px;
  background: transparent;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.btn--ghost {background:transparent; color:#7a7a74}
.btn--light {background:rgba(255,255,255,0.5); border:0}
.btn--light:hover {background:rgba(255,255,255,1); }

.btn a {text-decoration: none;}

.btn:hover {
  background: var(--text);
  color: var(--bg);
}

.btn:active {
  transform: scale(0.98);
}


/* HERO */
.hero {
  position: relative;
  width:100%;
  margin: 0 auto;
}

.hero__bg {
  width: 100%;
  height: min(82vh, 760px);
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 80px 1fr;
  align-items: center;
  justify-items: center;
  color: var(--white);
  padding: 0 24px 120px;
  text-align: center;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.08) 35%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

.hero__brand {
  align-self: start;
  margin: 18px 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  font-weight: 400;
  opacity: 0.95;
}

.hero__brand img {height: 50px; width:auto}

.hero h1 {
  align-self: end;
  margin: 0;
  font-size: clamp(2.2rem, 4.7vw, 4.35rem);
  line-height: 0.96;
  font-weight: 300;
  letter-spacing: 0.12em;
}

.logo-montebelo img{height:300px; width: auto;}

/* ABOUT */
.about {
  padding: 80px 0 155px;
  display: grid;
  grid-template-columns: 262px minmax(420px, 690px);
  justify-content: space-between;
  align-items: start;
  gap: clamp(40px, 7vw, 120px);
}

.about__aside {
  display: grid;
  gap: 18px;
}

.about__photo img {
  width: 100%;
  aspect-ratio: 259 / 326;
  object-fit: cover;
}

.about__meta {
  display: grid;
  justify-items: start;
  gap: 34px;
}

.caption {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.28;
  color: var(--text);
}

.about__content {
  max-width: 690px;
}

.about__title {
  margin: 0 0 30px;
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about__content p {
  margin: 0 0 24px;
  font-size: 0.98rem;
  line-height: 1.28;
  color: var(--text);
}

/* TITLES */
.section-title {
  margin: 0 0 34px;
  font-size: clamp(3rem, 6vw, 4.05rem);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: var(--title);
}

/* VILLAS */
.villas {
  padding: 25px 0 80px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.card {
  background: transparent;
}

.card img {
  width: 100%;
  aspect-ratio: 382 / 305;
  object-fit: cover;
}

.card__body {
  padding-top: 14px;
}

.card h3 {
  margin: 5px 0 10px;
  font-size: 1.58rem;
  line-height: 1.05;
  font-weight: 600;
  color: var(--title);
}

.card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.34;
  color: var(--muted);
}

.card p.red-sold {
  color:red;
}

.enquiry {
  width:100%;
  background:#ffffff;
}

.enquiry .container {
  padding: 80px 0 40px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: clamp(40px, 7vw, 120px);
}

.enquiry__header {
  display: flex;
  flex-direction: column;
}

.enquiry__header h2 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--title);
}

.enquiry__content {
  display: flex;
  flex-direction: column;
}

.enquiry__content > p {
  margin: 0 0 28px;
  max-width: 100%;
  font-size: 0.9rem;
  line-height: 1.34;
  color: var(--muted);
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form__checkboxes {
  display: flex;
  gap: 32px;
  margin-bottom: 12px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.2;
}

.checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--text);
  flex-shrink: 0;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__group label {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
}

.form__group input,
.form__group textarea {
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  font-size: 0.95rem;
  font-family: inherit;
  background: transparent;
  color: var(--text);
  transition: border-color 0.3s;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--muted);
}

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-bottom-color: var(--text);
}

.form__group textarea {
  resize: vertical;
}

.form .btn {
  align-self: flex-end;
  margin-top: 16px;
}


#formStatus {
  margin-top: 8px;
  font-size: 13px;
  min-height: 1.2em;
  color: #666; /* estado neutro (ex: Sending...) */
}

#formStatus.form-status--error {
    color: #c62828;
    background: #ffecec;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
}

#formStatus.form-status--success {
  color: #2e7d32; /* verde */
    background: #ccffcf;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
}

.fill-white  {fill:white}
/* Responsive */
@media (max-width: 768px) {
  .enquiry {
    grid-template-columns: 1fr;
    padding: 32px 0 36px;
  }

  .enquiry__header h2 {
    font-size: 1.75rem;
  }

  .enquiry__content > p {
    max-width: none;
    font-size: 0.9rem;
  }

  .form__checkboxes {
    flex-direction: column;
    gap: 12px;
  }

  .form .btn {
    align-self: flex-start;
  }
}

.place__list--plain {margin: 0 !important; padding: 0 !important;}

/* GALLERY */
.gallery {
  padding: 80px 0 80px;
  display: grid;
  gap: 36px;
}

.gallery__big {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1240 / 648;
}

.gallery__two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
  margin-top: 60px;
}

.gallery__two.second img:nth-child(1) {
  aspect-ratio: 610 / 350;
  object-fit: cover;
}

.gallery__two.second img:nth-child(2) {
  aspect-ratio: 350 / 410;
  object-fit: cover;
}

.gallery__two img:nth-child(1) {
  aspect-ratio: 350 / 410;
  object-fit: cover;
}

.gallery__two img:nth-child(2) {
  aspect-ratio: 610 / 350;
  object-fit: cover;
}

.gallery__two.first img:nth-child(1) {
  aspect-ratio: 610 / 350;
  object-fit: cover;
}

.gallery__two.first img:nth-child(2) {
  aspect-ratio: 610 / 350;
  object-fit: cover;
}

/* PLACE */
.place {
  padding: 0px 0 155px;
  display: grid;
  grid-template-columns: minmax(250px, 382px) minmax(320px, 518px);
  justify-content: space-between;
  gap: clamp(36px, 7vw, 120px);
  align-items: start;
}

.place__image img {
  width: 100%;
  aspect-ratio: 382 / 606;
  object-fit: cover;
}

.place__content {
  max-width: 518px;
  padding-top: 4px;
}

.place__block + .place__block {
  margin-top: 72px;
}

.place h3 {
  margin: 0 0 28px;
  font-size: 1.02rem;
  line-height: 1.15;
  font-weight: 400;
  text-transform: uppercase;
}

.place p,
.place li {
  font-size: 0.98rem;
  line-height: 1.32;
  color: var(--text);
}

.place__block > p {
  margin: 0 0 16px;
}

.place ul {
  margin: 0 0 24px;
  padding-left: 16px;
}

.place li {
  margin: 0;
}

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

.place__ending {
  margin: 74px 0 0;
  max-width: 480px;
}

/* CONTACT */
.contact {
  padding: 10px 0 62px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 456px);
  justify-content: space-between;
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
}

.contact__info {
  max-width: 760px;
}

.contact__title {
  margin: 0 0 30px;
      font-size: clamp(3rem, 6vw, 4.05rem);
    line-height: 0.94;
    font-weight: 500;
    letter-spacing: -0.045em;
  color: var(--title);
}

.contact__lead {
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.35;
}

.contact__details + .contact__details {
  margin-top: 28px;
}

.contact__details p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.34;
}

.contact__image img {
  width: 100%;
  aspect-ratio: 670 / 800;
  object-fit: cover;
}

/* FOOTER */
.footer {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  isolation: isolate;
}

.footer__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.footer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(79, 78, 62, 0.22);
  z-index: -2;
}

.footer__inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

.footer__logo {
  justify-self: center;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1;
  opacity: 1;
  margin-bottom:80px;
}

.footer__logo img {height:50px; width:auto; }

.footer__logo p {
  margin: 0;
}

.footer__cta {
  align-self: center;
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
  color: var(--white);
}

.footer__cta p {
  margin: 0;
  font-size: clamp(1.6rem, 1vw, 3.2rem);
  line-height: 1.08;
  font-weight: 600;
}

.footer__contact {
  justify-self: end;
  text-align: right;
  color: var(--white);
  max-width: 290px;
}

.footer__contact p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.35;
}

.footer__social {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-top: 10px;
  border: 1px solid var(--white);
  border-radius: 4px;
  text-decoration: none;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

/* TABLET */
@media (max-width: 1024px) {
  .container,
  .hero {
    width: min(1240px, calc(100% - 40px));
  }

  .about {
    grid-template-columns: 240px 1fr;
    gap: 36px;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .place {
    grid-template-columns: 320px 1fr;
    gap: 36px;
  }

  .contact {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact__image {
    max-width: 760px;
  }
}

/* MOBILE */
@media (max-width: 680px) {

.enquiry .container,
  .container {
    width: calc(100% - 50px);
  }

  .hero {
    width: 100%;
  }

  .logo-montebelo img {height:180px}

.gallery__two {margin:0}

.gallery {
    gap: 24px;
}
  .hero__bg {
    height: 62vh;
    min-height: 420px;
  }

  .hero__overlay {
    inset: 12px 0 0;
    grid-template-rows: auto 1fr;
    padding: 0 16px 28px;
  }

  .hero__brand {
    margin-top: 14px;
    font-size: 0.62rem;
  }

  .hero h1 {
    font-size: 2.1rem;
    letter-spacing: 0.1em;
  }

  .about,
  .villas,
  .enquiry,
  .place,
  .contact {
    padding-top: 32px;
    padding-bottom: 36px;
  }

  .gallery  {
    padding-top: 62px;
    padding-bottom: 36px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .enquiry .container
{grid-template-columns: 1fr; padding:30px 0 0}

  .about__aside {
    max-width: 100%;
  }

  .about__meta {
    gap: 18px;
  }

  .about__content p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .section-title {
    margin-bottom: 30px;
    font-size: 2.65rem;
    line-height: 0.98;
  }

.about__aside {padding-bottom:30px}

  .cards,
  .form__row,
  .gallery__two {
    grid-template-columns: 1fr;
  }

.gallery__two {margin-top:25px!important}
.gallery__big.last {margin-top:25px!important}

  .card {padding-bottom: 40px;}

  .card p {
    font-size: 0.92rem;
  }

  .enquiry h2 {
    font-size: 1.75rem;
  }

  .enquiry .btn {
    justify-self: start;
  }

  .place {
    grid-template-columns: 1fr;
    gap: 28px;
            flex-direction: column-reverse;
        display: flex;
  }

  .place__image {
    max-width: 100%;
  }

  .place__block + .place__block {
    margin-top: 40px;
  }

  .place__ending {
    margin-top: 36px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact__title {
    font-size: 2.9rem;
  }

  .footer {
    height: auto;
    min-height: 320px;
  }

  .footer__inner {
    grid-template-rows: auto auto auto;
    gap: 28px;
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .footer__cta {
    align-self: start;
    gap: 18px;
  }

  .footer__cta p {
    font-size: 1.55rem;
  }

  .footer__contact {
    justify-self: center;
    text-align: center;
  }
}


.choose-lang {position:absolute; right:20px; top:20px; color:white; font-size:12px;}
.choose-lang a {color:white; text-decoration: none; font-size:12px;}
.choose-lang a.active {font-weight: bold;}