/* Fontes do Google */
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --shadow-color: #e5e9ec;
    --primary-color: #0F7A3A;
    --secondary-color: #e06a0c;
    --green: #26a737;
}

body {
    font-family: 'Kanit', serif;
    background: #f5f7f6;
    margin: 0;
    padding-top: 80px;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.header {
    background-color: var(--primary-color);
    color: white;
    border-bottom: 4px solid var(--secondary-color);

    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Logos responsivas */
.logo-compact {
    height: 50px;
    display: none;
}

.logo-full {
    height: 60px;
    display: block;
}


/* Área do título */
.title-area .title {
    font-size: 30px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    transition: color 0.3s ease;
    span {
        color: var(--secondary-color);
    }
}

.title-area .subtitle {
    font-size: 15px;
    opacity: 0.9;
    color: #d9e8d6;
}

main {
    flex: 1;
}

/* Footer */
.footer {
    background-color: #e5e5e5;
    color: #333;
    font-size: 13px;
    border-top: 2px solid var(--secondary-color);
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left div {
    line-height: 1.4;
    display: block;
}

.footer-right {
    text-align: right;
    line-height: 1.4;
    .font {
        font-family: 'Open Sans', sans-serif !important;
    }
}

.footer-left i {
    margin-right: 6px;
}

@media (max-width: 620px) {
    .logo-compact {
        display: block;
    }
    .logo-full {
        display: none;
    }

    .footer {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .footer-left, .footer-right {
        text-align: center;
    }
}
