html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px;
    z-index: 2000;
}

/* LOGO + TEXTO */
.logo-area {
    display: flex;
    align-items: end;
    gap: 20px;
    align-self: flex-start;
    margin-left: 7px;
}

.logo-area img {
    height: 70px;
}

.logo-text {
    color: white;
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-size: 12px;
    color: #ccc;
}

/* MENU */
.menu {
    list-style: none;
    display: flex;
    gap: 60px;
    margin-right: 100px;
    padding: 0;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.menu a:hover {
    color: #ff6600;
}

/* HERO */
.hero {
    margin-top: 140px;
    background: url('imagens/banner.jpg') center/cover no-repeat;
    height: 400px;
}

/* SEÇÕES */
section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: auto;
}

h2 {
    text-align: center;
    color: #ff6600;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* CARDS */
.card {
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    padding: 10px;
    transition: transform 0.3s;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card:hover {
    transform: scale(1.05);
}

/* GALERIA */
#galeria img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 30px;
    padding: 15px;
    border-radius: 50%;
    z-index: 1000;
}

/* MENU HAMBÚRGUER */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    align-self: flex-end;
    margin-right: 60px;
}

/* RESPONSIVO */
@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 10px;
    }

    /* MENU MOBILE */
    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: black;
        margin-top: 10px;
        padding: 20px 0;
        gap: 15px;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        text-align: center;
        margin: 10px 0;
    }

    /* HERO */
    .hero {
        height: 250px;
    }

    /* SEÇÕES */
    section {
        padding: 20px;
    }

    /* GRID */
    .grid {
        grid-template-columns: 1fr;
    }

    /* IMAGENS */
    .grid img {
        width: 100%;
        height: auto;
    }

    /* FOOTER MOBILE */
    .footer-container {
        flex-direction: column;
    }

}

/* FOOTER PREMIUM */

.footer {
    background: #0d0d0d;
    color: #ccc;
    padding: 60px 30px 20px;
    margin-top: 60px;
    border-top: 4px solid #ff6600;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col p,
.footer-col a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #ff6600;
    transform: translateX(5px);
}

.footer-logo {
    width: 90px;
    margin-bottom: 15px;
}

/* REDES */

.footer-redes {
    display: flex;
    gap: 15px;
}

.footer-redes a {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    transition: 0.3s;
}

.footer-redes a:hover {
    background: #ff6600;
    transform: translateY(-5px);
}

/* LINHA FINAL */

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #777;
    font-size: 14px;
}