/* =========================================================
   REFÚGIO MADALENA
   CSS PRINCIPAL
========================================================= */


/* =========================================================
   1. RESET + VARIÁVEIS
========================================================= */

:root {

    --background: #f7f5f1;
    --background-light: #ffffff;
    --background-dark: #1d1d1b;

    --text: #20201e;
    --text-light: #6d6b66;
    --text-white: #ffffff;

    --accent: #a66a45;
    --accent-dark: #7e4d32;

    --border: #dedbd4;

    --container: 1200px;

    --display: "Pretta", "Montserrat", sans-serif;
    --sans: "Montserrat", sans-serif;

    --transition: 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    margin: 0;
    padding: 0;

    font-family: var(--sans);
    font-weight: 400;

    background: var(--background-dark);
    color: var(--text);

    line-height: 1.6;

    overflow-x: hidden;
}


main {
    padding-top: 20px;
}


html,
body {
    background: var(--background-dark);
}


img {
    display: block;

    width: 100%;
    height: auto;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


.container {
    width: min(90%, var(--container));

    margin: 0 auto;
}


/* =========================================================
   2. TIPOGRAFIA
========================================================= */

h1,
h2,
h3 {
    font-family: var(--display);

    font-weight: 800;

    line-height: 1.1;
}


h1 {
    font-size: 4rem;

    font-weight: 800;
}


h2 {
    font-size: 3rem;

    font-weight: 800;
}


h3 {
    font-size: 1.5rem;

    font-weight: 700;
}


p {
    color: var(--text-light);

    font-weight: 400;
}


.eyebrow {
    display: inline-block;

    margin-bottom: 1.5rem;

    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 800;

    letter-spacing: 0.18em;

    color: var(--accent);
}


/* =========================================================
   3. BOTÕES
========================================================= */

.primary-button,
.nav-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 1rem 1.6rem;

    background: var(--accent);
    color: var(--text-white);

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition: var(--transition);
}


.primary-button:hover,
.nav-button:hover {
    background: var(--accent-dark);

    transform: translateY(-2px);
}


.text-link {
    display: inline-block;

    margin-top: 2rem;

    padding-bottom: 0.3rem;

    color: var(--text);

    border-bottom: 1px solid var(--text);

    font-size: 0.85rem;
    font-weight: 700;

    transition: var(--transition);
}


.text-link:hover {
    color: var(--accent);

    border-color: var(--accent);
}


/* =========================================================
   4. NAVBAR
========================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 1.4rem 0;

    background: rgba(247, 245, 241, 0.92);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}


.navbar-container {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 2rem;
}


.logo {

    font-family: var(--display);

    font-size: 1.5rem;

    font-weight: 800;

    white-space: nowrap;
}


.nav-menu {

    display: flex;

    align-items: center;

    gap: 2rem;

    margin-left: auto;
}


.nav-menu a {

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 0.05em;

    transition: var(--transition);
}


.nav-menu a:hover {

    color: var(--accent);
}


.nav-button {

    padding: 0.75rem 1.2rem;
}


/* =========================================================
   5. HERO
========================================================= */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #222;
}


.hero-image {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}


.hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.90) 0%,
        rgba(0, 0, 0, 0.70) 40%,
        rgba(0, 0, 0, 0.50) 75%,
        rgba(0, 0, 0, 0.20) 100%
    );

    z-index: 1;
}


.hero-content {

    position: relative;

    z-index: 2;

    transform: translateY(60px);

    animation: fadeUp 1s ease forwards;
}


.hero-content .eyebrow {

    color: rgba(255, 255, 255, 0.8);
}


.hero-content h1 {

    max-width: 850px;

    margin-bottom: 2rem;

    color: white;
}


.hero-text {

    max-width: 550px;

    margin-bottom: 2.5rem;

    color: rgba(255, 255, 255, 0.88);

    font-size: 1.15rem;
}


.scroll-indicator {

    position: absolute;

    right: 5%;
    bottom: 2rem;

    z-index: 3;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 0.6rem;

    color: white;

    font-size: 0.7rem;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


.scroll-indicator span {

    font-size: 1.2rem;
}


/* =========================================================
   6. SEÇÕES GERAIS
========================================================= */

.section {

    padding: 8rem 0;
}


.section-heading {

    max-width: 750px;

    margin-bottom: 5rem;
}


.section-heading h2 {

    margin-bottom: 1.5rem;
}


.section-heading p {

    font-size: 18px;
}


/* =========================================================
   7. SOBRE
========================================================= */

.about {

    background: var(--background-light);
}


.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 7rem;
}


