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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #fff5ed; 
    color: #6d4c41; 
    line-height: 1.7;
}

header {
    background: linear-gradient(135deg, #ffedda 0%, #ffd1b3 100%);
    padding: 3rem 1rem;
    text-align: center;
    border-bottom: 6px solid #ffccbc;
    box-shadow: 0 4px 15px rgba(255, 171, 145, 0.2);
}

header h1 {
    color: #d35400; 
    font-size: 2.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

header p {
    font-style: italic;
    color: #e67e22;
    font-weight: 300;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

nav a {
    text-decoration: none;
    color: #e67e22;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 18px;
    border: 2px solid transparent;
    border-radius: 50px; 
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.4);
}

nav a:hover {
    background-color: #ffffff;
    color: #d35400;
    border-color: #ffab91;
    transform: translateY(-2px); 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Conteúdo Principal */
main {
    max-width: 850px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 25px; 
    box-shadow: 0 10px 30px rgba(211, 84, 0, 0.05);
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #e67e22;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}


h2::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ffab91;
    border-radius: 50%;
    margin-right: 15px;
}


.img-principal {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 25px auto;
    border: 8px solid #fff3e0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


ul {
    padding-left: 10px;
    list-style: none;
}

ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}


ul li::before {
    content: "✦"; 
    position: absolute;
    left: 0;
    color: #ffab91;
}


footer {
    text-align: center;
    padding: 30px;
    background-color: #ffedda;
    border-top: 1px solid #ffccbc;
    margin-top: 50px;
    font-size: 0.9rem;
    color: #a1887f;
}

footer a {
    color: #d35400;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}