/* Layout */

/* Variáveis */

:root {
    --cinzamedio: #4A4A4A;
    /* Cinza Medio */
    --preto: #000000;
    /* Preto */
    --branco: #ffffff;
    /* Branco */
    --cinzaescuro: #2F2F2F;
    /* Cinza escuro */
    --cinzaclaro: #9E9E9E;
    /* Cinza Claro */
}

/* CSS - reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body h1,
h2,
h3,
h4,
h5,
span {
    font-family: "Poppins", sans-serif;
}

body p,
a,
li,
strong,
option,
textarea,
form {
    font-family: "Inter", sans-serif;
}

.container {
    display: flex;
    margin: 0 auto;
}

.btn {
    text-decoration: none;
    font-size: 1.0rem;
    font-weight: 600;
    background-color: var(--preto);
    padding: 10px 40px;
    color: var(--branco);
    border-radius: 30px;
    border: 2px solid var(--branco);
}

/* Cartão */
.card {
    width: 342px;
    height: 435px;
    background-color: var(--preto);
    margin-bottom: 50px;
    border: 2px solid var(--branco);
    text-align: center;
    border-radius: 30px;
}

.card img {
    border-radius: 30px 30px 0px 0px;
    /* Coordenadas (encima, encima, embaixo, embaixo */
}

.card h2 {
    font-size: 1.7rem;
    margin: 15px auto;
    color: var(--cinzaclaro);
}

.card p {
    color: var(--branco);
    padding: 0 20px 25px;
    text-align: center;
    line-height: 1.5;
}

#receitas #titulo {
    margin-bottom: 30px;
    color: var(--branco);
    text-align: center;
}

#receitas #titulo h2 {
    text-shadow: 0px 5px 10px var(--preto), 0px 10px 10px rgba(0, 0, 0, 0.15), 0px 15px 15px rgba(0, 0, 0, 0.1), 0px 20px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    font-size: 1.7rem;

}

#receitas .btn {
    font-size: 1.7rem;
    margin-bottom: 30px;

}

/* Topo do site */

#topo {
    position: fixed;
    right: 15px;
    bottom: 10px;
}

#topo img {
    height: 55px;
    width: 55px;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
    /* Deixar os botões deslizando mais suavemente */
}

/* DIVIDER */
.divider {
    height: 1px;
    background: var(--branco);
    margin: 0 6%;
}

/* BOTÃO CONTATO */

.btncontato {
    text-decoration: none;
    font-size: 1.0rem;
    background-color: var(--cinzamedio);
    padding: 10px 40px;
    color: var(--branco);
    border-radius: 15px;
    border: 2px solid var(--branco);
}

.btncontato:hover {
    color: var(--branco);
    background-color: var(--preto);
    transition: 0.3s;
}

/* Fim do Layout*/


/* Smartphone portrait */

/* CABEÇALHO MODERNO */

header {
    width: 100%;
    height: 78px;
    background: rgba(20, 20, 20, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    z-index: 50;
    padding: 0 10px;
    top: 0;
}

header .container {
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

#logo {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

#logo a {
    height: 100%;
    display: flex;
    align-items: center;
}

#logo img {
    width: auto;
    height: 70px;
    max-height: 70px;
    display: block;
    object-fit: contain;
}

/* MENU MOBILE */

#check {
    display: none;
}

.menu-mobile {
    color: var(--branco);
    font-size: 2.2rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 17px;
    z-index: 1000;
}

/* MENU */

nav ul {
    position: fixed;
    top: 78px;
    right: -100%;
    width: 75%;
    max-width: 320px;
    min-height: calc(100vh - 78px);
    background: rgba(20, 20, 20, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s ease;
    z-index: 999;
}

#check:checked~ul {
    right: 0;
}

nav ul li {
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    padding: 0;
}

nav ul li a {
    display: block;
    padding: 18px 24px;
    color: var(--branco);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: none;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.ativo {
    color: var(--cinzaclaro);
    background: rgba(255, 255, 255, 0.06);
}

/* BOTÃO CONTATO */

.btncontato {
    display: block;
    margin: 15px 20px;
    padding: 12px 20px !important;
    text-align: center;
    background: var(--branco);
    color: var(--preto) !important;
    border-radius: 30px;
    border: 1px solid var(--branco);
}

.btncontato:hover {
    background: var(--cinzaclaro);
    color: var(--preto) !important;
}

/* Principal */

main {
    height: 60vh;
    position: relative;
    overflow: hidden;
    isolation: isolate;

}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(131, 128, 128, 0.123);
    z-index: -1;
}

