/* ==========================================
   1. IMPORTAÇÃO DA GOTHAM ROUNDED (@font-face)
   ========================================== */
@font-face {
    font-family: 'Gotham Rounded';
    src: url("../fonts/GothamRounded-Book.e40570a322c8.otf") format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Rounded';
    src: url("../fonts/GothamRounded-Medium.4518b6f067e2.otf") format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Rounded';
    src: url("../fonts/GothamRounded-Bold.a17abd0604f2.otf") format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* ==========================================
   2. APLICAR A FONTE A TODA A PÁGINA
   ========================================== */
.escolas-header,
.form-container,
.form-container input,
.form-container select,
.form-container textarea,
.form-container label,
.form-container button {
    font-family: 'Gotham Rounded', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* ==========================================
   CABEÇALHO DA PÁGINA
   ========================================== */
.escolas-header {
    max-width: 800px;
    margin: 50px auto 30px auto;
    padding: 0 20px;
    text-align: center;
}

.escolas-header h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #50BCC5; /* Azul Etcetera */
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.escolas-header p {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 400;
    line-height: 1.6;
}

/* ==========================================
   CAIXA DO FORMULÁRIO (CARD CENTRADO)
   ========================================== */
.form-container {
    max-width: 700px;
    margin: 0 auto 100px auto;
    padding: 40px 45px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

/* ==========================================
   CAMPOS DO FORMULÁRIO (ALINHADOS EM COLUNA)
   ========================================== */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    text-align: left;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 400;
    color: #1e293b;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #50BCC5;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(80, 188, 197, 0.15);
}

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

/* LINHA COM DOIS CAMPOS LADO A LADO */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ==========================================
   CHECKBOX DE PRIVACIDADE (RGPD)
   ========================================== */
.rgpd-check {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0 30px 0;
}

.rgpd-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #50BCC5;
    cursor: pointer;
}

.rgpd-check label {
    font-size: 0.9rem;
    font-weight: 400;
    color: #64748b;
    cursor: pointer;
}

/* ==========================================
   AGRUPAMENTO DOS DOIS BOTÕES LADO A LADO
   ========================================== */
.botoes-acao {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 15px;
}

/* ==========================================
   ESTILO COMUM AOS BOTÕES DO SITE (OUTLINE)
   ========================================== */
.btn-whatsapp,
.btn-email {
    width: 100%;
    background-color: #ffffff;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* BOTÃO WHATSAPP (CONTORNO VERDE WHATSAPP) */
.btn-whatsapp {
    color: #25D366;
    border: 2px solid #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.12);
}

.btn-whatsapp:hover {
    background-color: #25D366;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

/* BOTÃO E-MAIL (CONTORNO AZUL ETCETERA #50BCC5) */
.btn-email {
    color: #50BCC5;
    border: 2px solid #50BCC5;
    box-shadow: 0 4px 15px rgba(80, 188, 197, 0.12);
}

.btn-email:hover {
    background-color: #50BCC5;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(80, 188, 197, 0.35);
}

/* ==========================================
   RESPONSIVIDADE (MOBILE / TELEMÓVEL)
   ========================================== */
@media (max-width: 650px) {
    .form-container {
        padding: 30px 20px;
        margin: 0 15px 80px 15px;
    }

    .form-row,
    .botoes-acao {
        grid-template-columns: 1fr; /* Passa a 1 coluna no telemóvel */
        gap: 14px;
    }
}