.about-text h2 {

    margin-bottom: 2rem;
}


.about-text p {

    font-size: 16px;
}


.about-text p:not(.eyebrow) {

    max-width: 540px;

    margin-bottom: 1.2rem;

    font-size: 18px;
}


.about-image {

    height: 650px;

    overflow: hidden;
}


.about-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   8. EXPERIÊNCIA
========================================================= */

.experience {

    background: var(--background);
}


.experience-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1.5rem;
}


.experience-card {

    background: white;

    overflow: hidden;
}


.experience-card img {

    height: 420px;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.experience-card:hover img {

    transform: scale(1.04);
}


.experience-card-content {

    padding: 2rem;
}


.experience-card-content span {

    display: block;

    margin-bottom: 1rem;

    color: var(--accent);

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.1em;
}


.experience-card-content h3 {

    margin-bottom: 1rem;
}


.experience-card-content p {

    font-size: 16px;
}


/* =========================================================
   9. ACOMODAÇÕES
========================================================= */

.accommodations {

    background: var(--background-light);
}


.accommodation-card {

    background: var(--background);
}


.accommodation-content {

    padding: 2.5rem;
}


.accommodation-content p {

    font-size: 14px;
}


.accommodation-content .eyebrow {

    margin-bottom: 0.8rem;
}


.accommodation-content h3 {

    margin-bottom: 1rem;

    font-family: var(--display);

    font-size: 1.3rem;

    font-weight: 800;
}


.accommodation-content p:not(.eyebrow) {

    max-width: 500px;

    margin-bottom: 1.5rem;
}


.accommodation-content a {

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 0.05em;

    color: var(--accent);
}


/* =========================================================
   10. GALERIA
========================================================= */

.spaces {

    background: var(--background);
}


.gallery {

    display: grid;

    grid-template-columns: repeat(12, 1fr);

    grid-auto-rows: 300px;

    gap: 1rem;
}


.gallery-item {

    position: relative;

    overflow: hidden;

    background: #ddd;
}


.gallery-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.gallery-item:hover img {

    transform: scale(1.05);
}


.gallery-large {

    grid-column: span 6;

    grid-row: span 2;
}


.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {

    grid-column: span 3;
}


/* =========================================================
   11. SÃO PAULO
========================================================= */

.city-section {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 700px;

    background: var(--background-dark);
}


.city-image {

    min-height: 600px;
}


.image-placeholder {

    width: 100%;
    height: 100%;

    min-height: 600px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 0.5rem;

    background: #343431;

    color: rgba(255, 255, 255, 0.7);

    text-align: center;
}


.image-placeholder img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.city-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 6rem;
}


.city-content .eyebrow {

    color: #c8916d;
}


.city-content h2 {

    margin-bottom: 2rem;

    color: white;
}


.city-content p:not(.eyebrow) {

    max-width: 500px;

    margin-bottom: 1rem;

    color: rgba(255, 255, 255, 0.65);

    font-size: 1.05rem;
}


.city-content p {

    font-size: 20px;
}


/* =========================================================
   12. LOCALIZAÇÃO
========================================================= */

.location {

    background: var(--background-light);
}


.location-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: stretch;

    gap: 5rem;
}


.location-content h2 {

    margin-bottom: 2rem;
}


.location-content > p:not(.eyebrow) {

    max-width: 520px;

    margin-bottom: 2rem;

    font-size: 1.05rem;
}


.location-content p {

    font-size: 20px;
}


.location-info {

    display: flex;

    flex-direction: column;

    gap: 1.5rem;

    padding-top: 1rem;
}


.location-info div {

    display: flex;

    flex-direction: column;

    gap: 0.3rem;
}


.location-info strong {

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.1em;
}


.location-info span {

    color: var(--text-light);
}


.location-map {

    width: 100%;

    overflow: hidden;

    border-radius: 18px;

    background: #e6e3dd;
}


.location-map iframe {

    display: block;

    width: 100%;
    height: 450px;

    border: 0;
}


/* =========================================================
   13. CTA FINAL
========================================================= */

.final-cta {

    padding: 10rem 0;

    background: var(--accent);

    text-align: center;
}