main h1,
h2 {
    animation: fadeUp 1.2s ease;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main .container {
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main h1 {
    color: var(--branco);
    text-shadow: 0px 5px 10px var(--preto), 0px 10px 10px rgba(0, 0, 0, 0.15), 0px 15px 15px rgba(0, 0, 0, 0.1), 0px 20px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    font-size: clamp(2.0rem, 4vw, 3.5rem);
    letter-spacing: 1px;
}

main h2 {
    color: var(--preto);
    text-shadow:
        -2px -2px 0 #fff,
        2px -2px 0 #fff,
        -2px 2px 0 #fff,
        2px 2px 0 #fff,
        -3px 0px 0 #fff,
        3px 0px 0 #fff,
        0px -3px 0 #fff,
        0px 3px 0 #fff;
    margin-bottom: 35px;
    font-size: 0.7rem;
    font-size: clamp(1.2rem, 3.5vw, 2rem);

}

main .btn {
    margin-top: 20px;
    font-size: 1.3rem;

}

/* Destaque */
#destaque {
    padding: 50px 13px;
    background: url(./img/backgound.jpg);
    background-size: cover;
    background-position: -80px;
}

#destaque .container {
    flex-direction: column;
}

#hero {
    text-align: center;
}

#hero img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin-bottom: 50px;
    border: 2px solid #fff;
}

#hero-text h2 {
    margin-bottom: 15px;
    color: var(--branco);
    font-size: 2.7rem;
    text-shadow: 0px 5px 10px var(--preto), 0px 10px 10px rgba(0, 0, 0, 0.15), 0px 15px 15px rgba(0, 0, 0, 0.1), 0px 20px 20px rgba(0, 0, 0, 0.1);
}

#hero-text p {
    color: var(--branco);
    text-shadow: 0px 5px 10px var(--preto), 0px 10px 10px rgba(0, 0, 0, 0.15), 0px 15px 15px rgba(0, 0, 0, 0.1), 0px 20px 20px rgba(0, 0, 0, 0.1);
    text-align: justify;
}

.topics {
    display: flex;
    margin-top: 15px;
}

.topics p {
    margin-left: 15px;
}

/* Sobre */

#sobre {
    padding: 40px 13px;
    background: url(./img/backgoundContato.png);
    background-size: cover;
}

#sobre .container {
    display: flex;
    flex-direction: column;
}

#sobre iframe {
    width: 340px;
    height: 191px;
    border: none;
}

#sobre p {
    margin-bottom: 25px;
    color: var(--branco);
    text-align: justify;
}

#sobre h2 {
    color: var(--branco);
    margin-bottom: 20px;
    text-shadow: 0px 5px 10px var(--preto), 0px 10px 10px rgba(0, 0, 0, 0.15), 0px 15px 15px rgba(0, 0, 0, 0.1), 0px 20px 20px rgba(0, 0, 0, 0.1);
    font-size: 2.0rem;
}

/* PDF/Cardápio */

#pdf {
    padding: 40px 13px;
    background: url(./img/backgound.jpg);
    background-size: cover;
    background-position: center;
}

#pdf .container {
    display: flex;
    flex-direction: column;
}

#pdf img {
    display: none;
}

#pdf h2 {
    color: var(--branco);
    margin-bottom: 15px;
    font-size: 2.0rem;
    text-shadow: 0px 5px 10px var(--preto), 0px 10px 10px rgba(0, 0, 0, 0.15), 0px 15px 15px rgba(0, 0, 0, 0.1), 0px 20px 20px rgba(0, 0, 0, 0.1);
}

#pdf p {
    margin-bottom: 50px;
    color: var(--branco);
    text-align: justify;
}

#pdf .btn {
    font-size: 1.3rem;
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Cartões */

#receitas {
    background: url(./img/backgound2.jpg);
    background-size: cover;
    padding: 50px 0px 25px 0px;
}

#receitas .container {
    flex-direction: column;
    align-items: center;
}

/* Contatos */

#contato iframe {
    display: none;
}

#contato .container {
    flex-direction: column;
    align-items: center;
    text-align: center;

}

