/* style.css */
:root {
    --brand-cyan: #00AEEF; /* Cor do boneco/texto da logo */
    --brand-magenta: #EC008C; /* Cor das balanças da logo */
    --text-main: #333333;
    --text-light: #666666;
    --bg-color: #FAFAFA;
    --border-color: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- CABEÇALHO --- */
.main-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 1rem;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.logo-container img {
    max-width: 280px;
    height: auto;
}

.header-divider {
    width: 1px;
    height: 60px;
    background-color: var(--border-color);
}

.header-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.3;
}

/* --- ESTRUTURA E SEÇÕES --- */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.section {
    padding: 2rem 0;
}

.section-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 3rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* --- BANNER --- */
.banner-cofrinho {
    background-image: url('banner.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
}

.banner-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 6rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-text {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
}

.banner-text p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.banner-text h2 {
    font-size: 2.2rem;
    font-weight: 500;
}

/* --- CONTATOS --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-box h3 {
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.contact-list i {
    font-size: 1.3rem;
    color: var(--brand-cyan);
}

.contact-list a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: var(--brand-cyan);
}

/* --- FORMULÁRIO --- */
.form-section {
    max-width: 600px;
    margin: 0 auto;
}

.form-instructions {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.form-instructions-sub {
    font-size: 0.9rem;
    color: var(--brand-cyan);
    margin-bottom: 2rem;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

input, textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    background-color: #fff;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

.btn-submit {
    background-color: #E0E0E0;
    color: var(--text-main);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 600;
    align-self: flex-start;
    transition: background 0.3s, color 0.3s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: var(--brand-cyan);
    color: #fff;
}

.hp-field { display: none !important; }

/* Alertas */
.alert { padding: 1rem; margin-bottom: 1.5rem; border-radius: 6px; font-weight: 500; font-size: 0.95rem; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* --- RODAPÉ DA AGÊNCIA --- */
.agency-footer {
    background-color: #EDEDED;
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid #DFDFDF;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.agency-footer p {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 1px;
}

.agency-footer img {
    height: 35px; /* Ajuste o tamanho da logo da Ecoa aqui */
    width: auto;
    transition: transform 0.3s ease;
}

.agency-footer img:hover {
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 600px) {
    .main-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .header-divider { display: none; }
    .header-text p { text-align: center; }
    .banner-overlay { padding: 4rem 1rem; }
    .banner-text h2 { font-size: 1.6rem; }
    .contact-grid { gap: 2rem; }
}