:root {
    --bg: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --border: #e5e7eb;
    --brand: #f76c07;
    --brand-600: #dc2626;
    --brand-50: #fef2f2;
    --card: #ffffff;
    --shadow: 0 10px 30px rgba(17,24,39,.07);
    --bginf: #f6f7fb;
    --cardinf: #ffffff;
    --radiusinf: 14px;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    color: var(--text);
    background: var(--bg)
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

/* NAVBAR */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.8);
    backdrop-filter: saturate(1.2) blur(10px);
    border-bottom: 1px solid var(--border)
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700
}

.brand-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand)
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center
}

    .nav-links a {
        font-weight: 500;
        color: #374151
    }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 600
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand)
}

.btn:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,.06)
}

/* HERO */
.hero {
    position: relative;
    padding: 48px 0 24px;
}

    .hero h1 {
        font-size: clamp(24px,4vw,36px);
        margin: 0 0 10px
    }

    .hero p {
        color: var(--muted);
        margin: 0 0 24px
    }

.search {
    display: grid;
    grid-template-columns: 2.2fr 1.4fr 1.2fr .8fr auto;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px;
    box-shadow: var(--shadow)
}

.search .fld {
    position: relative
}

.search label {
    position: absolute;
    left: 16px;
    top: 8px;
    font-size: 12px;
    color: var(--muted)
}

.search input, .search select {
    width: 100%;
    padding: 28px 16px 10px;
    border: 0;
    background: transparent;
    outline: none;
    font-weight: 600
}

.search .btn-primary {
    padding: 14px 20px;
    border-radius: 999px
}

.chipbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px
}

.chip {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: #111827;
    font-weight: 500
}

/* FILTERS */
.filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px 0
}

.tabs {
    display: flex;
    gap: 10px;
    overflow: auto
}

.tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
    background: #fff
}

    .tab.active {
        border-color: var(--text)
    }

.switch {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151
}

    .switch input {
        accent-color: var(--brand)
    }

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px
}

@media (max-width:1100px) {
    .grid {
        grid-template-columns: repeat(3,1fr)
    }
}

@media (max-width:800px) {
    .grid {
        grid-template-columns: repeat(2,1fr)
    }

    .search {
        grid-template-columns: 1fr;
        row-gap: 0;
        border-radius: 18px
    }

    .search .btn-primary {
        width: 100%
    }
}

@media (max-width:500px) {
    .grid {
        grid-template-columns: 1fr
    }
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,.03);
    transition: transform .15s ease
}

.card:hover {
    transform: translateY(-2px)
}

.card-img {
    position: relative;
    aspect-ratio: 16/11;
    background: #f3f4f6
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.badge {
    position: absolute;
    left: 12px;
    top: 12px;
    background: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 700
}

.fav {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #ffffffcc;
    border-radius: 999px;
    border: 1px solid var(--border);
    padding: 6px;
    display: grid;
    place-items: center
}

.card-body {
    padding: 12px 14px
}

.card-title {
    display: flex;
    align-items: center;
    justify-content: space-between
}

    .card-title h3 {
        font-size: 16px;
        margin: 0
    }

.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #374151;
    font-weight: 600
}

.muted {
    color: var(--muted);
    font-size: 14px
}

.price {
    margin-top: 6px;
    font-weight: 700
}

/* FOOTER */
footer {
    margin-top: 36px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    color: #374151
}

footer h4 {
    font-size: 1.2rem;
}

.f-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 18px
}

.f-cols h4 {
    margin: 0 0 10px
}

.f-cols a {
    display: block;
    color: #374151;
    margin: 8px 0
}

@media (max-width:900px) {
    .f-cols {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:600px) {
    .f-cols {
        grid-template-columns: 1fr
    }
}

/* ACCESSIBILITY */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}

/* info */
.containerInfo {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
}

.gallery {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 1rem;
}

.main-image img {
    width: 100%;
    border-radius: 10px;
}

.details {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
}

.details h2 {
    margin-top: 0;
    font-size: 1.3rem;
}

.details p {
    margin: 0.5rem 0;
}

.details button {
    display: block;
    width: 100%;
    padding: 0.7rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 25px;
    background: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.details button:hover {
    background: #f0f0f0;
}

.planta {
    grid-column: span 2;
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .containerInfo {
        grid-template-columns: 1fr;
    }

    .planta {
        grid-column: 1;
    }
}

.porgrupo {
    background-color: #b3b3b5;
    font-weight: bold;
}


/* Secção de marketing */
.marketing-section {
    margin: 40px 0;
    text-align: center;
}

.marketing-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.promo-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.promo-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 300px;
    transition: transform 0.3s;
}

    .promo-card:hover {
        transform: translateY(-5px);
    }

    .promo-card img {
        width: 100%;
        border-radius: 8px;
    }