#contato {
    background: url(./img/backgound.jpg);
    background-position: center;
    background-size: cover;
}

#bloco2 {
    margin: 10px 0px 0px 20px;
}

#bloco2 img {
    margin: 5px 0px;
}

#iconloc {
    display: none;
}

#contato img {
    width: 35px;
    height: 35px;
}

#bloco3 {
    margin: 10px 0px 20px 20px;
}

#bloco3 img {
    margin: 7px 0px;
}

#contato p {
    font-weight: bold;
    color: var(--branco);
    text-shadow: 0px 5px 10px var(--preto), 0px 10px 10px rgba(0, 0, 0, 0.15), 0px 15px 15px rgba(0, 0, 0, 0.1), 0px 20px 20px rgba(0, 0, 0, 0.1);
}

/* Rodapé */

/* RODAPÉ NOVO */

#icons {
    text-align: center;
    background: linear-gradient(180deg, #111, #000);
    padding: 50px 20px 30px;
}

#icons .container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* LOGO */

.footer-logo img {
    width: 130px;
    opacity: 0.85;
}

/* REDES */

#redes {
    display: flex;
    gap: 18px;
}

#redes a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

#redes a:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

#redes img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* LINKS */

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* ADMIN DISCRETO */

.admin-link {
    font-size: 0.75rem;
    opacity: 0.6;
}

.admin-link:hover {
    opacity: 1;
}

/* TEXTO */

#copyright p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* PÁGINA SOBRE */

/* Cabeçalho */
.sobre nav {
    display: flex;
    z-index: 3;
}

/* Destaque */
.sobre #hero img {
    border-radius: 10px;
    border: 0px;
    image-rendering: auto;
    filter: contrast(1.05) brightness(0.95);

}

.sobre #destaque {
    background: url(./img/backgoundPrincipal.png);
}

.sobre #hero-text {
    text-align: center;
}

.sobre #hero-text h2 {
    font-size: 1.7rem;
}

.sobre #hero-text span {
    color: var(--cinzaclaro);
}

/* Missão, visão e valores */

#missao {
    background: url(./img/backgound2.jpg);
    padding: 60px 20px;
    background-size: cover;
}

#missao .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}


.missaocard {
    background: var(--preto);
    border: 1px solid var(--cinzaclaro);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.missaocard::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(120deg, transparent, var(--branco), transparent);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.3s;
}

.missaocard:hover::before {
    opacity: 0.2;
}

.missaocard:hover {
    transform: translateY(-8px);
    border-color: var(--branco);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
}


.missaocard img {
    width: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}


.missaocard h2 {
    color: var(--cinzaclaro);
    font-size: 22px;
    margin-bottom: 15px;
}


.missaocard p {
    color: var(--branco);
    font-size: 14.5px;
    line-height: 1.6;
}


/* Sobre a SHIELD */

#sobreshield {
    background: url(./img/background3.png);
    background-size: cover;
    padding: 80px 20px;
    text-align: center;
}

#sobreshield .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* TÍTULOS */
#sobreshield h2 {
    color: var(--branco);
    font-size: 26px;
    margin-bottom: 20px;
    text-shadow: 0px 5px 10px var(--preto), 0px 10px 10px rgba(0, 0, 0, 0.15), 0px 15px 15px rgba(0, 0, 0, 0.1), 0px 20px 20px rgba(0, 0, 0, 0.1);
}


.sobre-box {
    margin-bottom: 60px;
    background-color: var(--preto);
    padding: 40px 20px;
    border-radius: 50px;
    border: 1px solid var(--cinzaclaro);
}

.sobre-box p {
    color: var(--branco);
    font-size: 17px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}


