body, html {
    margin: 0;
    padding: 0;
    font-family: 'Comic Sans MS', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
}

.header {
    
    color: white;
    font-size: 30px;
    padding: 18px;
    text-align: center;
   
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
}

.header a:hover {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.container {
    text-align: center;
    color: #777474;
    background-image: url('fondo.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    padding: 3px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

.container h1 {
    font-size: 80px; 
    margin: 0;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3); 
    padding: 10px; 
    transition: color 0.3s, text-shadow 0.3s;
}

.container h1:hover {
    color: #ffffff;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); 
}

.container p {
    font-size: 25px;
    margin: 0;
    color: #fff;
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    transition: color 0.3s, text-shadow 0.3s;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.team-member {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.team-member img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.team-member h2 {
    font-size: 24px;
    margin: 10px 0 5px;
    color: #103258;
}

.team-member h3 {
    font-size: 18px;
    font-weight: lighter;
    color: #555;
}

.team-member p {
    font-size: 18px;
    color: #555;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 800px;
    text-align: center;
    transition: transform 0.3s;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.header .logo h2 {
    font-size: 46px;
    color: #007BFF;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px #fff;
}

.header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    background-color: #007BFF;
    padding: 10px 20px;
    border-radius: 20px;
    transition: background-color 0.3s;
}

.header nav ul li a:hover {
    background-color: #FF8800;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    margin-right: 10px;
}



.redirigir{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    background-color: #007BFF;
    padding: 10px 20px;
    border-radius: 20px;
    transition: background-color 0.3s;
}

.redirigir:hover{
    background-color: #FF8800;
}

