
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: linear-gradient(145deg, #f5ede4 0%, #e5d5c4 100%);
    color: #2c1a12;
    line-height: 1.6;
}

/* CABEÇALHO */
header {
    background: linear-gradient(145deg, #4a2a5e, #2d1a3a);
    color: #f0e6f5;
    text-align: center;
    padding: 25px 20px;
    border-bottom: 4px solid #e8b87a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

header h1 {
    font-size: 2.8rem;
    font-family: 'Georgia', serif;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    margin-bottom: 8px;
}

header p {
    font-size: 1rem;
    color: #d4c4e8;
    font-style: italic;
}

/* NAVEGAÇÃO */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

nav a {
    color: #f0e6f5;
    text-decoration: none;
    padding: 10px 24px;
    background-color: #6b3a7a;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

nav a:hover {
    background-color: #e8b87a;
    color: #2d1a3a;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* CONTEÚDO PRINCIPAL */
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* SEÇÕES */
section {
    background-color: #ffffff;
    margin-bottom: 30px;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8d5c4;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* PRIMEIRA SEÇÃO (QUEM FOI) - DESTAQUE */
section:first-child {
    background: linear-gradient(135deg, #ffffff, #faf0e8);
    border-bottom: 5px solid #e8b87a;
}

/* SEGUNDA SEÇÃO (CONQUISTAS) - FUNDO DIFERENTE */
section:nth-child(2) {
    background: linear-gradient(135deg, #faf5f0, #ffffff);
    border-left: 8px solid #4a2a5e;
}

/* TERCEIRA SEÇÃO (FRASE) */
section:last-child {
    background: linear-gradient(135deg, #f0e6f5, #ffffff);
    text-align: center;
    border-right: 8px solid #e8b87a;
}

/* TÍTULOS */
h2 {
    color: #4a2a5e;
    font-size: 1.9rem;
    font-family: 'Georgia', serif;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #e8b87a;
    display: inline-block;
}

/* PARÁGRAFOS */
p {
    margin-bottom: 18px;
    color: #3a2a2a;
    font-size: 1.05rem;
}

p strong {
    color: #6b3a7a;
    font-weight: bold;
}

/* LISTA DE CONQUISTAS */
ul {
    margin: 15px 0 10px 30px;
    list-style-type: none;
}

ul li {
    margin: 12px 0;
    padding: 8px 12px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="%23e8b87a"><path d="M12 2L15 8.5L22 9.5L17 14L18.5 21L12 17.5L5.5 21L7 14L2 9.5L9 8.5L12 2Z"/></svg>') left center no-repeat;
    background-size: 18px;
    padding-left: 28px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

ul li:hover {
    background-color: #faf0e8;
    transform: translateX(5px);
}

/* IMAGEM */
img {
    display: block;
    margin: 20px auto;
    border-radius: 50%;
    border: 5px solid #e8b87a;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

img:hover {
    transform: scale(1.02);
    border-color: #4a2a5e;
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* LINK "CONHEÇA SUA HISTÓRIA" */
a[href="historia.html"] {
    display: inline-block;
    background: linear-gradient(145deg, #e8b87a, #d49a4a);
    color: #2d1a3a;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 35px;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

a[href="historia.html"]:hover {
    background: linear-gradient(145deg, #4a2a5e, #6b3a7a);
    color: #e8b87a;
    transform: translateX(8px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

/* FRASE FAMOSA */
section:last-child p {
    font-size: 1.3rem;
    font-style: italic;
    font-family: 'Georgia', serif;
    color: #4a2a5e;
    background: #f5ede4;
    padding: 20px;
    border-radius: 50px;
    margin: 10px 0;
}

/* RODAPÉ */
footer {
    background: linear-gradient(145deg, #4a2a5e, #2d1a3a);
    color: #d4c4e8;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
    font-size: 0.85rem;
    border-top: 2px solid #e8b87a;
}

footer p {
    margin: 0;
    padding: 0;
}

/* RESPONSIVIDADE PARA CELULAR */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 18px;
    }
    
    ul li {
        font-size: 0.9rem;
        padding: 6px 8px 6px 28px;
    }
    
    section:last-child p {
        font-size: 1rem;
        padding: 15px;
    }
    
    nav a {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
    
    a[href="historia.html"] {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

/* EFEITO DE CARREGAMENTO SUAVE */
section, img, nav a {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}