      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        header {
            background: linear-gradient(135deg, #1e5799, #2989d8);
            color: white;
            padding: 2rem 0;
            text-align: center;
           
        }
        
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .slogan {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        .hero {
          
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
              background: rgba(0,0,0,0.5);
        }
        
      
        .hero-content {
            max-width: 800px;
            padding: 2rem;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
      
     
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2989d8;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            color: #666;
        }
        
        .cards {
            display: flex;
            flex-wrap: wrap;
            justify-content:space-between;
            gap: 2rem;
        }
        
        .card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            flex: 1 1 300px;
            transition: transform 0.3s ease;
     
        }
        
        .card:hover {
            transform: translateY(-10px);
        }
        
        .card-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .card-content {
            padding: 1.5rem;
            text-align: center;
        }
        
        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            color: #2989d8;
        }
        
        .card p {
            margin-bottom: 1.5rem;
        }
        
        .benefits {
            background-color: #e9f7fe;
            padding: 5rem 2rem;
        }
        
        .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;

        }
        
        .benefit-item {
            text-align: center;
            padding: 1.5rem;
        }
        
        .benefit-icon {
            font-size: 3rem;
            color: #2989d8;
            margin-bottom: 1rem;
        }
        
        .benefit-item h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #2989d8;
        }
        
     
        
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-section {
            flex: 1 1 300px;
            margin-bottom: 1.5rem;
            padding: 0 1rem;
        }
        
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2989d8;
        }
        
        .footer-section p, .footer-section a {
            color: #ddd;
            margin-bottom: 0.5rem;
            display: block;
            text-decoration: none;
        }
        
        .footer-section a:hover {
            color: #2989d8;
        }
     
        .social-icons {
           
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-icons a {
            color: white;
            background-color: #555;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: #2989d8;
        }

        
        @media (max-width: 768px) {
            header{
                
                width: 100%;
            }
            .menu{
                display: none;
            }
     

            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 0.5rem 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
          
        }
       /*Formatação e configuração do menu */
      nav {
            background-color: #2989d8;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            justify-content: center;
            font-family: Arial, Helvetica, sans-serif;
        }
        
        .menu ul {
            display: flex;
            justify-content: center;
            list-style: none;
            align-items: center;
            padding: 0;
        }
        
        .menu ul li {
            position: relative;
        }
        
        .menu ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: opacity 0.3s ease;
            display: block;
            padding: 15px 20px;
        }
        
        .menu ul li a:hover {
            opacity: 0.8;
        }
        /*sub-menu*/
        .menu ul li ul{
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #2989d8;
            min-width: 180px;
            flex-direction: column;
            z-index: 1000;
        }
        .menu ul li:hover ul{
            display: block;
        }
        .menu ul li ul li a{
            padding: 10px 15px;
            color: white;
            white-space: nowrap;
        }
        .menu ul li ul li a:hover{
             opacity: 0.8;
        }



        

/* Oculta o checkbox */
#toggle-menu {
  display: none;
}

/* Botão flutuante */
.botao-menu {
  text-align: center;
  position: fixed;
  bottom: 120px;
  right: 30px;
  background-color: #333;
  color: white;
  font-size: 20px;
  width: 60px;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9001;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  user-select: none;
}

/* Menu flutuante (inicialmente escondido) */
.menu-flutuante {
  position: fixed;
  bottom: 200px;
  right: 30px;
  background-color: #333;
  border-radius: 10px;
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
   z-index: 9001;
}
  .menu-flutuante ul {
   list-style: none;
          
  }
/* Itens do menu */
.menu-flutuante ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

           .menu-flutuante ul li:hover ul{
            display: block;
        }
.menu-flutuante a:hover {
  background-color: #555;
  padding-left: 10px;
  border-radius: 5px;
}

/* Mostra o menu quando o checkbox está marcado */
#toggle-menu:checked ~ .menu-flutuante {
  display: flex;
}