.historia-box {
    margin-bottom: 60px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-item {
    background: var(--preto);
    border-left: 3px solid var(--cinzaclaro);
    /* detalhe lateral */
    border-radius: 6px;
    padding: 15px 15px 15px 20px;
    transition: 0.3s;
    text-align: left;
    /* melhor leitura */
}

.timeline-item:hover {
    border-color: var(--branco);
    transform: translateY(-3px);
}

.timeline-item span {
    color: var(--cinzaclaro);
    font-weight: bold;
    font-size: 18px;
}

.timeline-item p {
    color: var(--branco);
    font-size: 16px;
    margin-top: 3px;
}


.valores-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.valor-item {
    background: var(--preto);
    border: 1px solid var(--cinzamedio);
    border-radius: 10px;
    padding: 25px 20px;
    transition: 0.3s;
    border-left: 3px solid var(--cinzaclaro);
}

.valor-item:hover {
    border-color: var(--cinzaclaro);
    transform: translateY(-5px);
}

.valor-item img {
    width: 40px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.valor-item h3 {
    color: var(--cinzaclaro);
    font-size: 18px;
    margin-bottom: 8px;

}

.valor-item p {
    color: var(--branco);
    font-size: 16px;
}

/* Página de produto */

#produto .container {
    display: flex;
    flex-direction: column;
}

/* TEXTO */

#produto h2 {
    margin: 25px auto;
    font-size: 1.7rem;
    color: var(--cinzaclaro);
    text-shadow: 0px 5px 10px var(--preto), 0px 10px 10px rgba(0, 0, 0, 0.15), 0px 15px 15px rgba(0, 0, 0, 0.1), 0px 20px 20px rgba(0, 0, 0, 0.1);

}

#produto p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--branco);
}

.duvida {
    display: inline-block;
    margin: 30px auto;
    padding: 12px 20px;

    color: var(--branco);
    background: var(--cinzaescuro);

    font-size: 13px;
    border-radius: 20px;
    border: 1px solid var(--cinzamedio);

    text-align: center;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.9);

    position: relative;
}

/* VIDEO */

#produto {
    display: flex;
    justify-content: center;
    background-color: var(--cinzamedio);
}

#produto video {
    width: 90%;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    background: var(--preto);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    margin-top: 50px;
}

/* PÁGINA CERTIFICADOS */

.certificado .btn {
    padding: 10px 20px;
    font-size: 2.3rem;
    border-radius: 50px;
    background: var(--cinzaclaro);
}

.certificado .btn:hover {
    transition: 0.3s;
    background-color: var(--cinzaescuro);
}

.certificado .card {
    height: 560px;
}

.certificado .card p {
    text-align: justify;
}

.certificado #receitas {
    background: url(./img/backgoundPrincipal.png);
    background-size: cover;
}

.certificado #receitas a {
    font-size: 1.0rem;
    color: var(--preto);
}

.certificado #receitas a:hover {
    transition: 0.3s;
    color: var(--branco);
}

/* PÁGINA PERGUNTAS FREQUENTES */



.faq {
    padding: 4rem 1rem;
    background: var(--cinzamedio);
    min-height: 70vh;
}

.faq .container {
    flex-direction: column;
}

.faq h2 {
    text-align: center;
    font-size: 2.0rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--branco);
    text-shadow: 0px 5px 10px var(--preto), 0px 10px 10px rgba(0, 0, 0, 0.15);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    background: var(--cinzaescuro);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: clamp(1rem, 4vw, 1.125rem);
    font-weight: 500;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--branco);
    font-family: "Inter", sans-serif;
    text-align: left;
    transition: background 0.25s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--cinzaclaro);
    border-bottom: 2px solid var(--cinzaclaro);
    transform: rotate(45deg);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .arrow {
    transform: rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 15px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--branco);
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    line-height: 1.6;
    text-align: left;
    font-family: "Inter", sans-serif;
    margin: 0;
}

/* ABA INDEX COMPARAÇÃO */

.comparacao {
    background: url(./img/backgound.jpg);
    background-size: cover;
    padding: 50px 20px;
    color: var(--branco);
    text-align: center;
}

.comparacao h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-shadow: 0px 5px 10px var(--preto), 0px 10px 10px rgba(0, 0, 0, 0.15);
}

.comparacao .subtitulo {
    color: var(--branco);
    margin-bottom: 50px;
    font-size: 1.5rem;
}

