

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ebdec8;
    color: #353a3e;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
}

p,
a,
button,
input,
textarea,
select {
    font-family: 'Inter', sans-serif;
}

.frase-especial,
.destaque,
.quote,
.italic,
em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    background-color: #ebdec8;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
}

.nav a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 0.55;
}

.btn-header {
    border: 1px solid #353a3e;
    padding: 11px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background-color: #353a3e;
    color: #ebdec8;
}

.hero {
    width: 100%;
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("background2.png");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 850px;
    text-align: center;
    color: #ffffff;
}

.hero-location {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 22px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 8vw, 100px);
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 28px;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 35px;
}

.hero-button {
    display: inline-block;
    padding: 14px 30px;
    border: 1px solid currentColor;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #ffffff;
    color: #353a3e;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    font-weight: 500;
    color: #a57a50;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 65px);
    font-weight: 400;
    line-height: 1.05;
    color: #353a3e;
}

p {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

.location-section {
    width: 100%;
    padding: 120px 7%;
    background-color: #e3d2b5;
}

.location-content {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 100px;
}

.location-intro h2 {
    max-width: 650px;
    margin-bottom: 30px;
}

.location-intro > p:last-child {
    max-width: 600px;
    font-size: 16px;
}

.location-info {
    padding-top: 10px;
}

.address {
    max-width: 420px;
    font-size: 15px;
    margin-bottom: 25px;
}

.location-link {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    border-bottom: 1px solid #353a3e;
    padding-bottom: 5px;
}

.chale-ceu-section {
    width: 100%;
    padding: 120px 7%;
    background-color: #ebdec8;
}

.chale-ceu-intro {
    width: 100%;
    max-width: 750px;
    margin: 0 auto 70px;
    text-align: center;
}

.chale-ceu-intro h2 {
    margin-bottom: 25px;
}

.chale-ceu-intro > p:last-child {
    font-size: 15px;
}

.diferenciais-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.diferencial-card {
    min-width: 0;
    background-color: #e3d2b5;
    border: 1px solid rgba(115, 82, 45, 0.14);
    border-radius: 0;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(53, 58, 62, 0.08);
}

.diferencial-image {
    width: 100%;
    height: 320px;
    padding: 0;
    overflow: hidden;
    background-color: #d8c09d;
    border: 1px solid rgba(115, 82, 45, 0.24);
    border-radius: 40px;
    position: relative;
}

.diferencial-image img {
    width: 100%;
    height: 230px;
    display: block;
    object-fit: cover;
    object-position: center;
    border: none;
    border-radius: 38px 38px 34px 34px;
    transition: transform 0.5s ease;
}

.diferencial-card:hover .diferencial-image img {
    transform: scale(1.02);
}

.diferencial-info {
    padding: 30px 22px 32px;
    background-color: #ebdec8;
}

.diferencial-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.15;
    color: #353a3e;
    margin-bottom: 15px;
}

.diferencial-info p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

.chales-section {
    width: 100%;
    padding: 120px 7%;
    background-color: #e3d2b5;
}

.section-heading {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 65px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 10px;
}

.chales-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.chale-card {
    min-width: 0;
    background-color: #ebdec8;
    border: 1px solid rgba(115, 82, 45, 0.14);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.chale-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(53, 58, 62, 0.08);
}

.chale-image {
    width: 100%;
    height: 430px;
    overflow: hidden;
    border: 1px solid rgba(115, 82, 45, 0.30);
    border-radius: 40px;
    background-color: #cfb38a;
}

.chale-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.chale-card:hover .chale-image img {
    transform: scale(1.04);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #cfb38a;
    color: #777;
    font-size: 13px;
    border-radius: inherit;
}

.chale-info {
    padding: 35px;
}

.chale-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 500;
    color: #353a3e;
    margin-bottom: 15px;
}

.chale-info p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 25px;
}

.card-button {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid #353a3e;
    padding-bottom: 5px;
}

.gastronomia-section {
    width: 100%;
    padding: 120px 6%;
    background-color: #ebdec8;
}

