/* Font Integration - Assuming Zalando Sans is provided in assets/ZalandoSans-Regular.ttf */
@font-face {
    font-family: 'Zalando Sans';
    src: url('assets/ZalandoSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-dark-green: #103A04; /* Verde escuro para o slogan e rodapé */
    --color-main-green: #4CAF50; /* Verde principal */
    --color-button-bg: #1A5207; /* Cor do botão original */
    --color-button-hover: #293032; /* Cor de hover do botão original */
}

body {
    font-family: 'Zalando Sans', Arial, sans-serif; /* Usar Zalando Sans se disponível */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

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

header {
    text-align: center;
    padding: 20px 0; /* Reduz o espaçamento superior e inferior do cabeçalho */
}

header img {
    /* Aumento de 20% no tamanho do logo */
    max-width: 240px; /* 200px * 1.2 = 240px */
    height: auto;
    margin-bottom: 10px;
}

.slogan {
    /* Slogan: 35% menor que o atual (assumindo o atual como 2em) e cor verde escura */
    font-size: 1.3em; /* 2em * 0.65 = 1.3em */
    color: var(--color-dark-green);
    margin-bottom: 30px;
    font-weight: bold;
}

h2 {
    font-size: 1.5em;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 10px; /* Reduz o espaçamento inferior */
}

h3 {
    font-size: 1.2em;
    color: #555;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

.section {
    padding: 20px 0;
    border-bottom: 1px dashed #ccc;
}

.section:last-child {
    border-bottom: none;
}

.button {
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto; /* Centraliza horizontalmente */
    background-color: var(--color-button-bg);
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: var(--color-button-hover);
}

/* Rodapé Full-Width e Estilização (Novo Layout) */
.full-width-footer {
    width: 100%;
    background-color: var(--color-dark-green);
    color: white;
    margin-top: 40px;
    font-size: 0.9em;
    /* Simplificando para centralização total */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente */
    justify-content: center; /* Centraliza verticalmente */
    padding: 20px 0; /* Adiciona padding para margem interna */
}

.footer-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente */
    justify-content: center; /* Centraliza verticalmente */
    width: 100%;
}

.contact-title {
    font-size: 1.2em; /* 1.5em * 0.8 = 1.2em (20% menor) */
    font-weight: bold;
    margin-bottom: 10px; /* Reduz o espaçamento inferior */
    text-align: center;
    color: white; /* Cor branca para o título Contato */
}

.social-links {
    display: flex;
    gap: 30px; /* Aumenta o espaçamento entre os ícones */
    align-items: center;
    margin-bottom: 10px;
}

/* Estilo específico para o botão no mobile */
@media (max-width: 768px) {
    .button {
        display: block; /* Ocupa a largura total para melhor toque */
        width: 80%; /* Largura reduzida para não encostar nas bordas */
        max-width: 300px; /* Limite de largura */
    }
}

.social-link {
    text-decoration: none;
    color: white;
    font-size: 1em;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.social-link:hover {
    color: #ccc;
}

.social-icon {
    width: 32px; /* Aumenta o tamanho dos ícones para destaque */
    height: 32px;
    margin-right: 8px;
}



/* Responsividade */
@media (max-width: 768px) {
    .social-links {
        /* Links lado a lado no mobile */
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }
}

.quote {
    font-style: italic;
    margin: 20px 0;
    padding: 10px 20px;
    border-left: 5px solid var(--color-main-green);
    background-color: #e8f5e9;
}

.highlight {
    font-weight: bold;
    color: var(--color-main-green);
}

.dark-green-bold {
    font-weight: bold;
    color: var(--color-dark-green);
}

.list-item {
    margin-bottom: 10px;
}
