:root {
    --accent: #0ea5a4;
    --accent-700: #0b7f7d;
}

/* Tipografia */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #f6fbff, #eef9fb);
}
.playfair-font {
    font-family: 'Playfair Display', serif;
}
.text-accent {
    color: var(--accent-700) !important;
}

/* Componente Logo */
.logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #7ee8fa, var(--accent));
    display: grid;
    place-items: center;
    color: white;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.brand-name {
    font-size: 1rem;
}

/* Navbar Overrides */
.navbar-brand:hover {
    opacity: 0.85;
}
.navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(8px);
}
.nav-link:hover {
    color: var(--accent-700) !important;
}
.cta {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
}
.cta:hover {
    background: var(--accent-700) !important;
}

/* HERO */
.hero-card {
    background: #ffffff;
}
.info .icon-wrap {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
}
.visual {
    grid-template-rows: 60% 40%;
}

/* Acomodações */
.card-img-ac {
    height: 180px; /* Altura fixa para as imagens */
}
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
}

/* Galeria */
.thumb {
    cursor: pointer;
}
.thumb-img {
    transition: transform 0.4s ease;
}
.thumb:hover .thumb-img {
    transform: scale(1.08);
}