
    :root {
      --ivory: #f6f1e8;
      --paper: #fffdf8;
      --ink: #2d2923;
      --brand: #af5e44;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--ivory);
      color: var(--ink);
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    a {
      font: inherit;
    }

    .page {
      min-height: 100vh;
      background: var(--ivory);
    }

    /* ====== TOPBAR ====== */
    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 10;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px max(20px, calc((100vw - 1180px) / 2));
      background: var(--brand);
      border-bottom: 1px solid rgb(255 253 248 / 0.12);
      backdrop-filter: blur(12px);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--paper);
      text-decoration: none;
      min-width: 0;
    }

    .brand img {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.05;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-size: 0.6rem;
    }

    .brand-text strong {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.15em;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      color: rgb(255 253 248 / 0.8);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .nav-actions a {
      color: inherit;
      text-decoration: none;
    }

    /* ====== HERO ====== */
    .hero {
      min-height: 660px;
      position: relative;
      display: grid;
      place-items: end start;
      padding: 138px max(24px, calc((100vw - 1180px) / 2)) 78px;
      background-image: url("https://boqueiraohotelfazenda.com.br/wp-content/uploads/2022/02/drone.webp");
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgb(45 41 35 / 0.46);
    }

    .hero-content {
      position: relative;
      width: min(760px, 100%);
      color: var(--paper);
    }

    .eyebrow {
      margin: 0 0 18px;
      font-size: 0.78rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 700;
      color: rgb(255 253 248 / 0.86);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      margin-bottom: 22px;
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(3rem, 7vw, 6.6rem);
      line-height: 0.92;
      letter-spacing: -0.05em;
      font-weight: 700;
      max-width: 760px;
    }

    .hero p {
      max-width: 610px;
      margin-bottom: 30px;
      font-size: clamp(1rem, 1.5vw, 1.18rem);
      line-height: 1.75;
      color: rgb(255 253 248 / 0.86);
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid var(--brand);
      color: var(--paper);
      background: var(--brand);
      text-decoration: none;
      cursor: pointer;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-size: 0.78rem;
    }

    .btn-dark {
      background: var(--brand);
      color: var(--paper);
      border-color: var(--brand);
    }

    .btn-outline {
      background: transparent;
      color: var(--paper);
      border-color: rgb(255 253 248 / 0.68);
    }

    /* ====== SECTION ====== */
    .section {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 86px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(240px, 390px);
      gap: 38px;
      align-items: end;
      margin-bottom: 36px;
    }

    .section-title {
      margin-bottom: 0;
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(2.4rem, 4vw, 4rem);
      line-height: 1;
      letter-spacing: -0.04em;
      font-weight: 600;
    }

    .section-copy {
      margin-bottom: 0;
      line-height: 1.7;
      color: rgb(45 41 35 / 0.72);
    }

    /* ====== HOTEL GRID ====== */
    .hotel-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
    }

    /* ====== HOTEL CARD (vertical compact) ====== */
    .hotel-card {
      flex: 0 0 340px;
      min-width: 260px;
      display: flex;
      flex-direction: column;
      background: var(--paper);
      border: 1px solid rgb(45 41 35 / 0.12);
      border-radius: 24px;
      overflow: hidden;
    }

    /* ====== HOTEL MEDIA / CAROUSEL ====== */
    .hotel-media {
      position: relative;
      height: 240px;
      background: var(--ink);
      overflow: hidden;
      flex-shrink: 0;
    }

    .hotel-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 240ms ease;
    }

    .hotel-slide.is-active {
      opacity: 1;
      visibility: visible;
    }

    .hotel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hotel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      border: 1px solid rgb(255 253 248 / 0.42);
      background: rgb(45 41 35 / 0.52);
      color: var(--paper);
      cursor: pointer;
      font-size: 1.1rem;
      line-height: 1;
    }

    .hotel-nav.prev { left: 10px; }
    .hotel-nav.next { right: 10px; }

    .hotel-counter {
      position: absolute;
      z-index: 2;
      right: 10px;
      bottom: 10px;
      padding: 4px 9px;
      background: rgb(45 41 35 / 0.52);
      color: var(--paper);
      font-size: 0.68rem;
      font-weight: 600;
      border-radius: 999px;
      letter-spacing: 0.06em;
    }

    .hotel-badge {
      position: absolute;
      left: 12px;
      top: 12px;
      z-index: 2;
      padding: 5px 11px;
      border-radius: 999px;
      background: var(--paper);
      color: var(--ink);
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    /* ====== HOTEL BODY ====== */
    .hotel-body {
      padding: 22px 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .hotel-kicker {
      margin-bottom: 6px;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 700;
      color: rgb(45 41 35 / 0.6);
    }

    .hotel-body h3 {
      margin-bottom: 6px;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.3rem;
      line-height: 1.18;
      letter-spacing: -0.02em;
      font-weight: 600;
    }

    .hotel-address {
      display: flex;
      align-items: flex-start;
      gap: 5px;
      margin-bottom: 12px;
      font-size: 0.74rem;
      color: rgb(45 41 35 / 0.54);
      line-height: 1.4;
    }

    .hotel-description {
      margin-bottom: 16px;
      line-height: 1.65;
      font-size: 0.84rem;
      color: rgb(45 41 35 / 0.7);
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      line-clamp: 3;
      overflow: hidden;
    }

    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 20px;
    }

    .feature {
      padding: 6px 10px;
      border: 1px solid rgb(45 41 35 / 0.14);
      border-radius: 999px;
      font-size: 0.72rem;
      color: rgb(45 41 35 / 0.78);
      background: var(--paper);
    }

    .hotel-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
      padding-top: 18px;
      margin-top: 0;
      border-top: 1px solid rgb(45 41 35 / 0.12);
    }

    .price-preview span {
      display: block;
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgb(45 41 35 / 0.6);
      font-weight: 700;
      margin-bottom: 4px;
    }

    .price-preview strong {
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.45rem;
      letter-spacing: -0.03em;
      font-weight: 600;
    }

    .ver-mais-link {
      background: none;
      border: none;
      padding: 0;
      margin-bottom: 16px;
      display: inline;
      font-size: 0.84rem;
      color: rgb(45 41 35 / 0.72);
      cursor: pointer;
      text-decoration: underline;
      font-family: inherit;
    }

    .hotel-date {
      display: flex;
      align-items: center;
      gap: 7px;
      margin-top: auto;
      margin-bottom: 16px;
      padding: 8px 12px;
      border: 1px solid rgb(45 41 35 / 0.14);
      border-radius: 12px;
      background: var(--ivory);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      color: var(--ink);
    }

    .hotel-date span {
      display: block;
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 700;
      color: rgb(45 41 35 / 0.55);
      margin-bottom: 2px;
    }

    .modal-date {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 8px;
      padding: 5px 12px;
      border: 1px solid rgb(45 41 35 / 0.16);
      border-radius: 999px;
      background: var(--ivory);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      color: var(--ink);
    }

    .modal-date:empty {
      display: none;
    }

    /* ====== DETAILS STRIP ====== */
    .details-strip {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1px;
      margin-top: 28px;
      border: 1px solid rgb(45 41 35 / 0.12);
      border-radius: 24px;
      overflow: hidden;
      background: rgb(45 41 35 / 0.12);
    }

    .detail-item {
      padding: 24px;
      background: var(--paper);
    }

    .detail-item span {
      display: block;
      margin-bottom: 8px;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: rgb(45 41 35 / 0.58);
      font-weight: 700;
    }

    .detail-item strong {
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.18rem;
      font-weight: 600;
    }

    .payment-list {
      display: grid;
      gap: 8px;
      margin: 0;
      padding-left: 18px;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.18rem;
      font-weight: 600;
    }

    /* ====== MODAL ====== */
    .modal {
      position: fixed;
      inset: 0;
      z-index: 30;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgb(45 41 35 / 0.56);
    }

    .modal.is-open {
      display: flex;
    }

    .modal-panel {
      width: min(1160px, 100%);
      max-height: min(840px, calc(100vh - 32px));
      overflow: hidden;
      background: var(--paper);
      color: var(--ink);
      border-radius: 26px;
      border: 1px solid rgb(45 41 35 / 0.12);
    }

    .modal-scroll {
      overflow-y: auto;
      max-height: min(840px, calc(100vh - 32px));
    }

    .modal-header {
      position: sticky;
      top: 0;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 14px 28px;
      background: var(--paper);
      border-bottom: 1px solid rgb(45 41 35 / 0.12);
    }

    .modal-header h2 {
      margin-bottom: 2px;
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
      font-weight: 600;
    }

    .modal-header p {
      margin-bottom: 0;
      color: rgb(45 41 35 / 0.68);
      line-height: 1.4;
      font-size: 0.82rem;
    }

    .close-modal {
      flex: 0 0 auto;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid rgb(45 41 35 / 0.16);
      background: var(--paper);
      color: var(--ink);
      cursor: pointer;
      font-size: 1.4rem;
      line-height: 1;
    }

    .room-list {
      padding: 28px 34px 34px;
      display: grid;
      gap: 16px;
    }

    /* ====== ROOM CARD ====== */
    .room-card {
      display: grid;
      grid-template-columns: minmax(0, 58%) minmax(320px, 42%);
      grid-template-areas: "gallery content";
      gap: 28px;
      align-items: stretch;
      padding: 20px;
      border: 1px solid rgb(45 41 35 / 0.12);
      border-radius: 24px;
      background: var(--paper);
      overflow: hidden;
      position: relative;
    }

    .room-gallery {
      grid-area: gallery;
      position: relative;
      width: 100%;
      height: clamp(380px, 42vw, 500px);
      border-radius: 20px;
      overflow: hidden;
      background: var(--ivory);
      border: 1px solid rgb(45 41 35 / 0.1);
      align-self: stretch;
      z-index: 0;
    }

    .room-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 220ms ease;
      z-index: 0;
    }

    .room-slide.is-active {
      opacity: 1;
      visibility: visible;
    }

    .room-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }

    .carousel-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      border: 1px solid rgb(255 253 248 / 0.42);
      background: rgb(45 41 35 / 0.46);
      color: var(--paper);
      cursor: pointer;
      font-size: 1.25rem;
      line-height: 1;
    }

    .carousel-control.prev { left: 12px; }
    .carousel-control.next { right: 12px; }

    .carousel-dots {
      position: absolute;
      z-index: 2;
      left: 0;
      right: 0;
      bottom: 12px;
      display: flex;
      justify-content: center;
      gap: 7px;
    }

    .carousel-dot {
      width: 7px;
      height: 7px;
      border: 0;
      border-radius: 999px;
      background: rgb(255 253 248 / 0.48);
      cursor: pointer;
      padding: 0;
    }

    .carousel-dot.is-active {
      background: var(--paper);
    }

    .room-card h3 {
      margin-bottom: 8px;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.65rem;
      line-height: 1.08;
      letter-spacing: -0.03em;
      font-weight: 600;
    }

    .room-card p {
      margin-bottom: 14px;
      line-height: 1.65;
      color: rgb(45 41 35 / 0.72);
    }

    .room-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .room-tags span {
      padding: 7px 10px;
      border: 1px solid rgb(45 41 35 / 0.12);
      border-radius: 999px;
      font-size: 0.72rem;
      color: rgb(45 41 35 / 0.72);
    }

    .room-info {
      grid-area: content;
      align-self: center;
      min-width: 0;
      position: relative;
      z-index: 1;
      padding: 12px 12px 12px 0;
      background: var(--paper);
    }

    .room-price {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 22px;
      padding-top: 18px;
      border-top: 1px solid rgb(45 41 35 / 0.12);
    }

    .room-price small {
      display: block;
      margin-bottom: 7px;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgb(45 41 35 / 0.58);
      font-weight: 700;
    }

    .room-price strong {
      display: block;
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(1.45rem, 2.4vw, 2rem);
      font-weight: 600;
      letter-spacing: -0.03em;
    }

    .room-price em {
      display: block;
      margin-top: 5px;
      font-style: normal;
      font-size: 0.78rem;
      color: rgb(45 41 35 / 0.58);
    }

    .note {
      margin: 4px 34px 34px;
      padding: 18px 20px;
      border: 1px solid rgb(45 41 35 / 0.12);
      border-radius: 20px;
      color: rgb(45 41 35 / 0.68);
      line-height: 1.6;
      font-size: 0.9rem;
    }

    /* ====== MODAL TABS ====== */
    .modal-tabs {
      display: flex;
      gap: 8px;
      padding: 12px 28px;
      border-bottom: 1px solid rgb(45 41 35 / 0.12);
    }

    .modal-tab {
      padding: 7px 18px;
      border-radius: 999px;
      border: 1px solid rgb(45 41 35 / 0.18);
      background: transparent;
      color: rgb(45 41 35 / 0.62);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
    }

    .modal-tab.is-active {
      background: var(--brand);
      color: var(--paper);
      border-color: var(--brand);
    }

    /* ====== HOTEL INFO PANEL ====== */
    .hotel-info-panel {
      display: none;
      padding: 28px 34px 34px;
    }

    .hotel-info-panel.is-visible {
      display: block;
    }

    .hotel-info-description {
      margin-bottom: 28px;
      line-height: 1.72;
      color: rgb(45 41 35 / 0.76);
      font-size: 0.93rem;
    }

    .hotel-info-sections {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .hotel-info-section {
      padding: 20px;
      border: 1px solid rgb(45 41 35 / 0.12);
      border-radius: 20px;
    }

    .hotel-info-section h4 {
      margin: 0 0 12px;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 700;
      color: rgb(45 41 35 / 0.58);
    }

    .hotel-info-section ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .hotel-info-section ul li {
      display: flex;
      align-items: flex-start;
      gap: 7px;
      font-size: 0.84rem;
      color: rgb(45 41 35 / 0.78);
      line-height: 1.42;
    }

    .hotel-info-section ul li::before {
      content: "–";
      color: rgb(45 41 35 / 0.36);
      flex-shrink: 0;
    }

    /* ====== FOOTER ====== */
    .footer {
      padding: 34px 0 58px;
      border-top: 1px solid rgb(45 41 35 / 0.12);
      color: rgb(45 41 35 / 0.68);
    }

    .footer-inner {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 22px;
      flex-wrap: wrap;
      font-size: 0.9rem;
    }

    /* ====== RESPONSIVE ====== */
    @media (max-width: 900px) {
      .topbar {
        padding-left: 18px;
        padding-right: 18px;
      }

      .nav-actions {
        display: none;
      }

      .hero {
        min-height: 650px;
        padding-top: 150px;
      }

      .section-head,
      .details-strip,
      .room-card {
        grid-template-columns: 1fr;
      }

      .room-card {
        grid-template-areas:
          "gallery"
          "content";
      }

      .room-gallery {
        height: clamp(320px, 62vw, 460px);
      }

      .room-info {
        padding: 0;
      }

      .room-price {
        align-items: flex-start;
        flex-direction: column;
      }

      .hotel-card {
        flex: 1 1 260px;
        max-width: 420px;
      }
    }

    @media (max-width: 560px) {
      .topbar {
        padding-top: 9px;
        padding-bottom: 9px;
      }

      .brand-text span {
        display: none;
      }

      .hero {
        min-height: 620px;
        padding-bottom: 54px;
      }

      .hero-actions,
      .hotel-footer {
        align-items: stretch;
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .section {
        width: min(100% - 28px, 1180px);
        padding: 62px 0;
      }

      .modal {
        padding: 12px;
      }

      .modal-panel {
        border-radius: 22px;
      }

      .modal-header,
      .room-list {
        padding-left: 20px;
        padding-right: 20px;
      }

      .note {
        margin-left: 20px;
        margin-right: 20px;
      }

      .modal-tabs {
        padding-left: 20px;
        padding-right: 20px;
      }

      .hotel-info-panel {
        padding-left: 20px;
        padding-right: 20px;
      }

      .hotel-info-sections {
        grid-template-columns: 1fr;
      }

      .hotel-card {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }
