        /* --- RESET E VARIÁVEIS --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            /* Paleta de Cores */
            --forest-green: #2e4b3e;   /* Verde Floresta (Paredes/Contraste) */
            --wood-beige: #deb887;     /* Bege Madeira (Detalhes/Botões) */
            --linen-light: #f4f1ea;    /* Tom de Linho (Fundo Suave) */
            --text-color: #4a4a4a;     /* Cinza escuro suave para leitura */
            --white: #ffffff;
        }

        body {
            font-family: 'Lato', sans-serif; /* Fonte limpa para leitura */
            background-color: var(--linen-light); /* Fundo Linho Suave */
            color: var(--text-color);
            line-height: 1.6;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif; /* Fonte elegante para títulos */
            color: var(--forest-green);
        }

        a { text-decoration: none; transition: 0.3s; }

        /* --- HEADER / MENU --- */
        header {
            background-color: var(--white);
            /* Sutil textura de linho no header */
            background-image: url('/img/BGlinho.png');
            background-size: contain;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(46, 75, 62, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 3px solid var(--wood-beige);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--forest-green);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo img{
            width: 100px;
            display: flexbox;
        }
        
        /* Simulação de ícone de folha */
        .logo span { color: var(--wood-beige); font-size: 2rem; } 

        nav ul {
            display: flex;
            gap: 25px;
            list-style: none;
            align-items: center;
        }

        nav a {
            color: var(--forest-green);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        nav a:hover { color: var(--wood-beige); }

        /* Botão de Reserva (Whatsapp) */
        .btn-reserve {
            background-color: var(--forest-green);
            color: var(--white) !important;
            padding: 12px 25px;
            border-radius: 30px; /* Borda redonda para suavidade */
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-reserve:hover {
            background-color: var(--wood-beige);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        /* --- HERO SECTION (BANNER) --- */
        .hero {
            height: 50vh;
            /* Imagem de fundo banner principal */
            background-image:  url('/img/BGhome.jpeg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding: 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 650px;
            font-weight: 300;
            background: rgba(46, 75, 62, 0.7); /* Fundo verde transparente para leitura */
            padding: 15px 30px;
            border-radius: 8px;
            border: 5px solid var(--wood-beige);
        }

        /* --- SEÇÃO CONCEITO (TEXTURA E CORES) --- */
        .concept {
            padding: 80px 20px;
            background-color: var(--linen-light);
            text-align: center;
            background-image: url('https://www.transparenttextures.com/patterns/clean-gray-paper.png'); /* Textura sutil */
        }

        .concept h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .concept-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 2000px;
            margin: 50px auto 0;
        }

        .concept-item {
            background: #1c1c1c;
            border-radius: 12px;
            overflow: hidden;
            text-align: center;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .concept-item img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .card-content {
            padding: 20px;
            color: var(--wood-beige);
        }

        .concept-item h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--wood-beige);
        }

        .concept-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.4);
        }
        /* --- ACOMODAÇÕES (CARDS) --- */
        .rooms {
            background-color: var(--white);
            padding: 80px 20px;
        }

        .container { max-width: 1200px; margin: 0 auto; }
        
        .section-title{
            text-align: center;
            margin-bottom: 40px;
        }
        .section-title span {
            color: var(--wood-beige);
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 1.3rem;
        }

        .room-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .room-card {
            background: var(--linen-light);
            border-radius: 12px;
            overflow: hidden;
            transition: 0.3s;
            border: 1px solid #e0e0e0;
        }

        .room-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(46, 75, 62, 0.15);
        }

        .room-img {
            height: 350px;
            width: 100%;
            object-fit: cover;
        }

        .room-info { padding: 25px; }
        
        .room-info h3 { margin-bottom: 10px; font-size: 1.4rem; }
        
        .btn-room {
            display: inline-block;
            margin-top: 15px;
            color: var(--forest-green);
            font-weight: bold;
            border-bottom: 2px solid var(--wood-beige);
            padding-bottom: 2px;
        }

        /* --- SEÇÃO NATUREZA (TEXTURA FOLHAGEM) --- */
        .nature-break {
            background-color: var(--forest-green);
            color: white;
            padding: 20px 20px;
            text-align: center;
            /* Textura sutil de fundo */
            background-image: url('https://www.transparenttextures.com/patterns/dark-matter.png');
        }
        
        .nature-break h2, h1 { color: var(--wood-beige); }

        /* --- FOOTER --- */
        footer {
            background-color: #22362c; /* Verde floresta bem escuro */
            color: #ccc;
            padding: 50px 20px;
            text-align: center;
            font-size: 0.9rem;
            border-top: 5px solid var(--wood-beige);
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            header { flex-direction: column; gap: 15px; }
            nav ul { flex-wrap: wrap; justify-content: center; }
            .hero h1 { font-size: 2.2rem; }
        }

        .quarto-container {
            display: flex;
            gap: 40px;
            max-width: 1800px;
            margin: auto;
            align-items: center;
            justify-content: center;
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            column-gap: 300px;
        }

        /* SLIDER */
        .slider {
            position: relative;
            width: 950px;
            height: 600px;
            overflow: hidden;
            border-radius: 12px;
        }

        .slides {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            height: 100%;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Setas */
        .nav button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 32px;
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 8px 12px;
            cursor: pointer;
            border-radius: 50%;
        }

        .prev {
            left: 15px;
        }

        .next {
            right: 15px;
        }

        /* RESPONSIVO */
        @media (max-width: 900px) {
            .quarto-container {
                flex-direction: column;
            }

            .slider {
                width: 100%;
                height: 250px;
            }
        }

        .mapa-container {
            max-width: 1000px;
            margin: auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .mapa-container iframe {
            width: 100%;
            height: 400px;
            border: 0;
        }

        .mapalink {
            color: var(--wood-beige);
        }