html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: system-ui;
}

.hero {
    background: url("../../uploads/img/hero.jpg") center/cover no-repeat;
    height: 100vh;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.btn-book {
    background: #2e7d32;
    border: none;
    padding: 14px 28px;
    font-size: 18px;
}

.section {
    padding: 90px 0;
}

.gallery img {
    border-radius: 12px;
    transition: .3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.cta {
    background: #2e7d32;
    color: white;
    padding: 70px 0;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 999;
    text-decoration: none;
}

.navbar {
    background: rgba(0, 0, 0, 0.6);
}

body.admin_login {
    font-family: Arial;
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-box {
    background: #fff;
    padding: 40px;
    width: 360px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

.login-box h2 {
    text-align: center;
    margin-bottom: 25px;
}

.login-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-box button {
    width: 100%;
    padding: 12px;
    background: #0f766e;
    border: 0;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.login-box button:hover {
    background: #115e59;
}

.erro {
    color: red;
    text-align: center;
    margin-bottom: 10px;
}

.logo {
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bold;
}

body.dark {
    background: #111827;
    color: white;
}

body.dark .card {
    background: #1f2937;
    color: white;
}

#modalImagem .modal-body {
    overflow-y: auto;
}

#modalImagem img {
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.nav-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 28px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

#prevImg {
    left: 10px;
}

#nextImg {
    right: 10px;
}

.nav-img:hover {
    background: black;
}

.drop-zone {
    border: 2px dashed #ccc;
    padding: 40px;
    text-align: center;
    background: white;
    border-radius: 10px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: .2s;
}

.drop-zone.dragover {
    border-color: #4CAF50;
    background: #f0fff4;
}