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

.wrapper {
    width: 100%;
    height: auto;
}

/* ================= HEADER ================= */

header {
    max-width: 100vw;
    height: 100vh;
    background: linear-gradient(rgba(107, 62, 38, .8), rgba(107, 62, 38, .8)), url(./assets/agiliza.png) no-repeat;
    background-size: cover;
    background-position: center;
}

header p {
    width: 80vw;
    color: #ffffff;
    font-size: 28px;
    text-align: center;
    margin: 40px auto 0px auto;
}

.titulo-site {
    color: #FFF;
    font-size: 48px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    letter-spacing: 2px;
}
/* 
.titulo-site {
    color: #FFF;
    font-size: 52px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
} */
/* 
.titulo-site {
    color: #F5E6D3;
    font-size: 48px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    letter-spacing: 2px;
} */
/* 
.titulo-site {
    color: #FFF;
    font-size: 48px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    letter-spacing: 2px;
    font-weight: 300;
} */

b {
    font-weight: 700;
    color: #FFB347;
}

button {
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #FFFFFF;
    background-color: #D95A1A;
    border: none;
    border-radius: 50px;
    box-shadow: 0px 0px 10px #9d9d9d;
    padding: 15px 40px;
    cursor: pointer;
    margin: 60px auto 0px auto;
    display: block;
}

button:hover {
    opacity: 0.8;
    transition: 0.4s;
}

.link-contact,
.link-contact-sobre {
    text-decoration: none;
    color: white;
}

.img-logo {
    width: 25%;
    display: block;
    margin: 0 auto;
    padding-top: 10%;
}

/* ================= PRODUTOS ================= */

.section-assuntos {
    padding: 60px 20px;
    background-color: #FFF8F0;
}

.section-assuntos h1 {
     color: #D95A1A;
    font-size: 42px;
    text-align: center;
}

.container-assuntos {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 60px;
    flex-wrap: wrap;
}

.assuntos {
    width: 220px;
    text-align: center;
}

.assuntos p {
    font-size: 20px;
    font-weight: bold;
   color: #2C1810;
}


.img-assunto {
    width: 220px;
    height: 150px;
    margin: 20px auto;
    border-radius: 20px; 
    overflow: hidden;
}

.img-assunto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;     
    transition: 0.4s;
}

.img-assunto:hover img {
    transform: scale(1.1);
}

/* ================= SOBRE ================= */

.section-flavia {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
   background: linear-gradient(135deg, #2C1810, #4A2A1A);
    flex-wrap: wrap;
}

.img-flavia {
    width: 280px;
    border-radius: 12px;
    box-shadow: 0px 0px 15px #00000040;
}

.sobre-text {
    max-width: 600px;
}

.sobre-text h2 {
    color: #FFB76E;
    font-size: 40px;
}

.sobre-text p {
    color: #FFF2E6;
    font-size: 18px;
    margin-top: 15px;
    line-height: 1.5em;
}

.button-sobre {
    margin-top: 20px;
}

/* ================= FOOTER ================= */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    gap: 50px;
     background: #2C1810;
    flex-wrap: wrap;
}

footer .img-logo-footer {
    height: 120px;
}

.texto-footer {
    display: flex;
    flex-direction: column;
    align-items: center;  
    text-align: center;   
}

.texto-footer h2 {
    font-size: 28px;
    color: #FFB76E;
}

.texto-footer p {
    font-size: 16px;
     color: #FFEBD9;
    margin-top: 10px;

}

.img-contatos {
    position: relative;
    top: 5px;
    margin-right: 5px;
    width: 20px;       
    height: 20px;          
    filter: brightness(0) saturate(100%) invert(74%) sepia(55%) 
    saturate(1236%) hue-rotate(350deg) brightness(98%) contrast(89%);
}

.social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social a {
    width: 45px;
    height: 45px;
    background-color: #D95A1A;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social a:hover {
    transform: scale(1.2);
    transition: 0.3s;
}


.link-whatsapp img {
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
}

.link-whatsapp img:hover {
    transform: scale(1.1);
    transition: 0.3s;
}



/* ================= RESPONSIVO ================= */

@media (max-width: 900px) {

    header {
        height: 60vh;
    }

    header p {
        font-size: 20px;
    }

    .section-flavia {
        flex-direction: column;
        text-align: center;
    }

    .img-flavia {
        width: 70%;
    }

    .container-assuntos {
        gap: 20px;
    }
}

@media (max-width: 500px) {

    header {
        height: 50vh;
    }

    button {
        width: 90%;
        font-size: 14px;
    }

    .section-assuntos h1 {
        font-size: 28px;
    }
}


@media screen and (max-width: 950px) {
    header {
        height: 100vh !important;  
        min-height: 100vh !important;
        max-height: 100vh !important;  
        overflow-y: auto !important;   
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;  
    }
    
    .img-logo {
        width: 60% !important;
        padding-top: 0 !important;
        margin-top: -50px !important;  
    }
    
    header p {
        width: 85vw !important;
        font-size: 22px !important;
        margin: 20px auto 0px auto !important;
        padding: 0 15px !important;
    }
    
    header button {
        margin: 30px auto 40px auto !important;
        width: 80% !important;
        padding: 12px 20px !important;
    }
}

@media screen and (max-width: 584px) {
    header {
        justify-content: center !important;
    }
    
    .img-logo {
        width: 75% !important;
        margin-top: -30px !important;
    }
    
    header p {
        font-size: 20px !important;
        width: 90% !important;
    }
    
    header button {
        width: 85% !important;
        margin: 25px auto 30px auto !important;
    }
}

@media screen and (max-width: 400px) {
    header {
        justify-content: center !important;
    }
    
    .img-logo {
        width: 80% !important;
        margin-top: -20px !important;
    }
    
    header p {
        font-size: 18px !important;
        width: 95% !important;
    }
    
    header button {
        width: 90% !important;
        padding: 10px 15px !important;
    }
    
    .link-contact {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 350px) {
    .img-logo {
        width: 85% !important;
        margin-top: -10px !important;
    }
    
    header p {
        font-size: 16px !important;
    }
    
    header button {
        padding: 8px 12px !important;
    }
}