.comparacao .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.cards-comparacao {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.box-comparacao {
    background: var(--preto);
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    text-align: left;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.box-comparacao h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.box-comparacao ul {
    list-style: none;
    padding: 0;
}

.box-comparacao ul li {
    margin-bottom: 15px;
    color: var(--branco);
    font-size: 0.95rem;
}

/* Diferenciação */
.box-comparacao.sem {
    border-color: var(--cinzaescuro);
}

.box-comparacao.com {
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

/* Hover */
.box-comparacao:hover {
    transform: translateY(-5px);
}

/* PÁGINA CONTATO */

.secao-contato {
    width: 100%;
    padding: 100px 8%;
    background: url(./img/backgoundContato.png);
    background-size: cover;
    color: var(--branco);
}

.contato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.subtitulo {
    color: var(--branco);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contato-info h2 {
    font-size: 48px;
    margin: 15px 0;
}

.contato-info p {
    color: var(--branco);
    line-height: 1.7;
    margin-bottom: 35px;
}

.box-info {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    margin-bottom: 18px;
    border: 1px solid var(--cinzaescuro);
    border-radius: 12px;
    background: var(--preto);
    transition: 0.3s;
}

.box-info:hover {
    border-color: var(--cinzaclaro);
    transform: translateY(-3px);
}

.box-info i {
    width: 45px;
    height: 45px;
    background: var(--cinzaescuro);
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
}

.box-info span {
    display: block;
    color: var(--cinzaclaro);
    font-size: 14px;
    margin-bottom: 4px;
}

.contato-formulario {
    background: var(--preto);
    border: 1px solid var(--cinzamedio);
    border-radius: 15px;
    padding: 40px;
}

.contato-formulario h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.contato-formulario form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contato-formulario input,
.contato-formulario select,
.contato-formulario textarea {
    width: 100%;
    padding: 16px;
    background: var(--preto);
    border: 1px solid var(--cinzamedio);
    border-radius: 10px;
    color: var(--branco);
    outline: none;
    font-size: 15px;
}

.contato-formulario input:focus,
.contato-formulario select:focus,
.contato-formulario textarea:focus {
    border-color: var(--branco);
}

.contato-formulario button {
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: var(--cinzamedio);
    color: var(--branco);
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contato-formulario button:hover {
    background: var(--cinzaclaro);
    color: var(--preto);
}

.contato-container {
    grid-template-columns: 1fr;
}

.contato-formulario select {
    width: 100%;
    padding: 16px 45px 16px 16px;
    outline: none;
    font-size: 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.campo-fake {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

#mensagem-formulario {
    font-size: 14px;
    color: #ff3b3b;
    font-weight: 600;
    margin: 0;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease, margin 0.3s ease;
    line-height: 1.4;
    word-break: break-word;
}

.btncontato.ativo {
    background: #b5b5b5;
    color: #000 !important;
    border-color: #b5b5b5;
}

/* PÁGINA TERMOS E PRIVACIDADE */

.termos {
    background: var(--cinzaescuro);
    background-size: cover;
    background-position: center;
    padding: 70px 20px;
    color: var(--branco);
}

.termos-container {
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
}

.termos h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 15px 0 35px;
    text-align: center;
    text-shadow: 0px 5px 10px var(--preto);
}

.termos-box {
    background: rgba(0, 0, 0, 0.88);
    border: 1px solid var(--cinzamedio);
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.termos-box h2 {
    color: var(--cinzaclaro);
    font-size: 1.35rem;
    margin-bottom: 15px;
    text-align: left;
}

.termos-box p {
    color: var(--branco);
    line-height: 1.7;
    margin-bottom: 14px;
    text-align: justify;
}

.aceite-termos {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;

    margin-top: 1.2rem;
    padding: 1rem 1.2rem;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;

    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;

    color: var(--branco);
    cursor: pointer;

    transition: 0.3s ease;
}

.aceite-termos:hover {
    border-color: var(--cinzaclaro);
    background: rgba(255, 255, 255, 0.06);
}

.aceite-termos input[type="checkbox"] {
    min-width: 18px;
    width: 18px;
    height: 18px;

    margin-top: 0.20rem;
    cursor: pointer;

    accent-color: var(--cinzamedio);
}

.aceite-termos a {
    color: var(--branco);
    font-weight: 600;
    text-decoration: underline;
    transition: 0.3s ease;
}

.aceite-termos a:hover {
    color: var(--cinzaclaro);
}

.cookie-popup {
    position: fixed;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    z-index: 9999;

    width: min(92%, 520px);
    padding: 1rem;

    animation: cookieUp 0.6s ease forwards;
}

.cookie-content {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1.4rem;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    color: var(--branco);
}

.cookie-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.cookie-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.cookie-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.cookie-actions a {
    color: var(--cinzaclaro);
    font-size: 0.85rem;
    text-decoration: underline;
}

.cookie-actions button {
    border: none;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;

    background: var(--branco);
    color: var(--preto);

    font-family: 'Inter', sans-serif;
    font-weight: 700;
    cursor: pointer;

    transition: 0.3s ease;
}

.cookie-actions button:hover {
    background: var(--cinzaclaro);
    transform: translateY(-2px);
}

.cookie-popup.sumir {
    animation: cookieDown 0.4s ease forwards;
}

@keyframes cookieUp {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes cookieDown {
    from {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    to {
        opacity: 0;
        transform: translate(-50%, 30px);
    }
}


/* Fim smartphone portrait*/

/* Smarthphone landscape */
@media (min-width: 576px) {

    /* Layout */
    .container {
        max-width: 540px;
    }

    /* Principal */
    main {
        height: 75vh;
    }

    main h1 {
        font-size: 1.5rem;
        margin-top: 30px;
    }

    main h2 {
        font-size: 1.3rem;
    }

    /* Destaque */

    #destaque {
        padding: 50px 0px;
        background-size: cover;
        background-position: center;
    }

    #destaque .container {
        flex-direction: row;
        align-items: center;
    }

    #hero {
        text-align: left;
    }

    #hero img {
        width: 200px;
        height: 200px;
        margin: 50px 40px 0px -30px;
    }

    .topics {
        display: none;
    }

    /* Rodapé */

    #icons .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }

    #icons p {
        margin: 10px 20px;
    }

    /* Página Sobre*/

    /* Missão */

    #missao .container {
        grid-template-columns: 1fr;
    }

    /* PÁGINA CONTATO */
    .contato-info h2 {
        font-size: 34px;
    }

    .contato-formulario {
        padding: 30px;
    }

    .contato-container {
        grid-template-columns: 1fr;
    }


}



/* Fim - Smartphone landscape */

/* Tablet portrait */
@media (min-width: 768px) {

    /* Layout */
    .container {
        max-width: 720px;
    }

    /* Topo */
    #topo img {
        width: 80px;
        height: 80px;
    }



    /* Principal */
    main h1 {
        font-size: 2.1rem;
    }

    main h2 {
        font-size: 1.5rem;
    }

    /* Sobre */

    #hero img {
        margin-left: 30px;
    }

    #sobre h2 {
        font-size: 2.3rem;
    }

    #youtube iframe {
        width: 560px;
        height: 315px;
        margin-left: 20px;
    }

    /* Contatos */
    #contato iframe {
        display: flex;
        margin: 20px;
        border-radius: 50px;
    }

    #contato .container {
        flex-direction: row;
    }


    #iconloc {
        display: flex;
    }

    #linkloc {
        display: none;
    }

    #contato p {
        font-size: 0.8rem;
    }

    #bloco2,
    #bloco3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Página Sobre */

    /* Destaque */

    .sobre #destaque .container {
        display: flex;
        flex-direction: row-reverse;
    }

    #missao .container {
        grid-template-columns: 1fr 1fr;
    }

    /* PÁGINA CONTATO */

    .contato-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contato-info h2 {
        font-size: 42px;
    }

    .contato-formulario {
        padding: 35px;
    }

    /* PÁGINA DE TERMOS E PRIVACIDADE */

    .termos {
        padding: 50px 14px;
    }

    .termos-box {
        padding: 22px 18px;
    }

    .termos-box p {
        font-size: 0.95rem;
    }



}


