
body {
    font-family: Arial, Helvetica, sans-serif;
    
    
    margin: 10px;
    background: #f5f7fb;
    color: #333;
}


    h1 {
    font-family: Arial, sans-serif; 
    font-size: 36px;                
    color:white;                    
    text-align: center;             
    margin-top: 10px;              
    margin-bottom: 10px;            
    letter-spacing: 2px;            
    text-transform: uppercase;      
}
header {
    background: #0d5c75;
    color: white;
    padding: 25px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin: 10px;   
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

nav a:hover {
    color: #ffd166;
}

main {
    max-width: 1000px;
    margin: auto;
    padding: 30px;
}

section {
    background:white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

h2 {
    color: #0d5c75;
    margin: bottom 20px;
    text-align: center;
}

img {
    max-width: 360px;
    display: block;
    margin: 20px auto;
    border: radius 200px;
   width: 500px;
   width: 50%;
}

footer {
    background: #0d5c75;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

.intro {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    background: #eef6fa;
    padding: 15px;
    border-left: 5px solid #0d5c75;
    border-radius: 6px;
}
.fatos {
    padding-left:0;
    counter-reset: item;
}

.fatos li {
    list-style: none;
    background: #ffffff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 60px;
    line-height: 1.6;
}

.fatos li::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 20px;
    top: 20px;
    background: #0d5c75;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.fatos li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}
