/* ===== Tipografia & Layout ===== */
body {
    font-family: 'Rubik', sans-serif;
    color: #333;
    line-height: 1.7;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

main {
    padding-top: 100px; /* espaço para o header sticky */
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.7;
}

/* ===== Header / Menu ===== */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #ffffff; /* sólido */
    padding: 15px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    z-index: 9999;
}

.container-header {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.container-header h1 {
    font-size: 1.8rem;
    margin: 0;
    color: #222;
}

.container-header hr {
    border: 0;
    border-top: 2px solid #ddd;
    margin: 5px 0 0 0;
}

.links a {
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
    color: #333;
    transition: color 0.3s;
}

.links a:hover, .links a.active {
    color: #0056b3;
}

/* ===== Seções ===== */
section {
    margin-bottom: 60px;
}

.bio p {
    text-align: justify;
}

/* ===== Cards ===== */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

/* .card {
    flex: 1 1 calc(33% - 20px);
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
} */

.card {
    flex: 1 1 calc(20% - 20px);
    padding: 20px;
    border-radius: 12px;
    color: #222;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

/* Cores individuais para seções / cards */
.highlight-card:nth-child(1) { background-color: #ffe0b2; } /* laranja suave */
.highlight-card:nth-child(2) { background-color: #c8e6c9; } /* verde suave */
.highlight-card:nth-child(3) { background-color: #bbdefb; } /* azul suave */
.highlight-card:nth-child(4) { background-color: #f8bbd0; } /* rosa suave */
.highlight-card:nth-child(5) { background-color: #d1c4e9; } /* lilás suave */
.highlight-card:nth-child(6) { background-color: #fff9c4; } /* amarelo suave */

/* ===== Fontes nos Cards ===== */
.card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.card p {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #333;
}


/* Cards coloridos suaves */
.highlight-card {
    background-color: #eaf3ff; /* leve azul */
    border-left: 4px solid #0056b3;
}

/* ===== Contact Cards ===== */
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.contact-card {
    flex: 1 1 calc(40% - 15px);
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


.contact-card a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-mail { background-color: #f06292; }      /* rosa */
.contact-google { background-color: #fbc02d; }    /* amarelo */
.contact-linkedin { background-color: #0288d1; }  /* azul */
.contact-twitter { background-color: #00acc1; }   /* ciano */


/* ===== Links internos ===== */
.link-primary {
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.link-primary:hover {
    color: #003f7d;
    text-decoration: underline;
}

/* ===== Destaques ===== */
.highlight {
    color: #0056b3;
    font-weight: 700;
}

.cards-container .card a {
    text-decoration: none; /* remove a linha */
    color: inherit;         /* mantém a cor do texto do card */
    font-weight: 600;       /* opcional, se quiser deixar em negrito */
}

.cards-container .card a:hover {
    text-decoration: none;  /* garante que não aparece underline ao passar o mouse */
    color: #0056b3;         /* opcional: muda a cor ao hover */
}




