* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

body {
    background-color: #F6F1E9;
    color: #4A4A4A;
}

.galeria {
    margin-bottom: 50px;
    padding-top: 40px;
    text-align: center;
}

.sobre {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 50px 0 50px;
    padding-top: 50px;
    margin-bottom: 50px;
}

.sobre h1 {
    margin-bottom: 80px;
    padding-top: 40px;
    text-align: center;
    font-size: 40px;
}

.sobre img {
    height: 400px;
    width: 600px;
    margin-top: 50px;
    border-radius: 20px;
    
}

.sobre-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    gap: 80px;
    align-items: center;
}

.sobre-right {

    max-width: 1200px;
    gap: 40px;
    letter-spacing: 1px;
    font-size: 20px;
}

.aconchego {
    background-color: #5B4A33;
    color: rgb(219, 219, 219);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 20px;
    text-align: center;
    display: inline-block;
}

.contato {
    padding: 80px 50px;
}

.contato-container {
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 40px; 
    max-width: 1000px;
    margin: 40px auto 0;
}

.contato-left {
    font-size: 20px;
    letter-spacing: 1px;
    text-align: left; 
}

.contacts {
    padding-top: 15px;
}



.contato-right {
    display: flex;
    justify-content: flex-end;
}

.contato img.lu-picture {
    width: 280px;
    height: auto;
    object-fit: initial; 
    margin-top: 40px;
    border-radius: 20px;
    box-shadow: 10px 10px 0px #C85A2E;
}



h2, h1 {
    color: #D5561F;
    font-size: 40px;
    text-align: center;
}


header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    font-size: 25px;
    font-family: DM Sans, sans-serif;
}

header ul {
    display: flex;
    gap: 60px;
    list-style: none;
    color: white;
}

header a {
    text-decoration: none;
    color: white;
}

header a:hover {
    color: #C85A2E;
}


.main {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.caixa-video {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.caixa-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.mascara {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.90) 85%);

   /* background: radial-gradient(circle,
            rgba(238, 174, 202, 0.53) 0%,
            rgba(148, 187, 233, 0.8) 100%);*/
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 1000px; /* ajuste se quiser */
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    height: auto;
    gap: 20px;
    padding: 20px;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 50px;
    cursor: pointer;
}

.product-img {
    width: 100%;
    display: block;
    transition: transform .4s;
}

.image-container {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 10px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* efeito zoom */

.image-container:hover .product-img {
    transform: scale(1.1);
}

/* overlay */

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transition: opacity .3s;
    text-align: center;
    padding: 20px;
}

.image-container:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.overlay p {
    font-size: 14px;
}


.main-footer {
    background-color: #5B4A33;
    color: #E6DFD5;
    padding: 60px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #E6DFD5;
}

.footer-tagline {
    font-size: 18px;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.link-footer {
    color: #E6DFD5;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.link-footer:visited {
    color: #E6DFD5;
}

.link-footer:hover {
    color: #D5561F;
}


.footer-copyright {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.6;
    border-top: 1px solid rgba(230, 223, 213, 0.1);
    padding-top: 40px;
    width: 100%;
    max-width: 600px;
}



.modal {
    display: none; /* Escondido por padrão */
    position: fixed;
    z-index: 100; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Fundo preto com transparência */
    backdrop-filter: blur(5px); /* Efeito de desfoque no fundo */
    justify-content: center;
    align-items: center;
}

/* Conteúdo do Modal (Imagem ou Vídeo) */
#modal-media {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#modal-media img, #modal-media video {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    object-fit: contain;
}

/* Botão Fechar (X) */
.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover {
    color: #C85A2E;
}

/* Botões Anterior e Próximo */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s;
    user-select: none;
    background: none;
    border: none;
}

.prev { left: 50px; }
.next { right: 50px; }

.prev:hover, .next:hover {
    color: #C85A2E;
    transform: scale(1.2);
}

.link-whatsapp img {
    height: 70px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: inline-block; 
    animation: tremer 2s infinite;
}

@keyframes tremer {
    0% { transform: translateX(0); }
    5% { transform: translateX(-4px); }
    10% { transform: translateX(4px); }
    15% { transform: translateX(-4px); }
    20% { transform: translateX(0); }
    100% { transform: translateX(0); }
}


.contato-redes {
    display: flex;
    flex-direction: column; 
    gap: 15px;
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #4A4A4A;
    font-size: 18px;
    transition: 0.3s;
    margin-bottom: 5px
}

.contact-item:hover {
    color: #C85A2E;
    transform: translateX(5px);
}

.contact-item svg {
    stroke: #C85A2E;
    flex-shrink: 0;
}

.contact-item:hover svg {
    stroke: #D5561F;
}


@media (max-width: 768px) {
    
    header {
        padding: 15px 10px;
    }

    header ul {
        gap: 20px; 
        font-size: 16px;
    }

    .logo {
        width: 90%;
    }

    h2, h1, .sobre h1 {
        font-size: 28px;
        padding: 0 20px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
        padding: 15px;
    }

    .image-container {
        height: 300px;
    }


    .sobre {
        margin: 0 20px;
    }

    .sobre-left {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .sobre img {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }

    .sobre-right {
        font-size: 16px;
        text-align: center;
    }

    .aconchego {
        font-size: 16px;
        width: 100%;
    }

  
    .contato {
        padding: 40px 20px;
    }

    .contato-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .contato-left {
        font-size: 16px;
        text-align: center;
    }

    .contato-redes {
        align-items: center;
    }

    .contato img.lu-picture {
        width: 200px; 
        margin-top: 0;
        margin-bottom: 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .prev, .next {
        font-size: 30px;
    }

    .prev { left: 10px; }
    .next { right: 10px; }

    .link-whatsapp img {
        height: 55px; 
    }
}



