 :root {
      /*--cor-principal: #4f46e5;
      --cor-secundaria: #06b6d4;
      --texto: #FF0000;
      
      */
      --muted: #000000;
      --fundo: #dcdcdc;
      --radius: 14px;
    }

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

    body {
      font-family: "Inter", sans-serif;
      background: var(--fundo);
      color: var(--texto) ;
      overflow-x: hidden;
     /*background-image: url('imagens/Bannermapa.png');*/

       /* Define a imagem de fundo */

    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 10%;
      position: sticky;
      top: 0;
      /*background-image: url('imagens/Bannermapa.png');*/
      background: rgb(79, 70, 229);
      backdrop-filter: blur(8px);
      z-index: 10;
    }

    header h1 {
      font-size: 22px;
      font-weight: 700;
      color: white;

    }

    nav a {
      color: #fff;
      margin-left: 20px;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }

    nav a:hover { color: var( --muted) }



    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background-image: url("imagens/bannermapa.png");
      align-items: center;
      padding: 135px 10%;
      gap: 40px;
      

      
    }

    .hero img {
      width: 100%;
      border-radius: var(--radius);
      box-shadow: 0 5px 30px rgba(0,0,0,0.4);
      transform: scale(0.95);
      transition: transform 0.6s ease;
      
    }

    .hero img:hover {
      transform: scale(1);
      
    }

    .hero h2 {
      font-size: 40px;
      margin-bottom: 16px;
      line-height: 1.2;
      color: white;

      }

    .hero p {
      color: white;
      margin-bottom: 24px;
      max-width: 480px;
      
    }
    .principal p, h2{
      align-items: var(center);
    }

    .btn {
      background: linear-gradient(135deg, var(--cor-principal), var(--cor-secundaria));
      padding: 12px 24px;
      color: #fff;
      border-radius: var(--radius);
      text-decoration: none;
      font-weight: 600;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .btn:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px var(--cor-secundaria);
    }

    .section {
      text-align: center;
      padding: 80px 10%;
    }

    .section h3 {
      font-size: 30px;
      margin-bottom: 20px;
      }

    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }

    .card {
      background: rgba(246,245,248);
      padding: 24px;
      border-radius: var(--radius);
      transition: transform 0.4s;
    }

    .card:hover {
      transform: translateY(-8px);
      background: rgba(255,255,255,0.08);
    }

    .card img {
      width: 100%;
      border-radius: var(--radius);
      margin-bottom: 16px;
    }

    .card h4 { margin-bottom: 10px;
              color:blue; }

    .card p { color: var(--muted); font-size: 15px;}
          
    .estrategia img {
      width: 60px;
      height: 60px;
      margin-top: -50px;
      margin-bottom: 30px;

    }

    .gestao img {
      width: 60px;
      height: 60px;
      margin-top: -50px;
      margin-bottom: 30px;
      
    }
    .trafego img {
      width: 60px;
      height: 60px;
      margin-top: -50px;
      margin-bottom: 30px;
      
    }
    .artes img{
      width: 60px;
      height: 60px;
      margin-top: -50px;
      margin-bottom: 30px;
    }

    .audivisual img{
      width: 60px;
      height: 60px;
      margin-top: -50px;
      margin-bottom: 30px;
    }
    .sites img {
      width: 60px;
      height: 60px;
      margin-top: -50px;
      margin-bottom: 30px;
    }

    footer {
      text-align: center;
      padding: 40px 10%;
      color: var(--muted);
      font-size: 14px;
      background: rgba(255,255,255,0.05);
    }

    /* Botão flutuante WhatsApp */
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 25px;
      right: 25px;
      background-color: #25d366;
      color: #fff;
      border-radius: 50%;
      text-align: center;
      font-size: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      z-index: 100;
      cursor: pointer;
      transform: scale(0);
      transition: transform 0.4s ease;
    }

    .whatsapp-float.show {
      transform: scale(1);
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      background-color: #20c95c;
    }

    @media(max-width:900px) {
      .hero { grid-template-columns: 1fr; text-align: center; }
      .hero img { order: -1; }
    }

  
    #sobre{
      margin: 0 auto;
      background: rgba(246,245,248);
      padding: 50px;
      width: 800px;
      border-radius: var(--radius);
      transition: transform 0.4s;
    }
    #sobre:hover{
      transform: translateY(-8px);
      background: rgba(37, 32, 32, 0.041);
    }
    #sobre h3{
       margin-bottom: 10px;
       color:blue;
       text-align: center;
            }

    }
    #sobre p{
      color: rgba(0, 0, 0,);
      font-size: 15px;
      text-align: center;
      padding: 15px auto;

    }

    .botao{
      padding: 15px;
      text-align: center;  
      
    }
    button {
      border-radius: var(--radius);
       background: rgb(79, 70, 300);
        padding: 15px;
        color: #fff;
    }


  .social-icons {

    display: flex;
    gap: 15px;
}

.social-icons i {
    font-size: 32px;
    transition: 0.3s;
}

.social-icons i:hover {
    transform: scale(1.15);
}
.social-icons {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;
    gap: 15px;
}



.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links img {
    width: 32px;
  
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.15);
}
.social-links{
  display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;
}