@import url('https://fonts.googleapis.com/css2?family=Anek+Latin:wght@100..800&display=swap');
 
 

* {
  font-family: 'Anek Latin', sans-serif;
}

html, body {
  min-height: 100vh;
}

/*variáveis */
:root {
  --resco-azul: #349fbf;
  --resco-hover: #246f83;
  --resco-azul-light: #4dbfea;
 

}

.link-resco-azul {
  color: var(--resco-azul);
  transition: 0.2s all ease;
}

.link-resco-azul:hover {
  color: var(--resco-hover);
}
/* fim das variáveis */

.pdto-60
{
  padding-top: 60px;
}

.pdbo-60
{
  padding-bottom: 60px;
}

.pd-clip
{
 
 
  padding: 45px 0 45px 0 !important;
   clip-path: polygon(
    0 6%,    /* topo esquerdo */
    100% 0,  /* topo direito */
    100% 94%,/* baixo direito */
    0 100%   /* baixo esquerdo */
  );
}


#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #303b41;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-icon {
  width: 45px;
  aspect-ratio: 1;
  --c: no-repeat linear-gradient(#2faccc calc(50% - 10px), #066896 0 calc(50% + 10px), #2fc8ff 0);
  background: var(--c) 0% 100%, var(--c) 50% 100%, var(--c) 100% 100%;
  background-size: 20% calc(200% + 20px);
  animation: l4 1s infinite linear;
}

@keyframes l4 {
  33%  {background-position: 0% 50%, 50% 100%, 100% 100%}
  50%  {background-position: 0% 0%, 50% 50%, 100% 100%}
  66%  {background-position: 0% 0%, 50% 0%, 100% 50%}
  100% {background-position: 0% 0%, 50% 0%, 100% 0%}
}

/* CSS */
.navbar-resco {
  width: 100vw;
  z-index: 99;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 5px 15px !important;
}

.gruporesco-bar {
  background: #0c3169;
}

.nav-inside {
  display: flex;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 15px;
  font-size: 16px;
  flex-direction: row;
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
}

.gruporesco-bar .nav-inside {
  color: white;
  height: 30px;
  padding-right: 0;
}

.gruporesco-bar .nav-inside b {
  font-weight: 700;
  padding-right: 12px;
  font-size: 15px;
  border-right: 1px solid rgba(128, 128, 128, 0.418);
  margin-right: 6px;
}

.gruporesco-bar .nav-inside a {
  color: rgb(202, 202, 202);
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 8px;
}

.nav-inside .reverse {
  margin-left: auto !important;
  display: flex;
  align-items: center;
}

.nav-inside .reverse a {
  background-color: #043681;
  display: flex;
  align-items: center;
  padding: 8px;
  margin: 0;
  border-left: 1px solid #0c3169;
  border-right: 1px solid #0c3169;
  color: white;
  cursor: pointer !important;
}

.gruporesco-bar .nav-inside a:hover {
  color: aqua;
}

.suporte {
  color: white !important;
  font-weight: 700;
  transition: all 0.3s ease;
}

.f-navbar {
  height: 80px;
  width: 100vw;
  margin-right: 15px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: fixed;
  overflow-y: hidden;
  transition: all 0.4s ease;
  max-height: 1000px;
}

.f-navbar.fixed {
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background-color: var(--resco-cinza);
  color: white;
  border-bottom:  1px solid rgba(48, 48, 48, 0.37) !important;
  background-color: rgba(20, 20, 20, 0.911);
}

.f-navbar.fixed a {
 
  color: white !important;
}


/*parte de dentro */
.f-navbar .nav-inside {
  display: flex;
  align-items: center;
  height: 100%;
}


/* logo e btn mobile */
.resco-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.resco-logo img {
  height: 60px;
}

.resco-logo h3 {
  margin-top: 7px;
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid rgb(168, 168, 168);
  font-weight: 600;
}

.resco-logo a
{
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-right: 6px;
  color: inherit;
}
.nav-links {
  margin: 0 15px;
}

