    :root {
        --bg: #eef7fb;
        --card: #ffffff;
        --ink: #11343a;
        --muted: #506e72;
        --accent: #d9a469;
        --chip: #5b473a;
        --radius: 18px;
        --glass: rgba(255, 255, 255, 0.7);
        --shadow: 0 18px 40px rgba(8, 20, 24, 0.06);
    }

    @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Cormorant:ital,wght@0,300..700;1,300..700&family=Poppins&display=swap');

    * {
        box-sizing: border-box
    }

    body {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: normal;
        margin: 0;
        background: var(--bg);
        color: var(--ink);
        -webkit-font-smoothing: antialiased
    }

    a {
        color: inherit
    }

    .container {
        width: min(1200px, 94%);
        margin: 0 auto
    }

    header {
        padding: 18px 0;
        position: sticky;
        top: 0;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
        backdrop-filter: blur(1px);
        z-index: 40;
        height: 200px;
    }


    .top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px
    }

    .brand {
        display: flex;
        gap: 12px;
        align-items: center
    }

    .logo {
        min-width: 64px;
        min-height: 64px;
        width: 64px;
        height: 64px;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: var(--shadow);
        background-image: url('../img/Logo.jpg');
        background-repeat: no-repeat;
        background-size: 100%;

    }

    .brand h1 {
        margin: 0;
        font-size: 1.25rem
    }

    .brand small {
        display: block;
        color: var(--muted);
        font-size: .9rem
    }

    .contacts {
        display: flex;
        gap: 10px;
        flex-wrap: wrap
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 10%;
        background: var(--chip);
        color: #fff;
        text-decoration: none;
        cursor: pointer;
        border: none;
        transition: all 0.3s cubic-bezier(0.95, 0.02, 0, 0.99);
        padding: 10px 18px;
        border-radius: 10px;
        width: 100%;
        height: 50px;
    }
    .btn-more{
        font-size: 17px;
    }

    .btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
        background-color: #413329;
    }

    .btn.wh {
        background: #1fae5b
    }

    .btn.wh:hover {
        background-color: #1a8d4a;
    }

    .btn.reservar {
        background: #1fae5b;
        margin-top: 10px;
    }

    .btn.reservar:hover {
        background: #1a8d4a;
    }

    .card {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease;
    }

    .card.show-left {
        opacity: 1;
        transform: translateX(0);
    }

    .card.show-right {
        opacity: 1;
        transform: translateX(0);
    }


    .sem-margem {
        margin: 0px;
    }


    .hero {
        align-items: center;
        margin: 22px 0;
        width: 100%;
    }

    .hero-card {
        position: relative;
        background: var(--card);
        padding: 22px;
        border-radius: 20px;
        box-shadow: var(--shadow);
        background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, 0.5)), url("../img/Paisagem.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        padding-bottom: 200px;
        overflow: hidden;

    }

    .hero-card h2 {

        margin: 0 0 8px;
        color: #f0f6f8;
        z-index: 2;
        position: relative;
    }

    .hero-card p {
        line-height: 1.6;
        color: #f0f6f8;
        z-index: 2;
        position: relative;
    }

    .escuro {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .hero-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

    section {
        margin: 28px 0
    }

    .section-title {
        display: flex;
        align-items: end;
        justify-content: space-between
    }

    .section-title h3 {
        margin: 0;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-top: 14px
    }

    .card {
        background: var(--card);
        padding: 16px;
        border-radius: 16px;
        box-shadow: var(--shadow);
        display: flex;
        gap: 12px
    }

    .card .photo {
        width: 42%;
        min-height: 210px;
        border-radius: 12px;
        overflow: hidden
    }

    .card .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .card .info {
        padding: 6px 2px;
        flex: 1
    }

    .chip {
        display: inline-block;
        background: var(--chip);
        color: #fff;
        padding: 8px 12px;
        border-radius: 999px;
        font-weight: 700;
        font-size: .9rem
    }

    .desc {
        color: var(--muted);
        line-height: 1.6;
        margin-top: 8px
    }

    .tip {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-top: 12px;
        padding: 12px;
        border-radius: 12px;
        background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.95));
        border: 1px dashed rgba(0, 0, 0, 0.04)
    }

    .thumbs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 12px
    }

    .thumb {
        border-radius: 12px;
        overflow: hidden;
        height: 100px;
        background: #f0f6f8;
        transition: all 0.1s ease-in;
    }

    .thumb:hover {
        margin-top: -10px;
    }

    .thumb img {
        width: 100%;
    }

    footer {
        margin: 40px 0 80px
    }

    .foot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--muted);
        flex-wrap: wrap;
        gap: 12px
    }

    /* modal */
    .modal {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }

    .modal[aria-hidden="false"] {
        display: flex;
    }

    .modal-content {
        position: relative;
        background: var(--card);
        padding: 20px;
        border-radius: 18px;
        max-width: 90%;
        max-height: 90%;
        overflow-y: auto;
    }

    .modal-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
        overflow-x: auto;
        scroll-behavior: smooth;
    }

    .modal-gallery img {
        width: 100%;
        border-radius: 12px;
        object-fit: cover;
    }

    .close {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 2rem;
        cursor: pointer;
        color: var(--ink);
    }

    @media (max-width:980px) {
        .hero {
            grid-template-columns: 1fr;
        }

        .hero-card {
            padding-bottom: 10px;
            background-position: center top;
            background-repeat: no-repeat;
        }

        .grid {
            grid-template-columns: 1fr
        }

        .card {
            flex-direction: column
        }

        .card .photo {
            width: 100%;
            min-height: 200px
        }
    }