@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.backgroundegrade {
    background: rgb(0, 92, 164);
    background: -moz-linear-gradient(34deg, rgba(0, 92, 164, 1) 7%, rgba(105, 76, 148, 1) 86%);
    background: -webkit-linear-gradient(34deg, rgba(0, 92, 164, 1) 7%, rgba(105, 76, 148, 1) 86%);
    background: linear-gradient(34deg, rgba(0, 92, 164, 1) 7%, rgba(105, 76, 148, 1) 86%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#005ca4", endColorstr="#694c94", GradientType=1);
}

.backgroundegrade1 {
    background: rgb(105, 76, 148);
    background: -moz-linear-gradient(124deg, rgba(105, 76, 148, 1) 7%, rgba(0, 92, 164, 1) 86%);
    background: -webkit-linear-gradient(124deg, rgba(105, 76, 148, 1) 7%, rgba(0, 92, 164, 1) 86%);
    background: linear-gradient(124deg, rgba(105, 76, 148, 1) 7%, rgba(0, 92, 164, 1) 86%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#694c94", endColorstr="#005ca4", GradientType=1);
}

.backgroundegrade2 {
    background: rgb(197, 98, 102);
    background: linear-gradient(60deg, rgba(197, 98, 102, 1) 0%, rgba(105, 78, 148, 1) 55%);
}

.backgroundegrade3 {
    background: rgb(0, 92, 164);
    background: linear-gradient(187deg, rgba(0, 92, 164, 1) 54%, rgba(127, 175, 211, 1) 100%);
}

.custom-justify {
    text-align: justify;
}

.redesociais {
    transition: transform ease-in-out 200ms !important;
    color: #005ca4 !important;

}

.redesociais:hover {
    transform: scale(1.2);
}

.facebook {
    transition: color ease-in-out 200ms;
}

.facebook:hover {
    color: #81a8fd !important;
}

.instagram {
    transition: color ease-in-out 200ms;
}

.instagram:hover {
    color: rgb(240, 48, 112) !important;
}

.linkedin {
    transition: color ease-in-out 200ms;
}

.linkedin:hover {
    color: #44caff !important;
}

.youtube {
    transition: color ease-in-out 200ms;
}

.youtube:hover {
    color: #ff2e2e !important;
}

.linha {
    background-color: black;
    height: 3px;
}

.link-underline-opacity-75-hover:hover {
    text-decoration-color: rgb(0, 0, 0) !important;
    border-bottom: solid #000 1px;

}

.colorfont {
    color: #005ca4 !important;
    fill: #005ca4;
    text-decoration: none;
}

.paddingletras {
    padding: 2px !important;
}

.localizacao {
    box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.5);
    padding: 30px;
}

.mapa-responsive {
    width: 100% ;
    margin-top: 10px;
    height: 500px !important;
    /* Altura padrão para telas maiores */
}

/* Cards projetos */

.card_pro {
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
  }

  .card_pro:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .card_pro-img-container {
    position: relative;
    overflow: hidden;
  }

  .card_pro-img-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .card_pro:hover .card_pro-img-container img {
    transform: scale(1.1);
  }

  .card_pro-body {
    background-color: #fff;
    padding: 15px;
    text-align: center;
  }

  /* ------ */

#backToTop {
    bottom: 90px;
    right: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
     background: transparent;
  color: #2563eb; /* azul elegante */
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
}


/* WHATSAPP */

.whatsapp-float{
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 999px;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    z-index: 9999;
    text-decoration: none;
    transition: transform .15s ease, filter .15s ease;
  }
  .whatsapp-float:hover{ transform: translateY(-2px); filter: brightness(1.05); }
  .whatsapp-float svg{
    width: 30px;
    height: 30px;
    fill: #fff;
  }

  .whatsapp-tooltip{
    position: absolute;
    right: 72px; /* aparece à esquerda do botão */
    bottom: 50%;
    transform: translateY(50%);
    background: #111827;
    color: #fff;
    padding: 8px 10px;
    border-radius: 10px;
    font: 600 13px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
  }

  .whatsapp-tooltip::after{
    content:"";
    position:absolute;
    right:-6px;
    top:50%;
    transform: translateY(-50%);
    border-left: 6px solid #111827;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }

  .whatsapp-float:hover .whatsapp-tooltip{
    opacity: 1;
    transform: translateY(50%) translateX(-2px);
  }



