/* ================== RESET ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* ================== GERAL ================== */
.wrapper {
    width: 100%;
    height: auto;
}

/* ================== HEADER ================== */
header {
    width: 100%;
    min-height: 100vh;
    height: auto;
    background: linear-gradient(rgba(120, 8, 33, .8), rgba(120, 8, 33, .8)),
                url(./assets/imagem-header22.jpg) no-repeat center/cover;
    padding: 40px 0 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.img-logo {
    width: 180px;
    display: block;
    margin: 0 auto 20px auto;
}

/* Texto header */
header p {
    width: 90%;
    color: #fff;
    font-size: clamp(18px, 4vw, 28px);
    font-weight: 400;
    line-height: 1.2em;
    text-align: center;
    text-shadow: 0px 0px 10px #000;
    margin-top: 20px;
}

b {
    color: #efd97b;
}

/* Botão principal */
button {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fff;
    background: #2C9E1D;
    border: solid 1px #2C9E1D;
    border-radius: 50px;
    padding: 15px 40px;
    cursor: pointer;
    margin: 45px auto 0 auto;
    display: block;
    box-shadow: 0 0 10px #9d9d9d;
}

button:hover { opacity: 0.8; }
button:active { opacity: 0.65; }

.link-contact,
.link-contact-sobre {
    color: white;
    text-decoration: none;
}

/* ================== ASSUNTOS ================== */
.section-assuntos {
    padding: 50px 0;
    text-align: center;
}

.section-assuntos h1 {
    font-size: 40px;
    font-weight: 600;
    color: rgba(120, 8, 33);
}

.container-assuntos {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 60px;
    flex-wrap: wrap;
}

.assuntos {
    width: 260px;
}

.assuntos p {
    font-size: 26px;
    font-weight: bold;
    margin-top: 10px;
}

/* Ícones */
.img-assunto {
    width: 120px;
    height: 120px;
    background: #efd97b;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}

.img-assunto:hover {
    transform: scale(1.2);
    background: rgba(120, 8, 33);
}

/* ================== SOBRE ================== */
.section-flavia {
    width: 100%;
    height: auto;
    background: linear-gradient(90deg, rgba(92,4,23,1) -59%, rgba(120,8,33,1) 45%);
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.img-flavia {
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 0 10px #f7f7f7;
}

.sobre-text {
    max-width: 650px;
}

.sobre-text h2 {
    font-size: 43px;
    color: #fff;
}

.sobre-text p {
    font-size: 20px;
    color: #fff;
    margin-top: 20px;
    line-height: 1.4em;
}

.button-sobre {
    margin-top: 25px;
    padding: 12px 25px;
}

/* ================== FOOTER ================== */
footer {
    width: 100%;
    background: #70757a;
    padding: 50px 20px;
    text-align: center;
}

.img-logo-footer {
    width: 180px;
    display: block;
    margin: 0 auto 25px;
}

.texto-footer h2 {
    font-size: 30px;
    color: rgba(120, 8, 33);
    margin-bottom: 10px;
}

.texto-footer p {
    color: rgba(120, 8, 33);
    font-size: 18px;
    margin-top: 10px;
    transition: 0.3s;
}

.texto-footer p:hover {
    color: #efd97b;
}

.social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
}

.social a {
    width: 55px;
    height: 55px;
    background: rgba(120, 8, 33);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.social a:hover {
    transform: scale(1.2);
}

/* ================== RESPONSIVIDADE ================== */

/* Tablets */
@media (max-width: 900px) {
    .img-logo { width: 150px; }
    .img-flavia { width: 55%; }
}

/* Celulares */
@media (max-width: 600px) {
    .img-logo { width: 130px; }

    header {
        min-height: auto;
        height: auto;
        padding-top: 25px;
        padding-bottom: 40px;
    }

    button {
        width: 90%;
        font-size: 16px;
    }

    .img-flavia { width: 80%; }
    .sobre-text { text-align: center; }
}

/* Celulares pequenos */
@media (max-width: 400px) {
    .img-logo { width: 110px; }
    header p { font-size: 18px; }
    .texto-footer p { font-size: 16px; }
}

/* Telas mínimas */
@media (max-width: 330px) {
    .img-logo { width: 95px; }
    button { font-size: 14px; }
}