/* Fim - Tablet portrait */

/* Tablet landscape */
@media (min-width: 992px) {

    /* Layout */
    .container {
        max-width: 960px;
    }

    #youtube iframe {
        width: 560px;
        height: 315px;
        margin-left: 20px;
    }

    /* Cartões */
    #receitas .container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .card {
        margin-right: 25px;
    }

    /* Contato */

    #contato iframe {
        margin-right: 70px;
    }

    #bloco2,
    #bloco3 {
        margin-top: 80px;
    }

    /* Página Sobre */

    /* Destaque */

    .sobre #destaque .container {
        display: flex;
        flex-direction: row-reverse;
    }

    #missao .container {
        grid-template-columns: repeat(3, 1fr);
    }

    .contato-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .contato-info h2 {
        font-size: 46px;
    }

}

/* Fim - Tablet landscape */

/* Notebook / PC */
@media (min-width: 1200px) {

    /* Layout */
    .container {
        max-width: 1140px;
        justify-content: space-between;
    }

    /* CABEÇALHO DESKTOP */

    header {
        height: 90px;
        position: relative;
    }

    header .container {
        height: 100%;
        align-items: center;
        justify-content: space-between;
    }

    #logo img {
        width: auto;
        height: 100px;
        max-height: 100px;
    }

    .menu-mobile {
        display: none;
    }

    nav ul {
        position: static;
        width: auto;
        max-width: none;
        min-height: auto;
        background: transparent;
        border-left: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: none;
    }

    nav ul li {
        border: none;
        padding: 0;
        float: none;
    }

    nav ul li a {
        padding: 10px 16px;
        border-radius: 30px;
        font-size: 1rem;
    }

    nav ul li a:hover,
    nav ul li a.ativo {
        background: rgba(255, 255, 255, 0.08);
        color: var(--branco);
    }

    .btncontato {
        margin: 0 0 0 8px;
        padding: 11px 24px !important;
    }

    /* Principal */

    main {
        height: 85vh;
    }

    main h1 {
        font-size: 3.4rem;
    }

    main h2 {
        font-size: 2.6rem;
    }

    .btn {
        padding: 20px 40px;
        font-size: 2.5rem;
        border-radius: 50px;
    }

    /* Destaque */

    #destaque {
        background-attachment: fixed;
    }

    #hero img {
        width: 400px;
        height: 400px;
    }

    #hero-text h2 {
        font-size: 2.7rem;
    }

    .topics {
        display: flex;
        justify-content: left;
    }

    #hero-text p {
        font-size: 1.3rem;
    }

    /* Sobre */

    #sobre .container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    #sobre p {
        margin-right: 10px;
    }

    #youtube iframe {
        width: 560px;
        height: 315px;
        margin-left: 20px;
    }

    /* PDF/Cardápio */

    #pdf {
        background-attachment: fixed;
    }

    #pdf img {
        display: flex;
        border-radius: 20%;
        height: 300px;
        width: 300px;
    }

    #pdf .container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

    }

    #pdf .btn {
        display: inline-block;
        margin: 0;
    }

    /* Cartões */
    #receitas .container {
        flex-direction: row;
    }

    .card {
        margin-right: 0px;
    }

    #receitas #titulo h2 {
        font-size: 2.7rem;
    }

    /* Botão topo */

    #topo img {
        height: 60px;
        width: 60px;
    }

    /*Contatos */

    #bloco1,
    #bloco2,
    #bloco3 {
        margin: 15px 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #contato iframe {
        display: flex;
        border-radius: 35px;
    }

    #contato .container {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    #linkloc {
        display: none;
    }

    #iconloc {
        display: flex;
    }

    #contato {
        background-attachment: fixed;
    }

    #bloco2 p,
    #bloco3 p {
        margin: 0;
        line-height: 1.6;
    }


    /* Página Sobre */

    /* Destaque */

    .sobre #destaque .container {
        display: flex;
        flex-direction: row-reverse;
    }

    #missao .container {
        gap: 30px;
    }

    /* PÁGINA CONTATO */

    .secao-contato {
        padding: 100px 8%;
    }

    .contato-info h2 {
        font-size: 48px;
    }

    .contato-formulario {
        padding: 40px;
    }

}