.gastronomia-intro {
    width: 100%;
    max-width: 780px;
    margin: 0 auto 65px;
    text-align: center;
}

.gastronomia-intro h2 {
    margin-bottom: 25px;
}

.gastronomia-intro > p:last-child {
    font-size: 15px;
}

.gastronomia-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.gastronomia-card {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    background-color: #e3d2b5;
    border: 1px solid rgba(115, 82, 45, 0.14);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.gastronomia-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(53, 58, 62, 0.08);
}

.gastronomia-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border: 1px solid rgba(115, 82, 45, 0.30);
    border-radius: 40px;
    background-color: #d8c09d;
}

.gastronomia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.gastronomia-card:hover .gastronomia-image img {
    transform: scale(1.04);
}

.gastronomia-info {
    padding: 25px 25px 28px;
}

.gastronomia-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 500;
    color: #353a3e;
    margin-bottom: 8px;
    line-height: 1.1;
}

.gastronomia-location {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    margin-bottom: 18px;
    color: #665747;
}

.gastronomia-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.gastronomia-links a {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    border-bottom: 1px solid #353a3e;
    padding-bottom: 4px;
    transition: opacity 0.3s ease;
}

.gastronomia-links a:hover {
    opacity: 0.5;
}

.restaurantes-intro {
    margin-top: 120px;
}

.experience-section {
    width: 100%;
    padding: 120px 6%;
    background-color: #e3d2b5;
}

.experience-section .gastronomia-intro {
    margin-bottom: 65px;
}

#servicos {
    background-color: #ebdec8;
}

.informacoes-section {
    width: 100%;
    padding: 120px 7%;
    background-color: #e3d2b5;
}

.informacoes-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.informacoes-card {
    min-width: 0;
    background-color: #ebdec8;
    padding: 45px;
    border: 1px solid rgba(115, 82, 45, 0.14);
}

.informacoes-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    color: #353a3e;
    margin-bottom: 30px;
}

.informacoes-destaques {
    margin-bottom: 35px;
}

.informacoes-destaques p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
}

.informacoes-bloco {
    margin-top: 30px;
}

.informacoes-bloco h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #353a3e;
}

.informacoes-bloco p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 15px;
}

.informacoes-card-breve {
    display: flex;
    align-items: center;
    min-height: 400px;
}

.informacoes-breve-texto {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 21px;
    line-height: 1.6;
    max-width: 500px;
}

.regras-section {
    width: 100%;
    padding: 120px 7%;
    background-color: #ebdec8;
}

.regras-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.regras-bloco {
    margin-bottom: 45px;
}

.regras-bloco h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 500;
    color: #353a3e;
    margin-bottom: 18px;
}

.regras-bloco p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 15px;
}

.regras-lista {
    margin-top: 40px;
}

.regras-lista p {
    position: relative;
    padding-left: 22px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 14px;
}

.regras-lista p::before {
    content: "•";
    position: absolute;
    left: 5px;
    color: #353a3e;
}