.final-cta .eyebrow {

    color: rgba(255, 255, 255, 0.7);
}


.final-cta h2 {

    max-width: 850px;

    margin: 0 auto 1.5rem;

    color: white;
}


.final-cta p:not(.eyebrow) {

    max-width: 550px;

    margin: 0 auto 2.5rem;

    color: rgba(255, 255, 255, 0.8);

    font-size: 1.05rem;
}


.final-cta .primary-button {

    background: white;

    color: var(--accent);
}


.final-cta .primary-button:hover {

    background: var(--background);

    color: var(--accent-dark);
}


/* =========================================================
   14. FOOTER
========================================================= */

.footer {

    padding: 5rem 0 2rem;

    margin: 0;

    background: var(--background-dark);

    color: white;
}


.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 4rem;

    padding-bottom: 4rem;
}


.footer-brand h3 {

    margin-bottom: 0.8rem;

    font-family: var(--display);

    font-size: 2rem;

    font-weight: 800;
}


.footer-brand p {

    color: rgba(255, 255, 255, 0.5);
}


.footer-links,
.footer-social {

    display: flex;

    flex-direction: column;

    gap: 0.8rem;
}


.footer-links a,
.footer-social a {

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.85rem;

    transition: var(--transition);
}


.footer-links a:hover,
.footer-social a:hover {

    color: white;
}


.footer-bottom {

    padding-top: 2rem;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}


.footer-bottom p {

    color: rgba(255, 255, 255, 0.4);

    font-size: 0.75rem;
}


/* =========================================================
   15. ANIMAÇÕES
========================================================= */

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(30px);
    }

    to {

        opacity: 1;

        transform: translateY(0);
    }

}


/* =========================================================
   16. CARROSSEL DE ACOMODAÇÕES
========================================================= */

#acomodacoes .accommodation-carousel {

    width: 100%;

    max-width: 760px;

    margin: 0 auto;
}


#acomodacoes .carousel-item {

    text-align: center;
}


#acomodacoes .carousel-item img,
#acomodacoes .accommodation-card img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    object-position: center;

    border-radius: 10px;
}


#acomodacoes .accommodation-content {

    padding: 18px 15px 8px;

    text-align: center;
}


#acomodacoes .accommodation-content .eyebrow {

    display: inline-block;

    margin-bottom: 0.8rem;

    text-align: center;
}


#acomodacoes .accommodation-content h3 {

    margin-bottom: 8px;

    font-family: var(--display);

    font-size: 1.4rem;

    font-weight: 800;

    line-height: 1.2;

    text-align: center;
}


#acomodacoes .accommodation-content p:not(.eyebrow) {

    max-width: 500px;

    margin: 0 auto 15px;

    font-size: 0.9rem;

    font-weight: 500;

    text-align: center;
}


/* =========================================================
   INDICADORES
========================================================= */

#acomodacoes .carousel-indicators {

    position: static;

    margin-top: 12px;

    margin-bottom: 0;
}


/* =========================================================
   SETAS
========================================================= */

#acomodacoes .carousel-control-prev,
#acomodacoes .carousel-control-next {

    top: 0;

    bottom: auto;

    width: 55px;

    height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;
}


#acomodacoes .carousel-control-prev-icon,
#acomodacoes .carousel-control-next-icon {

    width: 36px;

    height: 36px;

    background-color: rgba(0, 0, 0, 0.6);

    border-radius: 50%;

    background-size: 50%;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}


#acomodacoes .carousel-control-prev:hover .carousel-control-prev-icon,
#acomodacoes .carousel-control-next:hover .carousel-control-next-icon {

    background-color: rgba(0, 0, 0, 0.8);

    transform: scale(1.08);
}


/* =========================================================
   BOTÕES DE RESERVA
========================================================= */

#acomodacoes .booking-options {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 15px;
}


#acomodacoes .booking-option {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 9px 15px;

    border-radius: 6px;

    text-decoration: none;

    font-family: var(--sans);

    font-size: 0.82rem;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        box-shadow 0.3s ease;
}


#acomodacoes .booking-option i {

    font-size: 0.95rem;
}


#acomodacoes .booking-option:hover {

    transform: translateY(-2px);

    opacity: 0.9;
}


/* Reserva direta */

#acomodacoes .booking-option.direct {

    background: #222;

    color: #fff;
}


/* Airbnb */

#acomodacoes .booking-option.airbnb {

    background: #fff;

    color: #ff385c;

    border: 1px solid #ff385c;
}


