@import url('base.css');
@import url('https://fonts.googleapis.com/css2?family=Caprasimo&family=Domine:wght@400..700&display=swap');

/*Login*/
.btn-login {
    background-color: #5c2e1e;
    color: #fff;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-login:hover {
    background-color: #7b3f27;
    color: #fff;
}

.login-box {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/*Index*/
.overlay-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.overlay-container img {
    width: 100%;
    max-height: 570px;
    object-fit: cover;
    display: block;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #dbd9d9;
}

.overlay-text h1 {
    font-family: "Chetta Vissto";
    font-size: clamp(22px, 5vw, 40px);
    font-weight: bold;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

.overlay-text h2 {
    font-family: "Merriweather";
    font-size: clamp(14px, 3vw, 20px);
    margin-top: 10px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.produtos-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.titulo-primario {
    font-family: "Sans-Serif";
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #6B8F71;
    margin-bottom: 40px;
}

.produtosDestaque {
    padding: 50px 20px;
    background-color: #fdfbf9;
}

.produtosDestaque h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #3c2f2f;
}

.linhaProdDest {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cardProduto {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 450px;
}

.cardProduto:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.card-img-container {
    width: 100%;
    height: 320px;
    overflow: hidden;
    flex-shrink: 0;
    align-items: center;
}

.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nomeProdutoDest {
    font-family: "Domine", serif;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 15px;
    color: #333;
}

.precoProdutoDest {
    font-size: 1rem;
    color: #6f4e37;
    margin: 5px 0 15px;
    font-weight: bold;
}

.btn-produto {
    display: inline-block;
    background-color: #6f4e37;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s ease;
    margin-bottom: 20px;
}

.btn-produto:hover {
    background-color: #5a3f2e;
    color: #fff;
}

.ambiente {
    text-align: center;
}

.ambiente-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr;
    grid-template-rows: auto auto;
    gap: 10px;
    margin-top: 30px;
}

.fotoGrande {
    grid-row: span 2;
}

.fotoGrande img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fotosPequenas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    row-gap: 0px;
    height: 100%;
}

.fotoAmbiente img {
    width: 100%;
    height: 265px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f6f6f6;
}

.fotoGrande img:hover,
.fotoAmbiente img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.card-diferencial {
    background-color: #6f4e37;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-diferencial:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.tituloDiferencial {
    font-family: "Sans-Serif";
    color: #fbecce;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
}

.descricaoDiferencial {
    font-family: "Domine", serif;
    font-size: 16px;
    color: #fdfdfd;
    line-height: 1.5;
    text-align: justify;
}

.horaELocal {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.horarioFuncionamento {
    font-family: "Domine", serif;
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-bottom: 8px;
}

.iframeLocalizacao iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
}

.faq-container {
    width: 86%;
    margin: 40px auto;
    font-family: "Domine", serif;

}

.col-horario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.faq {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: 16px;
    color: #333;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.respostaFAQ {
    margin-top: 8px;
    color: #555;
    font-size: 15px;
}

.btn-toggle i {
    transition: transform 0.2s;
}

.faq[open] .btn-toggle i {
    transform: rotate(180deg);
    color: #5a3f2e;
}

/*Categorias*/
.produtosEx-container {
    gap: 40px;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
    margin: 40px 80px;
}

.titulo-categoria {
    display: inline-block;
    background-color: #6f4e37;
    color: #F5E1C0;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 12px;
    font-size: 18px;
    margin-bottom: 30px;
    margin-left: 0px;
    margin-top: 50px !important;
}

/*Contatos*/
.contatos-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
    margin: 40px 80px;
}

.coluna-esquerda {
    flex: 1 1 45%;
    text-align: center;
}

.coluna-esquerda h4 {
    font-family: "Domine", serif;
    color: #333;
    font-size: 19px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    margin-bottom: 5px;
}

.coluna-esquerda p {
    font-family: "Domine", serif;
    color: #333;
    font-size: 17px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.coluna-direita {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coluna-direita iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.instagramEmpresa i,
.facebookEmpresa i,
.whatsappEmpresa i {
    font-size: 25px;
    vertical-align: middle;
}

.instagramEmpresa i {
    color: #E1306C;
}

.facebookEmpresa i {
    color: #1877F2;
}

.whatsappEmpresa i {
    color: #25D366;
}

/*Sobre nos*/
.sobreNos-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 55px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.secao-zigzag {
    margin: 50px 0;
}

.secao-zigzag h3 {
    font-size: 1.5rem;
    text-align: center;
    color: #6f4e37;
    margin-bottom: 25px;
    border-bottom: 2px solid #fbecce;
    display: inline-block;
    padding-bottom: 5px;
}

.conteudo-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.conteudo-flex img {
    width: 45%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
}

.conteudo-flex p {
    width: 50%;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    text-align: justify;
    font-family: var(--fonte-primaria);
}

.secao-zigzag:nth-child(even) .conteudo-flex {
    flex-direction: row-reverse;
}

/*ver mais*/
.verMaisProduto-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    background: #fff;
    padding: 60px 80px;
    border-radius: 20px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
    margin: 60px 80px;
    flex-wrap: wrap;
}

.bola-produto-vermais {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    width: 100%;
}

.produto-esquerda {
    flex: 1 1 45%;
    max-width: 600px;
}

.produto-esquerda img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.produto-direita {
    flex: 10%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
}

.categoria-vermais {
    font-family: "Domine", serif;
    font-size: 1rem;
    color: #8f8f8f;
}

.descricaoProduto-vermais {
    font-family: "Domine", serif;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 10px;
}

.precoProduto-vermais {
    font-size: 2rem;
    font-weight: bold;
    color: #b85c38;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .cardProduto {
        width: 300px;
        min-height: 450px;
    }

    .card-img-produto {
        width: 100%;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .ambiente-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .fotoGrande {
        grid-row: auto;
    }

    .fotoGrande img,
    .ambiente-grid img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 992px) {
    .contatos-container {
        flex-direction: column;
        align-items: center;
    }

    .coluna-esquerda,
    .coluna-direita {
        width: 100%;
    }

    .coluna-direita iframe {
        height: 320px;
    }
}

@media (max-width: 1200px) {
    .verMaisProduto-container {
        padding: 40px 40px;
        gap: 40px;
        margin: 40px 20px;
    }

    .produto-esquerda img {
        width: 100%;
        height: 600px;
    }
}

@media (max-width: 900px) {
    .verMaisProduto-container {
        flex-direction: column;
        padding: 30px 20px;
        margin: 30px 10px;
        gap: 30px;
    }

    .produto-esquerda,
    .produto-direita {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .produto-esquerda img {
        width: 100%;
        height: 600px;
    }

    .produto-direita {
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .verMaisProduto-container {
        padding: 20px 10px;
        margin: 20px 5px;
        gap: 20px;
    }

    .descricaoProduto-vermais {
        font-size: 1rem;
    }

    .precoProduto-vermais {
        font-size: 1.4rem;
    }
}