/* Definições de Cores e Fontes (Baseado na Identidade Visual) */
:root {
    --color-primary: #007bff; /* Azul Escuro */
    --color-secondary: #00caff; /* Ciano/Azul Claro */
    --color-text-dark: #333333;
    --color-text-light: #FFFFFF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: #f4f7fa; /* Fundo levemente cinza/azul */
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-secondary);
}

/* Header */
.header {
    background-color: var(--color-text-dark); /* Fundo Preto/Cinza Escuro */
    color: var(--color-text-light);
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo {
    height: 160px; /* Ajuste o tamanho do logo */
}

.slogan-header {
    font-size: 0.9em;
    font-weight: 400;
    color: #cccccc;
}

/* Hero Section (Primeira Dobra) */
.hero-section {
    background: var(--color-primary); /* Fundo Azul Sólido */
    color: var(--color-text-light);
    padding: 60px 5%;
    text-align: center;
    min-height: 80vh; /* Garante que preencha a altura da tela */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
    padding-right: 30px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5em;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-secondary); /* Destaque em Ciano */
}

.hero-content .subtitle {
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* Botão CTA */
.cta-button {
    display: inline-block;
    background-color: var(--color-secondary); /* Ciano Destaque */
    color: var(--color-text-dark); /* Texto escuro no botão claro */
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #00e5ff; /* Ciano um pouco mais claro no hover */
    transform: translateY(-2px);
}

/* Cartão de Contato */
.contact-card {
    background-color: var(--color-text-light);
    color: var(--color-text-dark);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.contact-card h2 {
    font-family: var(--font-heading);
    font-size: 1.3em;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.profile-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
    margin-bottom: 15px;
}

.contact-info .name {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info .role {
    color: #666;
    margin-bottom: 15px;
}

.contact-info hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 15px 0;
}

.contact-info p {
    margin: 5px 0;
    text-align: left;
}

.contact-info .label {
    font-weight: 600;
    color: var(--color-primary);
    display: inline-block;
    min-width: 70px; /* Alinha os dois pontos */
}

/* Footer */
.footer {
    background-color: var(--color-text-dark);
    color: #cccccc;
    text-align: center;
    padding: 15px 5%;
    font-size: 0.8em;
}

/* Responsividade Básica */
@media (max-width: 800px) {
    .hero-section .container {
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .contact-card {
        max-width: 90%;
    }
}
