/* ==========================================================================
   Página de Contacto — contacto.css
   ========================================================================== */

.contacto-hero {
	background: var(--gp-green-dark);
	padding: 36px 0 32px;
}
.contacto-hero h1 {
	font-size: 26px; font-weight: 500; color: #fff; margin-bottom: 8px;
}
.contacto-hero p {
	font-size: 14px; color: rgba(255,255,255,.82); max-width: 480px; line-height: 1.7;
}

.contacto-body { padding: 32px 0 48px; }

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

/* Cards de info */
.contacto-card {
	display: flex; gap: 14px; align-items: flex-start;
	background: var(--gp-white); border: 1px solid var(--gp-border);
	border-radius: 10px; padding: 16px; margin-bottom: 12px;
}
.contacto-card__icon {
	width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0;
	background: var(--gp-green-light); color: #2a5e10;
	display: flex; align-items: center; justify-content: center;
	font-size: 18px;
}
.contacto-card__icon--amber { background: #fef3e2; color: #7a4f0a; }
.contacto-card h3 { font-size: 13.5px; font-weight: 500; color: var(--gp-text); margin-bottom: 4px; }
.contacto-card p  { font-size: 13px; color: var(--gp-muted); line-height: 1.6; margin-bottom: 6px; }
.contacto-card a  { font-size: 13px; font-weight: 500; color: var(--gp-green-dark); text-decoration: none; }
.contacto-card a:hover { text-decoration: underline; }

/* O que podes perguntar */
.contacto-assuntos {
	background: var(--gp-light); border: 1px solid var(--gp-border);
	border-radius: 10px; padding: 16px;
}
.contacto-assuntos__title {
	font-size: 12px; font-weight: 500; text-transform: uppercase;
	letter-spacing: .06em; color: var(--gp-muted); margin-bottom: 10px;
}
.contacto-assuntos ul { list-style: none; padding: 0; margin: 0 0 12px; }
.contacto-assuntos li {
	display: flex; align-items: flex-start; gap: 7px;
	font-size: 12.5px; color: var(--gp-muted); margin-bottom: 6px; line-height: 1.5;
}
.contacto-assuntos li i { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.contacto-assuntos li .ti-check { color: var(--gp-green); }
.contacto-assuntos li .ti-x    { color: var(--gp-red); }
.contacto-assuntos__no { border-top: 1px solid var(--gp-border); padding-top: 10px; }
.contacto-assuntos__no-title {
	font-size: 12px; font-weight: 500; color: var(--gp-muted); margin-bottom: 8px;
}
.contacto-assuntos__no ul { margin-bottom: 0; }

/* Formulário */
.contacto-form-wrap {
	background: var(--gp-white); border: 1px solid var(--gp-border);
	border-radius: 12px; padding: 28px;
}
.contacto-form-wrap h2 {
	font-size: 18px; font-weight: 500; color: var(--gp-text);
	margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--gp-border);
}

.cf-group { margin-bottom: 16px; }
.cf-group label {
	display: block; font-size: 13px; font-weight: 500;
	color: var(--gp-text); margin-bottom: 6px;
}
.cf-group label span { color: var(--gp-red); }
.cf-group input[type="text"],
.cf-group input[type="email"],
.cf-group select,
.cf-group textarea {
	width: 100%; padding: 10px 12px; font-size: 14px;
	border: 1px solid var(--gp-border); border-radius: 8px;
	background: var(--gp-white); color: var(--gp-text);
	font-family: inherit; transition: border-color .15s;
	appearance: none; -webkit-appearance: none;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
	outline: none; border-color: var(--gp-green);
	box-shadow: 0 0 0 3px var(--gp-green-light);
}
.cf-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.cf-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23888' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }

.cf-rgpd {
	display: flex; align-items: flex-start; gap: 8px;
	margin-bottom: 18px;
}
.cf-rgpd input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; cursor: pointer; accent-color: var(--gp-green); }
.cf-rgpd label { font-size: 12.5px; color: var(--gp-muted); line-height: 1.5; cursor: pointer; }
.cf-rgpd label a { color: var(--gp-green-dark); text-decoration: underline; }

.cf-submit {
	width: 100%; padding: 12px; background: var(--gp-green);
	color: #fff; font-size: 14px; font-weight: 500;
	border: none; border-radius: 8px; cursor: pointer;
	font-family: inherit; display: flex; align-items: center;
	justify-content: center; gap: 8px; transition: opacity .15s;
}
.cf-submit:hover { opacity: .9; }
.cf-submit i { font-size: 16px; }

/* Mensagem de sucesso */
.contacto-success {
	display: flex; gap: 14px; align-items: flex-start;
	background: var(--gp-green-light); border: 1px solid #a8d5a2;
	border-radius: 10px; padding: 16px; margin-bottom: 20px;
}
.contacto-success i { font-size: 22px; color: var(--gp-green); flex-shrink: 0; }
.contacto-success strong { display: block; font-size: 14px; color: #2a5e10; margin-bottom: 3px; }
.contacto-success p { font-size: 13px; color: #2a5e10; margin: 0; }

@media (max-width: 700px) {
	.contacto-grid { grid-template-columns: 1fr; }
	.contacto-form-wrap { padding: 20px 16px; }
}