#acomodacoes .booking-option.airbnb:hover {

    background: #ff385c;

    color: #fff;

    box-shadow: 0 5px 15px rgba(255, 56, 92, 0.2);
}


/* Booking.com */

#acomodacoes .booking-option.booking {

    background: #006ce4;

    color: #fff;
}


#acomodacoes .booking-option.booking:hover {

    background: #005bbd;

    box-shadow: 0 5px 15px rgba(0, 108, 228, 0.2);
}


/* =========================================================
   17. RESPONSIVIDADE — TABLET
========================================================= */

@media (max-width: 900px) {


    /* -----------------------------------------------------
       GERAL
    ----------------------------------------------------- */

    .container {

        width: min(90%, 100%);
    }


    .section {

        padding: 6rem 0;
    }


    /* -----------------------------------------------------
       NAVBAR
    ----------------------------------------------------- */

    .navbar {

        padding: 1rem 0;
    }


    .navbar-container {

        gap: 1rem;
    }


    .nav-menu {

        display: none;
    }


    .navbar-container {

        justify-content: space-between;
    }


    .logo {

        font-size: 1.3rem;
    }


    .nav-button {

        padding: 0.7rem 1rem;

        font-size: 0.7rem;
    }


    /* -----------------------------------------------------
       TIPOGRAFIA
    ----------------------------------------------------- */

    h1 {

        font-size: clamp(3.2rem, 8vw, 5rem);
    }


    h2 {

        font-size: clamp(2.5rem, 6vw, 4rem);
    }


    h3 {

        font-size: 1.4rem;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero {

        min-height: 90vh;
    }


    .hero-content {

        transform: translateY(40px);
    }


    .hero-content h1 {

        max-width: 700px;
    }


    .hero-text {

        max-width: 600px;

        font-size: 1.05rem;
    }


    /* -----------------------------------------------------
       SOBRE
    ----------------------------------------------------- */

    .about-grid {

        grid-template-columns: 1fr;

        gap: 3rem;
    }


    .about-image {

        height: 500px;
    }


    /* -----------------------------------------------------
       EXPERIÊNCIA
    ----------------------------------------------------- */

    .experience-grid {

        grid-template-columns: 1fr 1fr;
    }


    .experience-card:last-child {

        grid-column: span 2;
    }


    .experience-card img {

        height: 350px;
    }


    /* -----------------------------------------------------
       ACOMODAÇÕES
    ----------------------------------------------------- */

    #acomodacoes .accommodation-carousel {

        max-width: 90%;
    }


    #acomodacoes .carousel-item img,
    #acomodacoes .accommodation-card img {

        height: 300px;
    }


    /*
       A altura das setas é exatamente
       igual à altura da imagem.
    */

    #acomodacoes .carousel-control-prev,
    #acomodacoes .carousel-control-next {

        width: 45px;

        height: 300px;
    }


    #acomodacoes .carousel-control-prev-icon,
    #acomodacoes .carousel-control-next-icon {

        width: 32px;

        height: 32px;
    }


    #acomodacoes .accommodation-content {

        padding: 15px 10px 5px;
    }


    #acomodacoes .accommodation-content h3 {

        font-size: 1.2rem;
    }


    #acomodacoes .accommodation-content p:not(.eyebrow) {

        font-size: 0.88rem;
    }


    #acomodacoes .booking-options {

        gap: 8px;
    }


    #acomodacoes .booking-option {

        padding: 0.65rem 0.9rem;

        font-size: 0.78rem;
    }


    /* -----------------------------------------------------
       GALERIA
    ----------------------------------------------------- */

    .gallery {

        grid-auto-rows: 250px;
    }


    .gallery-large {

        grid-column: span 6;

        grid-row: span 2;
    }


    /* -----------------------------------------------------
       SÃO PAULO
    ----------------------------------------------------- */

    .city-section {

        grid-template-columns: 1fr;
    }


    .city-image {

        min-height: 500px;
    }


    .image-placeholder {

        min-height: 500px;
    }


    .city-content {

        padding: 5rem 10%;
    }


    .city-content h2 {

        font-size: clamp(2.5rem, 6vw, 4rem);
    }


    /* -----------------------------------------------------
       LOCALIZAÇÃO
    ----------------------------------------------------- */

    .location-grid {

        grid-template-columns: 1fr;

        gap: 3rem;
    }


    .location-map iframe {

        height: 400px;
    }


    /* -----------------------------------------------------
       CTA
    ----------------------------------------------------- */

    .final-cta {

        padding: 7rem 0;
    }


    .final-cta h2 {

        font-size: clamp(2.5rem, 6vw, 4rem);
    }


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .footer-grid {

        grid-template-columns: 1fr 1fr;

        gap: 3rem;
    }

}