.nav-links-link {
  display: flex;
  justify-content: center;
  width: 140px;
  padding: 12px;
  border-left: 1px solid rgb(168, 168, 168);
  text-decoration: none;
  color: #3d3d3d;
  font-size: 19px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  align-items: center;
  transition: 0.3s;
  position: relative;
}

.nav-links-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  transition: width 0.3s;
}

.nav-links-link:hover::after,
.nav-links-link.active::after {
  width: 100%;
}

.nav-social {
  display: flex;
  align-items: center;
}

.btn-zap {
  display: flex;
  padding: 8px 25px;
  border-radius: 20px;
  background-color: green;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 19px;
  align-items: center;
  transition: 0.4s ease all;
}

.btn-zap i {
  margin-right: 6px;
  font-size: 24px;
}

.btn-zap:hover
{
    background-color: rgb(1, 78, 1);
}

.nav-toggle {
  display: none;
  color: #3d3d3d;
  border-radius: 6px;
  border: 1px solid grey;
  align-items: center;
  height: 30px;
  width: 30px;
  font-size: 18px;
  margin-right: 9px;
  text-align: center;
  background-color: white;
}

.nav-toggle.fixed
{
 
  border: 1px solid lightgray ;
  color: lightgray !important;
  background-color: transparent !important;
}

.f-paragraph {
  font-size: 1.22rem;
  text-align: justify;
}

.f-paragraph-ii {
  font-size: 20px;
  text-align: justify;
}

.f-image {
  width: 100%;
  height: auto;
  border: 1px solid rgb(199, 199, 199);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.card-servico {
  width: 100%;
  margin: 4px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid lightgray;
}

.card-servico:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 9px 18px rgba(0,0,0,0.15);
}

.card-servico img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  margin-bottom: 9px;
}

.card-servico-vertical
{
  width: 100%;
  padding: 15px 8px 15px 8px;
  margin: 10px 8px 10px 8px;
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
}

.card-servico-vertical img
{
  border-radius: 8px;
  border: 1px solid lightgray;
  width: 100%;
  max-width: 320px;
  height: 215px;
  object-fit: center;
}

.card-servico-vertical h3
{
  font-size: 1.8rem;
  width: 40%;
  max-width: 250px;
}
.card-servico-vertical p
{
  font-size: 1.2rem;
}
.card-servico-vertical a
{
  min-width: 140px;
  width: 250px;
  
}

@media (max-width: 1180px) {
 .card-servico-vertical
 {
  flex-direction: column !important;
  gap: 4px;
    text-align: center;
 }

 

 
}
.f-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #2faccc;
  text-decoration: none;
  transition: color 0.3s ease;
  justify-content: center;
}

