/* Importação da fonte Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Estilos Globais */
:root {
    /* CORES FORNECIDAS PELO USUÁRIO */
    --primary-blue: #2d83e6;    /* Azul Principal (Substitui Laranja em Títulos e Ícones) */
    --dark-blue: #1861b5;       /* Azul Escuro */
    --light-green: #8fc834;     /* Verde Claro (Botões de Ação e Envio) */
    --yellow-accent: #f2ff00;
    --light-gray: #f9f9f9;
    --text-color: #0c7cc6;      /* Azul Claro Secundário */
    --btn-unidade-bg: #8fc834; 
    --btn-parceiro-bg: #2d83e6; 
    --btn-parceiro-text: #fff; 

    /* VARIÁVEIS ADICIONAIS DE LAYOUT */
    --page-bg: #f9f9f9;         /* Fundo bege suave do card/layout da modal */
    --card-bg: #fff;            /* Fundo branco dos cards de unidade */
    --text-dark: #03135a;          /* Texto principal escuro */
    --text-contact: #555;       /* Texto de contato mais suave */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark); 
    line-height: 1.6;
    background-color: var(--light-gray);
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

p {
    margin-bottom: 15px;
}

.text-center {
    text-align: center;
}