.regras-atencao {
    margin-top: 40px;
    padding: 22px 25px;
    background-color: #d8c09d;
    border: 1px solid rgba(115, 82, 45, 0.18);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.chale-modal-content {
    border: 1px solid rgba(115, 82, 45, 0.30);
}

.chale-modal .diferencial-card {
    border: 1px solid rgba(115, 82, 45, 0.20);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.chale-modal .diferencial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(53, 58, 62, 0.10);
}

.chale-modal .diferencial-image {
    width: 100%;
    height: 320px;
    padding: 0;
    overflow: hidden;
    position: relative;
    background-color: #d8c09d;
    border: 1px solid rgba(115, 82, 45, 0.24);
    border-radius: 40px;
}

.chale-modal .diferencial-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border: none;
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.chale-modal .diferencial-card:hover .diferencial-image img {
    transform: scale(1.02);
}

.modal-info-bloco {
    border: 1px solid rgba(115, 82, 45, 0.16);
}

.modal-informacoes {
    border-top: 1px solid rgba(115, 82, 45, 0.18);
}

.chale-modal-fechar {
    border-color: rgba(115, 82, 45, 0.22);
}

.contact-section {
    width: 100%;
    padding: 140px 7%;
    background-color: #353a3e;
    color: #ebdec8;
}

.contact-content {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.contact-section .section-label {
    color: #e8d9bd;
}

.contact-content h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #ebdec8;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border-bottom: 1px solid rgba(235, 222, 200, 0.75);
    padding-bottom: 5px;
}

.contact-section .hero-button {
    color: #ebdec8;
}

.contact-section .hero-button:hover {
    background-color: #ebdec8;
    color: #353a3e;
}

.footer {
    width: 100%;
    padding: 30px 7%;
    background-color: #2f3336;
    color: #e8d9bd;
    text-align: center;
}

.footer p {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
}

.footer-credit {
    text-align: center;
    line-height: 1.8;
}

.footer-credit span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-credit a {
    display: inline-block;
    font-size: 0.9rem;
    margin-top: 2px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.footer-credit a:hover {
    opacity: 0.6;
}

@media (max-width: 1000px) {

    .header {
        padding: 0 4%;
    }

    .nav {
        gap: 20px;
    }

    .nav a {
        font-size: 12px;
    }

    .gastronomia-section,
    .experience-section {
        padding-left: 4%;
        padding-right: 4%;
    }

    .gastronomia-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 750px) {

    .header {
        height: auto;
        min-height: 75px;
        padding: 18px 5%;
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo img {
        width: 70px;
        height: 70px;
        object-fit: contain;
    }

    .nav {
        width: 100%;
        order: 3;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px 22px;
    }

    .btn-header {
        padding: 9px 18px;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: clamp(52px, 14vw, 78px);
    }

    .hero-description {
        font-size: 15px;
    }

    .location-section {
        padding: 80px 6%;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .chale-ceu-section {
        padding: 80px 6%;
    }

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

    .diferencial-image {
        height: 300px;
    }

    .diferencial-image img {
        height: 215px;
    }

    .chales-section {
        padding: 80px 6%;
    }

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

    .chale-image {
        height: 350px;
    }

    .gastronomia-section,
    .experience-section {
        padding: 80px 6%;
    }

    .gastronomia-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gastronomia-image {
        height: 300px;
    }

    .restaurantes-intro {
        margin-top: 80px;
    }

    .informacoes-section {
        padding: 80px 6%;
    }

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

    .informacoes-card {
        padding: 30px;
    }

    .regras-section {
        padding: 80px 6%;
    }

    .contact-section {
        padding: 100px 6%;
    }
}

@media (max-width: 480px) {

    .header {
        justify-content: center;
    }

    .logo {
        width: 100%;
        justify-content: center;
    }

    .btn-header {
        display: none;
    }

    .nav {
        gap: 12px 17px;
    }

    .nav a {
        font-size: 11px;
    }

    .hero {
        min-height: 550px;
    }

    .hero-location {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 14px;
    }

    h2 {
        font-size: 44px;
    }

    .section-label {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .location-section,
    .chale-ceu-section,
    .chales-section,
    .gastronomia-section,
    .experience-section,
    .informacoes-section,
    .regras-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .diferencial-image,
    .gastronomia-image {
        height: 270px;
        border-radius: 32px;
    }

    .diferencial-image img {
        height: 195px;
        border-radius: 30px 30px 27px 27px;
    }

    .chale-image {
        height: 300px;
        border-radius: 32px;
    }

    .gastronomia-info,
    .chale-info,
    .diferencial-info {
        padding: 25px 20px;
    }

    .gastronomia-info h3 {
        font-size: 28px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

.chale-modal .diferencial-image {
    width: 100%;
    height: 320px !important;
    padding: 0 !important;
    margin: 0;
    overflow: hidden !important;
    background: none !important;
    border: 1px solid rgba(115, 82, 45, 0.24);
    border-radius: 40px;
    position: relative;
}

.chale-modal .diferencial-image img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: center center;
    border: none !important;
    border-radius: inherit !important;
    transition: transform 0.5s ease;
}

.chale-modal .diferencial-card:hover .diferencial-image img {
    transform: scale(1.02);
}

.chale-modal .diferencial-card {
    overflow: hidden;
}

.chale-modal .diferencial-image {
    line-height: 0;
}

@media (max-width: 750px) {

    .chale-modal .diferencial-image {
        height: 300px !important;
        border-radius: 36px;
    }

    .chale-modal .diferencial-image img {
        height: 100% !important;
        min-height: 100% !important;
        border-radius: inherit !important;
    }
}

@media (max-width: 480px) {

    .chale-modal .diferencial-image {
        height: 270px !important;
        border-radius: 32px;
    }

    .chale-modal .diferencial-image img {
        height: 100% !important;
        min-height: 100% !important;
        border-radius: inherit !important;
    }
}

.contact-message {
    width: 100%;
    max-width: 760px;
    margin: 45px auto 0;
    text-align: center;
}

.contact-message p {
    margin: 0 auto 18px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
    color: #ebdec8;
}

.contact-message p:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {

    .contact-message {
        max-width: 100%;
        margin-top: 38px;
    }

    .contact-message p {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

}

.abrir-estadia {
    white-space: normal;
}

.estadia-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.estadia-modal.ativo {
    display: flex;
}

.estadia-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 15, 0.72);
    backdrop-filter: blur(5px);
}

.estadia-modal-content {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: #ebdec8;
    color: #353a3e;
    padding: 54px;
    border: 1px solid rgba(115, 82, 45, 0.30);
    border-radius: 4px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.estadia-modal-fechar {
    position: sticky;
    float: right;
    top: 0;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(115, 82, 45, 0.22);
    border-radius: 50%;
    background: #ebdec8;
    color: #353a3e;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
}

.estadia-modal-fechar:hover {
    transform: rotate(90deg);
}

.estadia-painel {
    display: none;
}

.estadia-painel.ativo {
    display: block;
}

.estadia-header {
    max-width: 800px;
    margin-bottom: 38px;
}

.estadia-header h2 {
    margin-bottom: 18px;
}

.estadia-header p:last-child {
    line-height: 1.8;
}

.estadia-conteudo {
    padding: 30px;
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(115, 82, 45, 0.16);
}

.estadia-conteudo p {
    margin: 0;
}

@media (max-width: 850px) {

    .estadia-modal-content {
        padding: 34px 24px;
    }

    .estadia-modal-fechar {
        width: 38px;
        height: 38px;
        font-size: 25px;
    }

}

@media (max-width: 480px) {

    .estadia-modal {
        padding: 12px;
    }

    .estadia-modal-content {
        padding: 30px 18px;
    }

    .estadia-header h2 {
        font-size: 42px;
    }

    .estadia-conteudo {
        padding: 22px;
    }

}

.estadia-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.estadia-card {
    background: #e3d2b5;
    border: 1px solid rgba(53, 58, 62, 0.14);
    overflow: hidden;
}

.estadia-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #ebdec8;
}

.estadia-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.estadia-card-info {
    padding: 22px 24px 24px;
}

.estadia-card-info h3 {
    margin: 0 0 9px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 500;
    color: #353a3e;
}

.estadia-card-info p {
    margin: 0 0 17px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: #353a3e;
}

.estadia-card-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.estadia-card-links a {
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(53, 58, 62, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #353a3e;
    text-decoration: none;
}

.estadia-card-links a:hover {
    opacity: 0.65;
}

@media (max-width: 650px) {

    .estadia-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .estadia-card-info {
        padding: 20px;
    }

    .estadia-card-info h3 {
        font-size: 26px;
    }

}

.chale-modal .diferencial-card,
.chale-modal .diferencial-info,
.chale-modal .modal-info-bloco {
    background-color: #d8c09d !important;
}

.chales .chale-card, .chale-card { background-color: #d8c09d !important; }