/* =========================================================
   18. RESPONSIVIDADE — CELULAR
========================================================= */

@media (max-width: 600px) {


    /* -----------------------------------------------------
       GERAL
    ----------------------------------------------------- */

    .container {

        width: 90%;
    }


    .section {

        padding: 5rem 0;
    }


    /* -----------------------------------------------------
       NAVBAR
    ----------------------------------------------------- */

    .navbar {

        padding: 0.9rem 0;
    }


    .navbar-container {

        gap: 0.8rem;
    }


    .logo {

        max-width: 65%;

        white-space: normal;

        font-size: 1.1rem;

        line-height: 1.1;
    }


    .nav-button {

        padding: 0.6rem 0.8rem;

        font-size: 0.65rem;

        white-space: nowrap;
    }


    /* -----------------------------------------------------
       TIPOGRAFIA
    ----------------------------------------------------- */

    h1 {

       
      font-size: clamp(2.8rem, 14vw, 4.5rem); 

        line-height: 0.98;
    }


    h2 {

        font-size: clamp(2.3rem, 11vw, 3.5rem);

        line-height: 1;
    }


    h3 {

        font-size: 1.3rem;
    }


    .eyebrow {

        margin-bottom: 1rem;

        font-size: 0.7rem;

        letter-spacing: 0.14em;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero {

        min-height: 90vh;
    }


    .hero-content {

        padding-top: 4rem;

        transform: translateY(20px);
    }


    .hero-content h1 {

        max-width: 100%;

      

        margin-bottom: 1.5rem;
    }


    .hero-text {

        max-width: 100%;

        margin-bottom: 2rem;

        font-size: 0.95rem;

        line-height: 1.6;
    }


    .primary-button {

        padding: 0.9rem 1.2rem;

        font-size: 0.7rem;
    }


    .scroll-indicator {

        display: none;
    }


    /* -----------------------------------------------------
       SOBRE
    ----------------------------------------------------- */

    .about-grid {

        gap: 2.5rem;
    }


    .about-text h2 {

        margin-bottom: 1.5rem;
    }


    .about-text p:not(.eyebrow) {

        font-size: 1rem;
    }


    .about-image {

        height: 400px;
    }


    /* -----------------------------------------------------
       CABEÇALHOS
    ----------------------------------------------------- */

    .section-heading {

        margin-bottom: 3rem;
    }


    .section-heading h2 {

        margin-bottom: 1.2rem;
    }


    .section-heading p {

        font-size: 1rem;
    }


    /* -----------------------------------------------------
       EXPERIÊNCIA
    ----------------------------------------------------- */

    .experience-grid {

        grid-template-columns: 1fr;

        gap: 1.2rem;
    }


    .experience-card:last-child {

        grid-column: auto;
    }


    .experience-card img {

        height: 350px;
    }


    .experience-card-content {

        padding: 1.5rem;
    }


    .experience-card-content p {

        font-size: 0.95rem;
    }


    /* -----------------------------------------------------
       ACOMODAÇÕES
    ----------------------------------------------------- */

    #acomodacoes .accommodation-carousel {

        max-width: 100%;
    }


    #acomodacoes .carousel-item img,
    #acomodacoes .accommodation-card img {

        height: 230px;

        border-radius: 8px;
    }


    /*
       Setas perfeitamente centralizadas
       em relação à imagem.
    */

    #acomodacoes .carousel-control-prev,
    #acomodacoes .carousel-control-next {

        width: 40px;

        height: 230px;

        top: 0;

        bottom: auto;

        display: flex;

        align-items: center;

        justify-content: center;
    }


    #acomodacoes .carousel-control-prev-icon,
    #acomodacoes .carousel-control-next-icon {

        width: 30px;

        height: 30px;

        background-size: 50%;
    }


    #acomodacoes .accommodation-content {

        padding: 1.2rem 0.5rem 0.5rem;
    }


    #acomodacoes .accommodation-content h3 {

        font-size: 1.15rem;
    }


    #acomodacoes .accommodation-content p:not(.eyebrow) {

        font-size: 0.85rem;
    }


    /*
       Botões de reserva em coluna.
    */

    #acomodacoes .booking-options {

        flex-direction: column;

        align-items: stretch;

        gap: 0.5rem;

        margin-top: 1rem;
    }


    #acomodacoes .booking-option {

        width: 100%;

        min-height: 42px;

        padding: 0.65rem 0.8rem;

        font-size: 0.78rem;
    }


    /* -----------------------------------------------------
       GALERIA
    ----------------------------------------------------- */

    .gallery {

        grid-template-columns: 1fr 1fr;

        grid-auto-rows: 200px;

        gap: 0.6rem;
    }


    .gallery-large {

        grid-column: span 2;

        grid-row: span 1;
    }


    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {

        grid-column: span 1;
    }


    /* -----------------------------------------------------
       SÃO PAULO
    ----------------------------------------------------- */

    .city-image {

        min-height: 350px;
    }


    .image-placeholder {

        min-height: 350px;
    }


    .city-content {

        padding: 4rem 7%;
    }


    .city-content h2 {

        font-size: clamp(2.3rem, 11vw, 3.5rem);
    }


    .city-content p:not(.eyebrow) {

        font-size: 0.95rem;
    }


    /* -----------------------------------------------------
       LOCALIZAÇÃO
    ----------------------------------------------------- */

    .location-grid {

        gap: 2.5rem;
    }


    .location-content p {

        font-size: 1rem;
    }


    .location-content > p:not(.eyebrow) {

        font-size: 0.95rem;
    }


    .location-info {

        gap: 1.2rem;
    }


    .location-info span {

        font-size: 0.9rem;
    }


    .location-map {

        border-radius: 12px;
    }


    .location-map iframe {

        height: 350px;
    }


    /* -----------------------------------------------------
       CTA
    ----------------------------------------------------- */

    .final-cta {

        padding: 6rem 0;
    }


    .final-cta h2 {

        font-size: clamp(2.3rem, 11vw, 3.5rem);
    }


    .final-cta p:not(.eyebrow) {

        font-size: 0.95rem;
    }


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .footer {

        padding: 4rem 0 2rem;
    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 2.5rem;

        padding-bottom: 3rem;
    }


    .footer-brand h3 {

        font-size: 1.6rem;
    }

}


