/* Configurações básicas e fontes */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333; /* Cor de texto padrão */
}

/* Container para centralizar o conteúdo */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilo para todas as seções */
.section {
    padding: 60px 0;
}

.bg-light {
    background-color: #f8f8f8;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; border-bottom: 2px solid #ddd; padding-bottom: 10px; }
h3 { font-size: 1.5em; }

/* Estilo dos Botões (CTA - Call to Action) */
.btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 5px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: bold;
    text-align: center;
}

.btn-primary {
    background-color: #007bff; /* Azul primário */
    color: white;
    border: 1px solid #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: transparent;
    color: #007bff; /* Azul primário */
    border: 1px solid #007bff;
}

.btn-secondary:hover {
    background-color: #e6f2ff;
}

/* 2.1. Topo / Hero */
.hero-section {
    background-color: #e0f0ff; /* Fundo levemente azulado */
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    margin-top: 0;
    color: #1a1a1a;
}

.hero-section .subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
}

/* 2.4. Por que terceirizar com a Alelys */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-grid > div {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 2.5. Como funciona na prática */
.workflow-steps {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.workflow-steps li {
    counter-increment: step-counter;
    margin-bottom: 25px;
    padding-left: 50px;
    position: relative;
}

.workflow-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* 2.7. Quem está por trás – Sobre a Dra. Monika */
.about-monika {
    display: flex;
    gap: 30px;
    align-items: center;
}

.profile-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    background-color: #ccc; /* Placeholder */
    border-radius: 50%;
    /* Adicione a imagem real aqui no CSS ou no HTML */
}

/* 2.9. Contato */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Garante que padding não altere a largura total */
}

.contact-form textarea {
    grid-column: 1 / -1; /* Ocupa as duas colunas */
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    grid-column: 1 / -1;
    justify-self: start;
    margin: 0;
}

/* Rodapé */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}