.f-link i {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.f-link:hover {
  color: #0c47a1;
}

.f-link:hover i {
  transform: translateX(6px);
}

.f-link.left {
  justify-content: start;
}





.f-footer {
  display: inline-flex;
  width: 100vw;
  min-height: 160px;
  background-color: rgb(252, 252, 252);
  margin-top: 10px;
  padding-bottom: 12px;
  color: black;
}

.f-AvisoCookies
{
  display: none;
  align-items: center;
  justify-content: center;
 flex-direction: column;
  background: rgb(241, 241, 241);
  border:  1px solid rgb(192, 192, 192);
  border-top: 8px solid var(--resco-azul);
  position: fixed;
 bottom: 20px;
  left: 20px;
 
  padding: 8px;
  border-radius: 10px;
  width: 450px;
  max-width: calc(100vw - 35px);
 
  height: auto;
  min-height: 110px;
  text-align: center;
 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.f-AvisoCookies p
{
  font-size: 1.1rem;
}

.f-AvisoCookies button
{
  background-color: var(--resco-azul);
  padding: 7px 14px 7px 14px;
  border-radius: 14px;
  border: 1px solid var(--resco-hover);
  color: white;
}
.h3-txt-grupo {
  font-weight: 400;
  font-size: 1.5rem;
  padding-right: 8px;
  margin-right: 8px;
  border-right: 1px solid gray;
}

/* MEDIA QUERIES */
@media (max-width: 480px) {
  .resco-logo {
    display: flex;
    justify-content: center;
  }
  .resco-logo button {
    margin-right: auto;
  }
  .resco-logo h3 {
    display: none;
  }
  .resco-logo img {
    height: 65px !important;
    margin-right: auto;
  }
  .gruporesco-empresas {
    display: none;
  }
}

@media (max-width: 1220px) {
  .f-navbar {
    height: auto !important;
  }
  .resco-logo {
    height: 80px;
  }
  .f-navbar .nav-inside {
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-toggle {
    display: flex;
     margin-right: 14px !important;
  }
  .nav-links {
    width: 100%;
    flex-direction: column;
    display: none !important;
    margin: 0;
  }
  .nav-social {
    display: none;
  }
  .nav-links-link {
    width: 100%;
    justify-content: start;
    border-left: none !important;
    border-top: 1px solid rgb(168, 168, 168);
    text-align: left !important;
    padding-left: 15px;
    display: none;
  }
  .nav-links.active {
    display: flex !important;
  }
  .nav-social.active {
    display: flex;
  }
  .nav-social {
    width: 100%;
    justify-content: center;
    margin: 10px 0;
  }
}

@media (max-width: 1600px) {
  .nav-links {
    margin-left: 8px;
    width: 100%;
  }
  .nav-links a {
    width: 100%;
  }
}

/* ICONE WHATSAPP */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 8px 20px rgba(18,140,126,0.18);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  text-decoration: none;
  user-select: none;
}

.whatsapp-fab:active {
  transform: translateY(1px);
}

.whatsapp-fab:hover {
  box-shadow: 0 12px 30px rgba(18,140,126,0.22);
  transform: translateY(-2px);
}

.whatsapp-fab .bx {
  font-size: 1.45rem;
  line-height: 1;
}

.whatsapp-fab .label {
  font-weight: 500;
  font-size: 1.15rem;
  margin-right: 4px;
  white-space: nowrap;
  line-height: 18px;
}

@media (max-width: 576px) {
  .whatsapp-fab {
    padding: 10px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
   
  }
  .whatsapp-fab .label {
    display: none;
  }

     
 
}

 

@media (max-width: 840px) {
   .cop {
    bottom: 185px !important;
  }

   .pd-clip {
    padding: 30px 0 30px 0;
    clip-path: polygon(
      0 3%,      
      100% 0,
      100% 97%,  
      0 100%
    );
  }
}

.whatsapp-pulse {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(37,211,102,0.9);
  box-shadow: 0 0 0 6px rgba(37,211,102,0.12);
  animation: pulse 2s infinite;
  pointer-events: none;
}

@keyframes pulse {
  0% { transform: scale(.9); opacity: .9; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(.9); opacity: 0; }
}

/* Páginas */
.f-spacing {
  display: block;
  min-height: 80px;
}

.f-hero {
  display: flex;
  width: 100vw;
  height: 180px;
  object-fit: cover;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
  z-index: 1;
  text-shadow:   0 0 5px rgb(0, 0, 0);
 
} 

 
.f-hero::before
{  
    content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg) center/cover no-repeat;
   filter: blur(5px) brightness(0.8) contrast(0.8) ;
   z-index: 0;
}


.f-hero > * {
  position: relative; /* garante que o texto fique acima */
  z-index: 1;
}
 

.f-hero h1 {
  font-weight: 600;
  font-size: 2.8rem;
  margin: 0;
}

.f-hero h3 {
  margin: 0;
  font-weight: 400;
  font-size: 1.5rem;
  color: #dadada;
 
 
}

.f-page-conteudo-sb {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  flex-direction: row;
}

.f-page-conteudo-sb .bx {
  background-color: var(--resco-azul-light);
  color: #fff;
  font-size: 28px;
  padding: 9px;
  border-radius: 100%;
  margin-right: 18px;
}

.f-page-conteudo-sb.inside {
  flex-direction: column;
}

.f-page-conteudo-sb h2 {
  margin: 0;
}

.f-page-conteudo-sb span {
  font-size: 1.2rem;
  font-weight: 600;
  
}