/* =========================================================
   19. CELULARES PEQUENOS
========================================================= */

@media (max-width: 480px) {


    /* -----------------------------------------------------
       NAVBAR
    ----------------------------------------------------- */

    .logo {

        max-width: 60%;

        font-size: 1rem;
    }


    .nav-button {

        padding: 0.55rem 0.7rem;

        font-size: 0.62rem;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero {

        min-height: 88vh;
    }


    .hero-content {

        transform: translateY(10px);
    }


    /* -----------------------------------------------------
       SOBRE
    ----------------------------------------------------- */

    .about-image {

        height: 350px;
    }


    /* -----------------------------------------------------
       EXPERIÊNCIA
    ----------------------------------------------------- */

    .experience-card img {

        height: 300px;
    }


    /* -----------------------------------------------------
       ACOMODAÇÕES
    ----------------------------------------------------- */

    #acomodacoes .carousel-item img,
    #acomodacoes .accommodation-card img {

        height: 210px;
    }


    #acomodacoes .carousel-control-prev,
    #acomodacoes .carousel-control-next {

        height: 210px;

        width: 36px;
    }


    #acomodacoes .carousel-control-prev-icon,
    #acomodacoes .carousel-control-next-icon {

        width: 28px;

        height: 28px;
    }


    /* -----------------------------------------------------
       GALERIA
    ----------------------------------------------------- */

    .gallery {

        grid-auto-rows: 170px;
    }


    /* -----------------------------------------------------
       SÃO PAULO
    ----------------------------------------------------- */

    .city-image,
    .image-placeholder {

        min-height: 300px;
    }


    /* -----------------------------------------------------
       MAPA
    ----------------------------------------------------- */

    .location-map iframe {

        height: 300px;
    }

}


/* =========================================================
   20. ACESSIBILIDADE
========================================================= */

a:focus-visible {

    outline: 2px solid var(--accent);

    outline-offset: 4px;
}


::selection {

    background: var(--accent);

    color: white;
}


@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}
