/* 🔗 Fontes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Urbanist:wght@400;500;600;700;800&display=swap');

/* 🔥 Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    outline: none;
    border: none;
    text-decoration: none;
}

html {
    width: 100%;
    min-height: 100vh;
    font-size: 62.5%;
    font-family: 'Urbanist', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Títulos, menus e botões */
h1, h2, h3, h4, .list-menu li a, button {
    font-family: 'Poppins', sans-serif;
}

/* 🔥 Header/Menu */
header {
    width: 100%;
    background-color: #00132a;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}
.content {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00132a;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.logo {
    height: 250px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: 100%;
}


.content .list-menu {
    display: flex;
    gap: 2rem;
}

.content .list-menu li a {
    position: relative;
    color: white;
    font-size: 1.8rem;
    padding: 10px;
    transition: color 0.3s ease;
}

.content .list-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #00aaff;
    transition: width 0.3s ease;
}

.content .list-menu li a:hover {
    color: #00aaff;
}

.content .list-menu li a:hover::after {
    width: 100%;
}

/* 🔥 Menu Mobile */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle div {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: 0.4s;
}

.content.on .menu-toggle .one {
    transform: rotate(45deg) translate(5px, 5px);
}

.content.on .menu-toggle .two {
    opacity: 0;
}

.content.on .menu-toggle .three {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    .content .list-menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background-color: #00132a;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 2rem 0;
        display: none;
    }

    .content.on .list-menu {
        display: flex;
    }
}

/* 🔥 Primeira seção */
.first-section {
    min-height: 100vh; /* trocado de height para min-height */
    width: 100%;
    background-image: linear-gradient(rgba(0, 19, 42, 0.95), rgba(0, 112, 248, 0.7)), url(./img/fundoti2.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px; /* aumentei lateral para garantir espaço menor em mobile */
    box-sizing: border-box;
    text-align: center;
}

.azul {
    color: #00aaff; /* Azul bonito, você pode trocar o código da cor */
}

.conteudo-principal {
    max-width: 1100px;
    text-align: center;
    color: #fff;
}

.conteudo-principal h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px #000;
    border: 3px solid #00aaff;
    border-radius: 12px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    display: inline-block;
    line-height: 2.0; /* espaçamento entre linhas */
    letter-spacing: 1px; /* espaçamento entre letras */
}

.conteudo-principal h2 {
    font-size: 3rem;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px #000;
}


.botoes-home {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.botoes-home button {
    background-color: #00132a;
    color: white;
    border: 2px solid #00aaff;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 170, 255, 0.3);
}

.botoes-home button:hover {
    background-color: #00aaff;
    color: #00132a;
    box-shadow: 0 0 25px #00aaff;
    transform: scale(1.08);
}

.botoes-home i {
    font-size: 1.8rem;
}

/* 🔥 Botão WhatsApp */
.btn-whatsapp-verde {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}

.btn-whatsapp-verde button {
    background-color: #25D366;
    color: white;
    border: 2px solid #25D366;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
    font-family: 'Poppins', sans-serif;
}

.btn-whatsapp-verde button i {
    font-size: 2rem;
}

.btn-whatsapp-verde button:hover {
    background-color: transparent;
    color: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
    transform: scale(1.05);
}

/* 🔥 Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 211, 102, 1);
    background-color: #1ebe5d;
}



/* 🔥 Sobre Nós */
.sobre-nos {
    background-color: #00132a;
    width: 100%;
    padding: 5rem 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}

.contentsobre {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 300px;
}

.contentsobre h2 {
    font-size: 5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.contentsobre p {
    text-align: center;
    font-size: 1.8rem;
    max-width: 600px;
    width: 100%;
    line-height: 1.7;
}

.img-cozinha img {
    width: 100%;
    max-width: 450px;
    border: 4px solid #00aaff;
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-color: #121212;
}

.img-cozinha img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00aaff, 0 0 30px #00aaff, 0 0 45px #00aaff;
}

/* 🔥 Serviços */
.cardapio {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgb(0, 19, 42), rgba(0, 112, 248, 0.82)), url(./img/fundoti.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 20px;
}

.cardapio h2 {
    font-size: 5rem;
    color: #e6e6e6;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 8px #000;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.card {
    background: #00132a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px #00aaff;
}

.card i {
    font-size: 60px;
    color: #00aaff;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.card i:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    transform: scale(1.2);
}

.card h3 {
    margin-bottom: 10px;
    color: #00aaff;
    font-size: 26px;
    font-weight: 600;
}

.card p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
}

/* 🔥 Contatos */
.contatos {
    width: 100%;
    background-color: #00132a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.contatos h3 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    color: #00aaff;
    position: relative;
}

.contatos h3::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #00aaff;
    margin: 10px auto 0;
    border-radius: 2px;
}

.contatos-secao {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.contatos-secao a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
    color: white;
}

.contatos-secao a:hover {
    color: #00aaff;
}

.contatos-secao a i {
    font-size: 2.5rem;
    color: #00aaff;
    transition: all 0.3s ease;
}

.contatos-secao a i:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    transform: scale(1.2);
}

/* 🔥 Footer */
footer {
    background-color: #00132a;
    color: #ccc;
    padding: 20px 20px;
    text-align: center;
    font-size: 1.6rem;
    border-top: 1px solid #00aaff;
    width: 100%;
    box-sizing: border-box;
}


/* 📱 Responsivo */
@media (max-width: 850px) {
    .main {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
.first-section {
    padding-top: 100px; /* Garante espaço abaixo do header fixo */
    padding-bottom: 40px;
}

footer {
    font-size: 1.3rem;
    padding: 15px;
}

    .contentsobre h2 {
        font-size: 4rem;
    }

    .conteudo-principal h1 {
        font-size: 3rem;
    }

    .conteudo-principal h2 {
        font-size: 1.5rem;
    }

    .cards {
        gap: 20px;
    }

    .card {
        width: 90%;
    }

    .card i {
        font-size: 50px;
    }

    .contatos-secao {
        gap: 40px;
    }

    .contatos-secao a {
        font-size: 1.6rem;
    }

    .cardapio h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .conteudo-principal h1 {
        font-size: 2.2rem;
    }

    .conteudo-principal h2 {
        font-size: 1.2rem;
    }

    .botoes-home {
        flex-direction: column;
        gap: 15px;
    }

    .botoes-home button {
        width: 100%;
    }

    .card i {
        font-size: 45px;
    }

    .contatos h3 {
        font-size: 2.4rem;
    }

    .contatos-secao {
        flex-direction: column;
        gap: 25px;
    }

    .contatos-secao a {
        font-size: 1.5rem;
    }

    footer {
        font-size: 1.2rem;
    }
}
