/* corpo do site */

body {
    margin: 0;
    padding: 0;
    background-color: #F7BDC5;
    font-family: 'Calibri';
}

/* cabeçalho */

header {
    display:flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 80px;
    margin-left: 32px;
}

.logo img {
    height: 64px;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.menu {
    margin-right: 200px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.botaomenu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 50px;
}
.botaomenu:hover {
    border-radius: 20px;
    background-color: #5D2816;
    cursor: pointer;
}

.botaomenu a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 30px;}

.botaomenu a:hover {
    color:#F7BDC5;
    cursor: pointer;
}

/* corpo principal */

main {

    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0;
}

.imagem {
    display: flex;
    align-items: center;
    width: 50%;
    margin: 10px;
    height: auto;


}

.containermenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: auto;
    margin-top: 0;

}

.descricao img {
    display: flex;
    width: 500px;
    height: auto;
}

.descricao2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.descricao2 img {
    width: 40px;
    height: auto;
}

.descricao2 h3 {
    font-size: 25px;
    margin: 0;
    color: #ac5b41;
    font-weight: 600;
}

.descricao3 {
    display: flex;
    align-items: center;
    justify-content:space-around;
    text-align: center;
    align-items: center;
    gap: 5px;
}
.redes img {
    border-radius: 5px;
    width: 80px;
    height: auto;
    
}

.redes {
    transform: scale(1.0);
    transition: transform 0.3s;
}

.redes:hover {
    transform: scale(1.1);
    cursor: pointer;
}

/* sobre nos */

aside {
     display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0;
    background-color: #ce876f;
}

.sobre {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: auto;

}

.sobre h1 {
    font-size: 100px;
    color: #633c41;
    margin-bottom: 20px;
}

.sobre h2 {
    font-size: 80px;
    color: #633c41;
    margin-bottom: 20px;
}

.sobre p {
    text-indent: 2em;
    text-align: justify;
    font-size: 25px;
    color: #4b2f33;
    margin-left: 20px;
    margin-bottom: 10px;

}

.imagemsalsicha {
    display: flex;
    align-items: center;
    width: 50%;
    margin: 10px;
    height: auto;
}

/* --- SERVIÇOS REFORMULADO --- */
.servicos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f7bdc5 60%, #80c7c3 100%);
    padding: 48px 0 32px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.servicos h1 {
    color: #5D2816;
    font-size: 60px;
    margin-bottom: 60px;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.servicos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-bottom: 32px;
}
.servico-card {
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    box-shadow: 0 4px 24px #5d28161a;
    padding: 24px 18px 18px 18px;
    width: 220px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #fffdfc;
}
.servico-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px #ac5b4140;
    border-color: #e78e8e;
}
.servico-icone {
    font-size: 2.2em;
    margin-bottom: 10px;
    background: #fff;
    color: #ac5b41;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px #80c7c355;
}
.servico-card h2 {
    font-size: 1.1em;
    color: #ac5b41;
    margin-bottom: 10px;
    font-weight: bold;
}
.servico-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.servico-card li {
    color: #5D2816;
    font-size: 0.98em;
    background: none;
    border-radius: 0;
    padding: 3px 0 3px 0;
    margin: 0 auto;
    width: fit-content;
}
.servicos-cta {
    margin-top: 12px;
}
.btn-contratar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 48px;
    background: #5d2816ab;
    border: 2px solid #be6e5379;
    border-radius: 40px;
    margin: 24px auto 0 auto;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    box-shadow: 0 2px 12px #5d281655;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    letter-spacing: 1px;
    text-decoration: none;
}
.btn-contratar:hover {
    background: #5D2816;
    transform: scale(1.05);
}
.btn-contratar a {
    color: #fff;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2em;
}

/* galeria de imagens */
.galeria {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    gap: 2px;
    margin: 20px;
}

.descricaogaleria {
    text-align: center;
    font-size: 30px;
    color: #5D2816;
    margin-bottom: 10px;
    font-weight: bold;
}

/* imagens da galeria */

