@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Source+Sans+3:wght@400;600&display=swap');

:root {
    --roxo: #4c4e80;
    --rosa: #e1345e;
    --bege: #eee6db;
    --amarelo: #fbd45c;
    --amarelo-pastel: #fadaa3;
    --preto: #262324;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', sans-serif; background-color: var(--bege); color: var(--preto); display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }
.font-heading { font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; }

/* NAVEGAÇÃO - Com borda para separar do Hero */
nav {
    background-color: var(--roxo); 
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*border-bottom: 3px solid;*/
}

.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 40px; border-radius: 50%; /*border: 2px solid var(--amarelo); */}

/* MENU HAMBURGUER */
.menu-icon { cursor: pointer; display: flex; flex-direction: column; gap: 5px; }
.menu-icon span { display: block; width: 25px; height: 3px; background: white; border-radius: 2px; }

/* MENU LATERAL (OVERLAY) */
.menu-overlay {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100%;
    background: var(--roxo);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: 0.5s ease-in-out;
    z-index: 2000;
}
.menu-overlay.active { right: 0; }

/* O BOTÃO X DENTRO DO MENU */
.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 5%;
    font-size: 3rem;
    color: var(--amarelo);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.menu-overlay a { color: white; font-family: 'Montserrat', sans-serif; font-size: 1.5rem; text-decoration: none; text-transform: uppercase; }
.menu-overlay a:hover { color: var(--amarelo); }
.menu-overlay .participar-link { color: var(--amarelo); border: 2px solid var(--amarelo); padding: 10px 25px; border-radius: 50px; }

/* HERO */
.hero { 
    background: linear-gradient(135deg, var(--roxo) 0%, var(--preto) 100%); 
    color: white; 
    min-height: calc(100vh - 80px); 
    display: flex; 
    align-items: center; 
    justify-content: center;
    position: relative; 
    padding: 2rem 8%; 
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 10;
    /* ADICIONE ISSO: Garante que o conteúdo nunca encoste no botão de scroll */
    padding-bottom: 80px; 
}

@media (min-width: 1024px) {
    .hero-wrapper {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding-bottom: 0; /* No PC não precisa desse espaço extra */
    }
}

/* IMAGEM DO AVATAR - Ajuste de escala */
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 300px; /* Reduzido para o mobile */
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .hero-image-container {
        max-width: 550px; /* Tamanho grande no PC */
        margin-top: 0;
    }
}

.avatar-amelia {
    width: 100%;
    height: auto;
    /* NO CELULAR: A imagem não pode ser gigante ou atropela o botão */
    max-height: 25vh; 
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

@media (min-width: 1024px) {
    .avatar-amelia {
        max-height: 60vh; /* No PC ela pode ser grande */
    }
}

/* INDICADOR DE SCROLL */
.scroll-indicator {
    position: absolute;
    bottom: 20px; /* Um pouco mais para baixo para dar respiro */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--amarelo);
    text-decoration: none;
    z-index: 50; /* Aumentado para garantir que fique sempre no topo */
    animation: bounce-blink 2s infinite ease-in-out;
}
@keyframes bounce-blink {
    0%, 100% { transform: translateY(0) translateX(-50%); opacity: 1; }
    50% { transform: translateY(-12px) translateX(-50%); opacity: 0.3; }
}

.scroll-indicator span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 700;
}


/* SEÇÕES E CARDS */
section { padding: 5rem 10%; }

.card {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--roxo);
    box-shadow: 0 10px 0px var(--roxo);
    transition: 0.3s;
}

.card:hover { transform: translateY(-5px); box-shadow: 0 15px 0px var(--rosa); }

/* DADOS */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.data-card {
    background: var(--roxo);
    padding: 2.5rem 1.5rem;
    border-radius: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 6px solid var(--rosa);
}

.data-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(225, 52, 94, 0.2);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--amarelo-pastel);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 2.8rem;
    color: var(--amarelo);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: white;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.source-clean {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--amarelo-pastel);
    opacity: 0.7;
    margin-top: auto; 
}

/* BOTÕES */
.btn { 
    padding: 1rem 2rem; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: bold; 
    display: inline-block; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    letter-spacing: 1px;
    
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.3s ease, 
                background-color 0.3s ease;
    
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: scale(1.1); 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); 
}

.btn:active {
    transform: scale(0.95);
}

.btn-rosa { 
    background-color: var(--rosa); 
    color: white; 
}

.btn-amarelo { 
    background-color: var(--amarelo); 
    color: var(--preto); 
}

/* BOTÕES SOCIAIS */
.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-btn.insta {
    background-color: var(--roxo);
}

.social-btn.linkedin {
    background-color: var(--roxo);
}

.social-btn:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* INSPIRAÇÕES*/
.heroine-card {
    background: #ffffff;
    border-radius: 2.5rem;
    overflow: hidden;
    border: 2px solid var(--roxo);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--roxo);
    box-shadow: 0 10px 0px var(--roxo);
    }

.heroine-card:hover {
    transform: translateY(-10px);
    border-color: var(--rosa);
    /*box-shadow: 0 15px 35px rgba(76, 78, 128, 0.2);*/
    box-shadow: 0 15px 0px var(--rosa);
}

.heroine-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.heroine-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s ease;
}

.heroine-card:hover .heroine-img-container img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.date-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--amarelo);
    color: var(--preto);
    padding: 5px 15px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: bold;
    z-index: 10;
}

.heroine-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tag-container {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 1.5rem;
}

.tech-tag {
    font-size: 9px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
}

.tag-roxo { background: var(--bege); color: var(--roxo); }
.tag-rosa { background: rgba(225, 52, 94, 0.1); color: var(--rosa); }

/* FOOTER COMPACTO */
footer { background: var(--preto); color: white; padding: 1.5rem; text-align: center; font-size: 0.7rem; border-top: 4px solid var(--rosa); }