body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 7px;
}
h1{
    text-align: center;
    color: rgb(9, 90, 240);
    margin: 0px;
    padding: 15px 0px;
}

.h1{
   background-color: rgb(173,218,250);
   height: 70px;
}

header{
    height: 70px;
    position: sticky;
    top: 0;
}
    


body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 7px;
    background-color: #f4f4f4;
}


header {
    background-color: rgb(173, 218, 250);
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


h1 {
    text-align: center;
    color: rgb(9, 90, 240);
    margin: 0;
    padding: 0;
    font-size: 28px;
}


nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: #e0ecf7;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

nav li {
    font-weight: bold;
    cursor: pointer;
    color: #0945a6;
    transition: color 0.3s;
}

nav li:hover {
    color: #03275d;
}


section {
    
    background-color: white;
    padding: 20px;
    max-width: 570px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}


h2 {
    color: #0945a6;
    margin-bottom: 10px;
}


img {
    display: block;
    margin: 10px 0;
    max-width: 100%;
    border-radius: 5px;
}


p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}


@media (max-width: 600px) {
    iframe {
        width: 100%;
        height: auto;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }
}
 htnl {
 
      scroll-behavior: smooth;
 }
 
 body{

    background: linear-gradient(135deg, #0f49db75, #367cc2f8 80%);
 }

 nav a {
    color: #145aff;
    text-decoration: none;
    transition: color 0.3s;
 }

 nav a:hover {
    color: #ff892e; /* cor ao passar o mouse*/
 }

 .redes-sociais-fixas{
       position: fixed;
       bottom: 20px;
       left: 50px;
       transform: translateX(-50%);
       z-index: 1000;
       display: flex;
       gap: 15px;
       background: rgba(255, 255, 255, 0.2);
       padding: 5px 10px;
       border-radius: 12px;

}

  section:hover{
      transform: translateY(-10px);
    
  }
