/* ===== CONFIGURAÇÕES GERAIS ===== */
:root {
    --azul-pastel: #8ecae6;
    --azul-escuro: #4a6fa5;
    --rosa-pastel: #f4acb7;
    --branco: #ffffff;
    --cinza-claro: #f8f9fa;
    --texto: #333333;
}

body {
    padding-top: 70px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--texto);
    background-color: var(--branco);
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: var(--azul-escuro) !important;
}

.navbar-brand,
.navbar-nav .nav-link {
    color: var(--branco) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--rosa-pastel) !important;
}

/* ===== HERO ===== */
.hero {
    margin-top:-20px;
    height: 100vh;
    min-height: 65vh;
    padding: 50px 0;
    background: linear-gradient(
        135deg,
        #ca60d4,
        #8bbde4,
        #db96d5c9
    );
    color: var(--branco);
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
}

.hero .lead {
    font-size: 1.1rem;
}

.hero p {
    margin-bottom: 0.5rem;
}

.hero .btn-primary {
    background-color: var(--branco);
    color: var(--azul-escuro);
    border: none;
}

.hero .btn-primary:hover {
    background-color: var(--rosa-pastel);
    color: var(--branco);
}

.hero-photo {
    display: flex;
    justify-content: center;
}

.profile-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ===== SEÇÕES ===== */
section {
    padding: 60px 0;
}

section h2 {
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--azul-escuro);
}

.sobre-box {
    max-width: 800px;
}

#sobre p {
    line-height: 1.7;
}

/* ===== TIMELINE ===== */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-img img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.timeline-content h5 {
    color: #4f8cff;
    font-weight: 600;
}

/* ===== CARDS ===== */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-title {
    color: var(--azul-escuro);
}

/* ===== HABILIDADES ===== */
.habilidade-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.habilidade-card:hover {
    transform: translateY(-6px);
}

.habilidade-icon {
    font-size: 2.5rem;
    color: #4f8cff;
}

/* ===== SEÇÕES CLARAS ===== */
.bg-light {
    background-color: var(--cinza-claro) !important;
}

/* ===== CONTATO ===== */
.contato-link {
    text-decoration: none;
    color: inherit;
}

.contato-card {
    border: none;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.contato-icon {
    font-size: 2.8rem;
    color: #4f8cff;
}

.whatsapp { color: #25d366; }
.linkedin { color: #0a66c2; }
.instagram { color: #d63384; }

/* ===== FORMAÇÃO ===== */
.formacao-card {
    border-radius: 20px;
    border-left: 6px solid var(--azul-pastel);
    transition: transform 0.3s ease;
}

.formacao-card:hover {
    transform: translateY(-6px);
}

/* ===== EXPERIÊNCIA ===== */
.experiencia-card {
    border-radius: 16px;
    background-color: var(--branco);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--azul-escuro);
    color: var(--branco);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .hero {
        min-height: 45vh;
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .profile-img {
        width: 110px;
        height: 110px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .timeline-img img {
        width: 180px;
        height: 180px;
    }
}
