:root {
    --dodger-blue: #005A9C;
    --dodger-red: #EF3E42;
    --white: #FFFFFF;
    --bg-gray: #e9ecef;
}

body {
    background-color: var(--bg-gray);
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* TÍTULO ESTILO LOGO */
.hero h1 {
    font-family: 'Lobster', cursive;
    font-size: 5rem;
    color: var(--dodger-blue);
    text-align: center;
    transform: rotate(-5deg);
    text-shadow: 3px 3px 0 white;
    margin: 60px 0;
}

/* MENU */
.top-nav {
    background: var(--dodger-blue);
    padding: 15px;
    text-align: center;
    border-bottom: 5px solid var(--dodger-red);
    border-radius: 8px;
}

.top-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin: 0 20px;
    text-transform: uppercase;
}

/* GRID DE COLUNAS */
.layout-grid {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.col-side { flex: 1; }
.col-main { flex: 2; }

/* CAIXAS BRANCAS */
.box {
    background: white;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;
}

.box h2 {
    color: var(--dodger-blue);
    border-bottom: 2px solid var(--bg-gray);
    padding-bottom: 10px;
    margin-top: 0;
}

.profile-pic {
    width: 100%;
    border: 2px solid var(--dodger-blue);
    border-radius: 4px;
}

.btn-more {
    color: var(--dodger-red);
    font-weight: bold;
    text-decoration: none;
}
.profile-card {
    text-align: left;
}

.profile-info p {
    margin: 5px 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

.profile-info strong {
    color: var(--dodger-blue);
}

/* Efeito de borda na foto de perfil - Estilo figurinha */
.profile-pic {
    width: 100%;
    border: 4px double var(--dodger-blue);
    padding: 2px;
    background: white;
    margin-bottom: 10px;
    box-shadow: 3px 3px 0px var(--dodger-silver);
}