/* Fim - Notebook / PC */

/* FullHD / 4K */
@media (min-width: 1400px) {

    /* Layout */
    .container {
        max-width: 1140px;
    }

    /* Principal */

    main h1 {
        font-size: 3.4rem;
    }

    main h2 {
        font-size: 2.5em;
    }

    /* Sobre */

    #sobre h2 {
        font-size: 2.3rem;
    }

    #sobre p {
        font-size: 1.3rem;
    }

    #youtube iframe {
        width: 560px;
        height: 315px;
        margin-left: 20px;
    }

    /* PDF */

    #pdf #text h2 {
        font-size: 2.3rem;
    }

    #pdf #text p {
        font-size: 1.3rem;
    }

    /* Cartões */
    .card {
        margin-right: 0px;
    }

    /* Página Sobre */

    /* Destaque */

    .sobre #destaque .container {
        display: flex;
        flex-direction: row-reverse;
    }

    #missao .container {
        max-width: 1300px;
    }

    /* PÁGINA CONTATO */
    .secao-contato {
        padding: 120px 10%;
    }

    .contato-container {
        gap: 70px;
    }

    .contato-info h2 {
        font-size: 56px;
    }

    .contato-formulario {
        padding: 50px;
    }

}

/* Fim - FullHD / 4K */