/* ============================================
   contacto.css — Página Contactos
   Importa estilos base + estilos próprios
   ============================================ */
@import url('base.css');

/* ─── SECÇÃO CONTACTO ─── */
.contacto-section {
    background: #e8e9e9;
    padding: 70px 0;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}

/* ─── INFO ─── */
.contacto-info h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 10px;
}

.contacto-info > p {
    font-size: 14px;
    color: #666;
    margin-bottom: 28px;
    line-height: 1.7;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.info-item:last-of-type { border-bottom: none; }

.info-icon {
    width: 38px;
    height: 38px;
    background: #00b4ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 17px;
    height: 17px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-content .label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 3px;
}

.info-content .value {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

.info-content a { color: #00b4ff; text-decoration: none; }

.diretor-card {
    background: #1E3A8A;
    border-radius: 10px;
    padding: 22px;
    margin-top: 28px;
}

.diretor-card .cargo {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00b4ff;
    margin-bottom: 7px;
    font-weight: 600;
}

.diretor-card .nome {
    font-size: 19px;
    font-weight: 700;
    color: white;
}

.diretor-card .empresa {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
}

/* ─── FORMULÁRIO ─── */
.form-wrap {
    background: white;
    border-radius: 10px;
    padding: 36px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}

.form-wrap h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 26px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    background: #f9f9f9;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00b4ff;
    background: white;
}

.form-group textarea {
    height: 115px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 12px;
    background: #00b4ff;
    color: white;
    border: none;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.form-submit:hover { background: #0095d4; }

.success-msg {
    display: none;
    margin-top: 20px;
    background: #e0f7ff;
    border: 1px solid #00b4ff;
    border-radius: 10px;
    padding: 18px 20px;
}

.success-msg p:first-child {
    font-size: 15px;
    font-weight: 600;
    color: #1E3A8A;
    margin-bottom: 4px;
}

.success-msg p:last-child {
    font-size: 13px;
    color: #555;
}

.footer-brand .logo{
    width: 150px;
}

.success-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    animation: fadeIn .4s ease;
}
.success-msg h3 { font-size: 1.5rem; color: #16a34a; }
.success-msg p  { color: #555; max-width: 360px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }


/* ─── RESPONSIVO ─── */
@media (max-width: 1024px) {
    .contacto-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-hero h1 { font-size: 26px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ── 1280px ── */
@media (max-width: 1280px) {
    .contacto-info h2 { font-size: 24px; }
}
 
/* ── 1024px ── */
@media (max-width: 1024px) {
    .contacto-grid { grid-template-columns: 1fr; gap: 36px; }
    .form-wrap { padding: 30px; }
}
 
/* ── 768px ── */
@media (max-width: 768px) {
    .contacto-section { padding: 50px 0; }
    .contacto-grid { gap: 28px; }
    .contacto-info h2 { font-size: 22px; }
    .form-wrap { padding: 24px; }
    .form-wrap h3 { font-size: 18px; margin-bottom: 20px; }
    .diretor-card { padding: 18px; }
    .diretor-card .nome { font-size: 17px; }
}
 
/* ── 600px ── */
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contacto-info h2 { font-size: 20px; }
    .info-content .value { font-size: 13px; }
}
 
/* ── 480px ── */
@media (max-width: 480px) {
    .contacto-section { padding: 36px 0; }
    .form-wrap { padding: 20px 16px; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 13px; padding: 9px 11px; }
    .form-submit { font-size: 14px; padding: 12px; }
    .info-icon { width: 34px; height: 34px; }
    .info-icon svg { width: 15px; height: 15px; }
    .contacto-info h2 { font-size: 18px; }
    .contacto-info > p { font-size: 13px; }
}
 
/* ── 360px ── */
@media (max-width: 360px) {
    .form-wrap { padding: 16px 12px; }
    .contacto-info h2 { font-size: 16px; }
    .diretor-card .nome { font-size: 15px; }
}
