/* ----- 1. VARIÁVEIS GLOBAIS E RESET ----- */
:root {
    --primary-green: #9fc54d;
    --dark-green: #6a994e;
    --brand-blue: #5ac3e6;
    --text-color: #4a4a4a;
    --light-grey: #f8f9fa;
    --white: #ffffff;
    --border-color: #e6e6e6;
    --font-family: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.7;
    background-color: #f4f7f6;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23dce5e2' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* ----- 2. CABEÇALHO (HEADER) ----- */
.header {
    background-color: var(--white);
    padding: 15px 0; /* Reduzido de 20px para 15px */
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.header img {
    max-width: 240px;
    transition: transform 0.3s ease;
}

.header img:hover {
    transform: scale(1.03);
}

/* ----- 3. CONTEÚDO PRINCIPAL ----- */
.main-content {
    padding: 30px 0;
}

.content-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    border-top: 5px solid var(--brand-blue); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    margin-bottom: 40px;
}

/* Tipografia do conteúdo */
.content-box h1 {
    font-size: 2.4rem;
    color: var(--brand-blue);
    margin-bottom: 25px;
    text-align: center;
}

.content-box h2 {
    font-size: 1.6rem;
    color: var(--dark-green);
    margin-top: 35px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 8px;
}

.content-box p, .content-box ul {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

.content-box ul {
    padding-left: 25px;
}

.content-box a {
    color: var(--brand-blue);
    font-weight: 700;
    text-decoration: none;
}

.content-box a:hover {
    text-decoration: underline;
}

/* ----- 4. ELEMENTOS ESPECÍFICOS DA PÁGINA INICIAL ----- */

.content-box .farewell {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark-green);
    margin-top: 40px;
    text-align: center;
}
.content-box a.contact-link {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    padding: 15px 30px;
    font-size: 1.1rem;
    color: #FFFFFF !important;
    font-weight: 700;
    background-color: var(--brand-blue);
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    text-align: center;
}

.content-box a.contact-link:hover {
    color: #FFFFFF !important;
    background-color: #a0c54d;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}


/* ----- 5. TABELA DE HIGIENIZAÇÃO ----- */
.hygiene-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 1rem;
}

.hygiene-table th, .hygiene-table td {
    border: 1px solid var(--border-color);
    padding: 14px;
    text-align: center;
}

.hygiene-table th {
    background-color: var(--dark-green);
    color: var(--white);
    font-weight: 700;
}

.hygiene-table td:first-child {
    text-align: left;
    font-weight: 700;
    color: var(--dark-green);
}

/* ----- 6. RODAPÉ (FOOTER) ----- */
.site-footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 50px 0 0 0; 
    font-size: 1rem;
    margin-top: 40px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 0 20px;
    max-width: 940px;
    margin: 0 auto;
}

.site-footer .footer-column h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.site-footer .footer-column ul {
    list-style: none;
    padding: 0;
}

.site-footer .footer-column ul li {
    margin-bottom: 12px;
}

.site-footer .footer-column a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer .footer-column a:hover {
    color: var(--white);
    padding-left: 8px;
}

.site-footer .footer-column p {
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
}

.footer-bottom {
    background-color: var(--dark-green);
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}