.galeria .gl-img {
    width: 300px;
    height: 400px;
    border-radius: 10px;
    transform: scale(1.0);
    transition: transform 0.3s;
    border: 1px solid #ffe1d7;
}

.galeria .gl-img:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
    cursor: pointer;
}

/* feedback */

.feedback1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    padding: 20px;
    gap: 5px;
}

.feedback {
    width: 95%;
    height: 90%;
    background: #d19a9e;
    border-radius: 12px;
    border: 2px solid #fff;
    box-shadow: 0 2px 12px 0 rgba(93,40,22,0.06);
    padding: 24px 18px 18px 18px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feedback h2 {
    font-size: 1.5em;
    color: #61353b;
    margin: 12px 0 8px 0;
    font-weight: bold;
    text-align: center;
}

.feedback p {
    font-size: 1.1em;
    color: #61353b;
    text-align: center;
    margin: 0;
}

.feedback .stars {
    color: #FFD700;
    font-size: 2em;
    margin-bottom: 8px;
    text-align: center;
}

/* contato */
.contato {
    border-radius: 20px;
    padding: 40px 20px;
    margin: 40px auto;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.contato h1 {
    color: #5D2816;
    font-size: 48px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.contato p {
    color: #5D2816;
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
}

.contato .descricao2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.contato .descricao2 img {
    width: 32px;
    height: auto;
}

.contato .descricao2 h3 {
    font-size: 20px;
    color: #5D2816;
    font-weight: 600;
    margin: 0;
}

.contato .descricao3 {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 10px;
}

.contato .redes img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(93, 40, 22, 0.08);
    transition: transform 0.2s;
}

.contato .redes img:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(93, 40, 22, 0.18);
}

/* botão voltar ao topo */

.topo {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 56px;
    height: 56px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ac5b41 60%, #5D2816 100%);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(93,40,22,0.18);
    border: 3px solid #fff;
    opacity: 0.92;
    transition: background 0.2s, opacity 0.2s, transform 0.2s;
    /* Garante que o fundo do botão não seja transparente */
}
.topo:hover {
    background: linear-gradient(135deg, #5D2816 60%, #ac5b41 100%);
    opacity: 1;
    transform: scale(1.08);
}
.topo img {
    width: 60%;
    height: 60%;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 50%;
    opacity: 1;
    filter: drop-shadow(0 2px 6px #fff6);
    background: none !important;
    box-shadow: none !important;
    transition: filter 0.2s;
}
.topo:hover img {
    filter: drop-shadow(0 4px 12px #fff9);
}
/* rodapé */

footer {
    background-color: #5D2816;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Ajustes Swiper Galeria */
.galeria-swiper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 40px;
    box-sizing: border-box;
}
.galeria-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}
.galeria-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 420px;
    box-sizing: border-box;
}

/* Ajustes Swiper Feedback */
.feedback-swiper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 40px;
    box-sizing: border-box;
    background: #eab3bc;
    border-radius: 16px;
    border: 3px solid #fff;
    box-shadow: 0 4px 24px 0 rgba(93,40,22,0.08);
}
.feedback-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}
.feedback-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 320px;
    box-sizing: border-box;
}

/* Customização dos botões de navegação do Swiper */
.galeria-swiper .swiper-button-next,
.galeria-swiper .swiper-button-prev,
.feedback-swiper .swiper-button-next,
.feedback-swiper .swiper-button-prev {
    color: #fff;
    background: #5D2816;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(93,40,22,0.15);
    border: 2px solid #fff;
    opacity: 0.85;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.galeria-swiper .swiper-button-next:hover,
.galeria-swiper .swiper-button-prev:hover,
.feedback-swiper .swiper-button-next:hover,
.feedback-swiper .swiper-button-prev:hover {
    background: #ac5b41;
    color: #fff;
    opacity: 1;
}
.galeria-swiper .swiper-button-next:after,
.galeria-swiper .swiper-button-prev:after,
.feedback-swiper .swiper-button-next:after,
.feedback-swiper .swiper-button-prev:after {
    font-size: 1.5em;
    font-weight: bold;
}
