/* 1. RESET E FONTES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none; 
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f0f4f8;
    padding-top: 80px; 
}


header {
    background: white;
    padding: 15px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0077b6;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #333;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}


.btn-reserva {
    background-color: #0077b6;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
}


.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1540541338287-41700207dee6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}


.btn-saiba-mais {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    border: 2px solid white;
    color: white !important; 
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-saiba-mais:hover {
    background-color: white;
    color: #0077b6 !important;
}


.acomodacoes {
    padding: 80px 10%;
    text-align: center;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: white;
    width: 320px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 { margin: 15px 0; }
.preco { display: block; margin: 15px 0; font-weight: bold; color: #0077b6; }


.depoimentos {
    background-color: #0077b6;
    color: white;
    padding: 80px 10%;
    text-align: center;
}

.depoimentos-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.depoimento {
    max-width: 400px;
    font-style: italic;
}


footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 40px 0;
}


@media (max-width: 768px) {
    body {
        padding-top: 140px; 
    }

    header {
        flex-direction: column; 
        padding: 15px;
    }

    nav {
        margin-top: 10px;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    nav a {
        margin-left: 0;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 2rem; 
    }
}