/* Marketing*/
.vitrina {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
}

.campanha {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

    .campanha img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
        filter: brightness(70%); /* escurece um pouco para valorizar o texto */
    }

.campanha-texto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    padding: 20px;
}

    .campanha-texto h2 {
        font-size: 24px;
        margin: 0 0 10px;
        color: #f76c07; /* cor da empresa */
        text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
    }

    .campanha-texto p {
        font-size: 16px;
        margin: 0;
        background: rgba(0,0,0,0.5);
        padding: 5px 10px;
        border-radius: 8px;
    }

    /* Oferta*/

.oferta h2 {
    font-size: 1.5rem;
    margin: 30px 0 10px;
    color: #333;
}

.offers-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.offer-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 18px rgba(0,0,0,0.2);
}

.company-name {
    background: #f76c07;
    color: white;
    font-weight: bold;
    padding: 10px;
    font-size: 16px;
    text-transform: uppercase;
}

.offer-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.offer-content {
    padding: 15px;
}

.offer-title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    color: #222;
}

.offer-description {
    font-size: 14px;
    color: #555;
}

.offer-highlight {
    color: #f76c07;
    font-weight: bold;
}

/* Lazer*/


.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Bolinhas de navegação */
.dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

    .dot.active {
        background: #f76c07;
    }

.vitrina {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.comodo-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .comodo-card:hover {
        transform: translateY(-5px);
    }

.comodo-info {
    padding: 15px;
    background: #f76c070a;
    color: #333;
}

    .comodo-info h2 {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .comodo-info p {
        font-size: 0.95rem;
        opacity: 0.9;
    }

.comodo-imagens {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 8px;
    padding: 10px;
}

    .comodo-imagens img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 8px;
    }


/** INFO **/

/* containerInfo */
.containerInfo {
    max-width: 1120px;
    margin: 28px auto;
    padding: 18px;
    gap: 18px;
    display: grid;
    grid-template-columns: 2fr 1fr
}

/* cardInfos e imagens responsivas usando aspect-ratio */
.cardInfo {
    background: #fff;
    border: 2px solid #fff;
    border-radius: 10px;
    overflow: hidden
}

.media {
    width: 100%;
    display: block
}

/* Banners grandes 704x352 -> aspect-ratio 2/1 */
.banner {
    aspect-ratio: 2/1
}

    .banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.logo-small {
    aspect-ratio: 4/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    overflow: hidden
}

    .logo-small img {
        max-width: 90%;
        height: auto
    }

.info-cardInfo {
    padding: 12px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 8px
}

.pill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(18,144,214,0.12);
    background: #f4fbff;
    font-weight: 600
}

.hotel-title {
    font-size: 18px;
    margin: 8px 0
}

.map {
    aspect-ratio: 3/1;
    overflow: hidden;
    border-radius: 8px
}

    .map img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

/* Middle row (wide logo + description) */
.mid-row {
    grid-column: 1 / -1;
    margin-top: 18px;
    display: flex;
    gap: 12px;
    align-items: center
}

.mid-logo {
    aspect-ratio: 4/1;
    flex: 0 0 160px;
    border: 2px solid #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff
}

    .mid-logo img {
        max-width: 90%;
        height: auto
    }

.mid-desc {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgb(195 188 183);
    background: #fff
}

/* bottomInfo two photoInfos 550x300 -> aspect-ratio 11/6 (~1.83) */
.bottomInfo {
    grid-column: 1 / -1;
    display: contents;
    gap: 18px;
    margin-top: 18px;
}

.photoInfo {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #fff;
    flex: 0 0 auto; /* impede o flexbox de esticar ou encolher */
}

    .photoInfo .img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Pequenos ajustes visuais */
.content {
    padding: 12px
}

.small-muted {
    color: #616263;
    font-size: 14px
}

/* Responsividade */
@media (max-width:800px) {
    .containerInfo {
        grid-template-columns: 1fr
    }

    .mid-row {
        flex-direction: column;
        align-items: stretch
    }

    .bottomInfo {
        flex-direction: column
    }
}

@media (max-width:480px) {
    .containerInfo {
        padding: 12px
    }
}