

/* ==========================================
   PÁGINA REGULARIZE SEU MUNICÍPIO
   ========================================== */

/* Hero Section - Fundo Verde com Padrão em 80% */
.regularize-hero {
    margin-top: 100px;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;  /* ← Sem fundo na seção */
}

.regularize-hero h1 {
    max-width: 90%;  /* ← Div ocupa 80% */
    width: 100%;
    padding: 60px 20px;  /* ← Espaçamento interno */
    font-size: 55px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
    /* ↓ FUNDO VERDE AGORA ESTÁ AQUI */
    background: linear-gradient(rgba(42, 157, 143, 0.95), rgba(42, 157, 143, 0.5)), 
                url('../assets/images/header-regularize-pattern.png') center/cover;
    background-color: #2a9d8f;
}


/* Conteúdo Centralizado (70%) */
.regularize-content {
    background: var(--color-white);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.content-wrapper {
    max-width: 50%;
    width: 100%;
}

.content-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 30px;
    line-height: 1.4;
}

.content-wrapper p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    text-align: justify;
}

.content-wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 30px;
    line-height: 1.4;
}

/* Formulário */
.regularize-form {
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    background: white;
    font-size: 15px;
    font-family: var(--font-main);
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-teal);
}

.btn-enviar {
    background: var(--color-orange);
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-enviar:hover {
    background: #d4593e;
    transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVO
   ========================================== */

@media (max-width: 1024px) {
    .content-wrapper {
        max-width: 85%;
    }
    
    .regularize-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .regularize-hero {
        margin-top: 80px;
        padding: 60px 20px;
    }
    
    .regularize-hero h1 {
        font-size: 32px;
    }
    
    .content-wrapper {
        max-width: 95%;
    }
    
    .content-wrapper h2 {
        font-size: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .regularize-hero h1 {
        font-size: 24px;
    }
    
    .content-wrapper h2 {
        font-size: 18px;
    }
    
    .content-wrapper p {
        font-size: 14px;
    }
    
    .btn-enviar {
        width: 100%;
    }
}
