:root {
    --primary: #FF6B00;
    --primary-hover: #e65a00;
    --bg-dark: #0f0f0f;
    --bg-card: rgba(26, 26, 26, 0.85); /* Leve transparência para estilo glassmorphism */
    --text-light: #ffffff;
    --text-muted: #d1d1d1;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* --- ESTILO DO FUNDO ANIMADO --- */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 200%; /* Largura maior para permitir o movimento */
    height: 100%;
    background-image: url('paporesenha.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: moveBackground 40s linear infinite alternate;
    opacity: 0.4; /* Ajuste aqui a intensidade da imagem */
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--bg-dark) 90%);
    z-index: -1;
}

@keyframes moveBackground {
    from { transform: translateX(0); }
    to { transform: translateX(-20%); }
}
/* ------------------------------- */

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; position: relative; }

header {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px); /* Efeito de desfoque no menu */
    padding: 20px 0;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.5rem; font-weight: 700; }
.logo .resenha { color: var(--primary); }

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }

.hero { text-align: center; padding: 80px 0 40px; }
.hero h1 { font-size: 3rem; margin-bottom: 10px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero h1 span { color: var(--primary); }

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.room-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 0, 0.1);
    backdrop-filter: blur(5px);
    transition: 0.4s;
}

.room-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.room-icon { font-size: 3rem; color: var(--primary); margin-bottom: 15px; }

.enter-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
}

.benefits-section { padding: 60px 0; text-align: center; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-top: 40px; }
.benefit-item i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }

footer { padding: 50px 0; text-align: center; color: var(--text-muted); font-size: 0.9rem; }