body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background: #f8f6f1;
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.btn-home {
    position: fixed;
    top: 20px;
    right: 20px;

    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);

    color: #fff;
    padding: 10px 18px;

    font-size: 14px;
    font-weight: 600;

    border-radius: 6px;
    text-decoration: none;

    transition: all .25s ease;
    z-index: 10;
}

.btn-home:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-2px);
}

header {
    background: linear-gradient(135deg, #e4a800, #ffd447);
    color: white;
    text-align: center;
    padding: 60px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);


    background:
        linear-gradient(rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)),
        url("img/festival.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;


}

header h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
    opacity: 0.9;
}

.banner {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.banner img {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

section {
    padding: 60px 0;
}

#sobre {
    background: white;
}

#sobre p {
    font-size: 18px;
    margin-bottom: 15px;
}

blockquote {
    margin-top: 20px;
    padding: 20px;
    background: #fff7d6;
    border-left: 5px solid #e4a800;
    font-style: italic;
}

#comidas {
    background: #f3efe7;
}

.comidas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.comida-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform .2s ease;
}

.comida-card:hover {
    transform: translateY(-6px);
}

.comida-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.comida-card h3 {
    padding: 15px;
    font-size: 20px;
}

#evento {
    background: white;
    text-align: center;
}

#evento p {
    font-size: 18px;
    margin-bottom: 10px;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 40px;
}

.btn-mapa {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 20px;
    padding: 14px 26px;

    background: linear-gradient(135deg, #2e7d32, #43a047);

    color: #fff;
    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);

    transition: all .25s ease;

}

.btn-mapa:hover {

    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

    background: linear-gradient(135deg, #1b5e20, #2e7d32);

}

.btn-mapa:active {

    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

}

/* MAPA */

.mapa-container {

    max-width: 900px;
    margin: 60px auto;
    text-align: center;

}

.mapa-titulo {

    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;

}

.mapa-card {

    border-radius: 14px;
    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);

}

.mapa-card iframe {

    width: 100%;
    height: 420px;
    border: 0;

}


/* BOTÃO MAPA */

.btn-mapa {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 25px;
    padding: 15px 28px;

    background: linear-gradient(135deg, #2e7d32, #43a047);

    color: #fff;
    font-size: 17px;
    font-weight: 600;

    text-decoration: none;

    border-radius: 8px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

    transition: all .25s ease;

}

.btn-mapa:hover {

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);

    background: linear-gradient(135deg, #1b5e20, #2e7d32);

}


@media(max-width:768px) {

    header h1 {
        font-size: 28px;
    }

    .container {
        padding: 30px 20px;
    }

    .banner img {
        max-width: 100%;
    }

}