* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif;
}

body 
{
  background: #0b0b26;
  color: #fff;
}

/*.header
{
  margin-top: 28px; /* Ajusta para não ficar em cima da info-topbar 
}*/

.info-topbar 
{
  width: 100%;
  background: #070b15; /* Mesmo azul do tema */
  color: #ffffff;
  text-align: center;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.info-topbar a 
{
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.info-topbar a:hover 
{
  text-decoration: underline;
}

/* header */
.header 
{
  width: 100%;
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #050510;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.header-left 
{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: -10px; 
}

.logo 
{
  height: 72px;
  transition: 
    transform 0.45s cubic-bezier(0.30, 1, 0.40, 1),
    filter 0.45s ease;
  will-change: transform;
  cursor: pointer;
}

.logo:hover 
{
  transform: scale(1.06) translateY(-2px);
  filter: drop-shadow(0 0 18px rgba(139, 92, 246, 0.55));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 16px;
  letter-spacing: 1px;
}

.brand-text span 
{
  font-size: 12px;
  opacity: 0.9;
  letter-spacing: 1.5px;
  color: #b3b3ff;
}

.header-left:hover .brand-text
{
  opacity: 0.9;
  transform: translateX(2px);
  transition: 0.3s ease;
}

@media (max-width: 900px) 
{
  .brand-text {
    display: none;
  }

  .logo {
    height: 62px;
  }
}
/* MENU DESKTOP */
.nav 
{
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a 
{
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 5px 0;
  font-weight: bold;
}

/* EFEITO HOVER */
.nav a::after 
{
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #8b5cf6;
  transition: 0.3s ease;
}

.nav a:hover::after 
{
  width: 100%;
}

.nav a:hover 
{
  color: #c4b5fd;
}

/* BOTÃO WHATSAPP */
.btn-nav {
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.45);
  background: linear-gradient(135deg, #9f7aea, #7c3aed);
  color: #020108;
}

.btn-nav::after 
{
  display: none;
}

/* HAMBURGUER */
.menu-toggle 
{
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100; /* MUITO IMPORTANTE */
}


.menu-toggle span 
{
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.4s;
}

/* ANIMAÇÃO X */
.menu-toggle.active span:nth-child(1) 
{
  transform: rotate(45deg) translate(6px, 6px);
  background: #6d28d9;
}

.menu-toggle.active span:nth-child(2) 
{
  opacity: 0;
  background: #6d28d9;
}

.menu-toggle.active span:nth-child(3) 
{
  transform: rotate(-45deg) translate(6px, -6px);
  background: #6d28d9;
}

/* MOBILE */
@media (max-width: 900px) 
{
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0c0c1a;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 30px 0;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* Essa e a separação de toda a pagina */
.section 
{
  padding: 90px 8%;
}

.divider
{
  width:100%;
  height:2px;
  background:linear-gradient(90deg,transparent,#6d28d9,transparent);
  margin:48px 0;
}



/* footer ( css todos da footer )*/
.footer-premium {
  background: linear-gradient(180deg, #050505, #000);
  color: #fff;
  padding: 80px 8% 30px;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 50px;
  margin-bottom: 40px;
}

/* MARCA */
.footer-brand img {
  height: 70px;
  margin-bottom: 18px;
  transition: transform .4s ease;
}

.footer-brand img:hover {
  transform: scale(1.08) rotate(-1deg);
}

.footer-brand p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}

/* SELOS */
.footer-seals {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.seal {
  width: 44px;
  height: 44px;
  background: #111;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.seal:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 10px 25px rgba(139,92,246,.4);
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 14px;
  font-size: 16px;
}

.footer-links a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 10px;
  position: relative;
  transition: color .3s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #8b5cf6;
  transition: width .3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a:hover::after {
  width: 100%;
}

.contact-box {
  max-width: 320px;
  margin: 20px auto;
}

/* LINK VIRA A CAIXA */
.contact-box a {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 14px 18px;
  border-radius: 12px;

  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  border: 1px solid rgba(139, 92, 246, 0.35);

  color: #fff;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0,0,0,.4);
  transition: all .35s ease;
}

/* ÍCONE */
.contact-box .icon {
  font-size: 22px;
  background: #8b5cf6;
  color: #000;
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  flex-shrink: 0;

  transition: transform .35s ease;
}

/* TEXTO */
.contact-box .text small {
  display: block;
  font-size: 12px;
  color: #cfcfcf;
  letter-spacing: .5px;
}

.contact-box .text strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* HOVER */
.contact-box a:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(139,92,246,.35);
  border-color: #8b5cf6;
}

.contact-box a:hover .icon {
  transform: scale(1.1) rotate(-5deg);
}

/* MOBILE */
@media(max-width: 768px){
  .contact-box {
    max-width: 100%;
  }
}


/* REDES SOCIAIS */
.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

/* CARD DO ÍCONE */
.social-card {
  position: relative;
  width: 56px;
  height: 56px;
  background: #0d0d0d;
  border-radius: 14px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}

/* IMAGEM DO ÍCONE */
.social-card img {
  width: 28px;
  height: 28px;
  filter: brightness(0.9);
  transition: transform .35s ease;
}

/* INFO ESCONDIDA */
.social-info {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%) scale(.9);
  background: #111;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: all .35s ease;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

.social-info strong {
  display: block;
  font-size: 13px;
}

.social-info small {
  font-size: 11px;
  color: #aaa;
}

/* HOVER */
.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(139,92,246,.45);
}

.social-card:hover img {
  transform: scale(1.15);
}

.social-card:hover .social-info {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* css para os links de social não ficarem azuis, ao se tornar links */
.social-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.social-link * {
  color: inherit;
}

/* MOBILE */
@media(max-width:768px){
  .social-info {
    display: none;
  }
}


/* BASE */
.footer-bottom {
  border-top: 1px solid #111;
  padding-top: 18px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* MOBILE */
@media(max-width:768px)
{
  .social span {
    display: none;
  }
}


@keyframes fade 
{
  from 
  {
    opacity:0; 
    transform: translateY(20px)
  }
  to 
  {
    opacity:1; 
    transform: translateY(0)
  }
}

/* ================================
   WHATSAPP FIXO - ABA DESLIZANTE
================================ */

.whatsapp-fixed
{
  position: fixed;
  bottom: 22px;
  right: 22px;
  height: 52px;
  width: 52px;
  padding: 0 14px;
  
  background: #25D366;
  border-radius: 999px;

  display: flex;
  align-items: center;
  gap: 10px;

  box-shadow: 0 10px 22px rgba(37,211,102,.35);

  overflow: hidden;
  white-space: nowrap;

  transition: all .35s ease;
  z-index: 9999;
}

.whatsapp-fixed,
.whatsapp-fixed:visited,
.whatsapp-fixed:hover,
.whatsapp-fixed:active 
{
  text-decoration: none;
  color: #fff;
}


/* Ícone */
.whatsapp-fixed svg
{
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* TEXTO ESCONDIDO */
.wa-label
{
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transform: translateX(12px);
  transition: all .35s ease;
}

/* HOVER - EXPANSÃO */
.whatsapp-fixed:hover
{
  width: 300px;
}

/* TEXTO APARECE */
.whatsapp-fixed:hover .wa-label
{
  opacity: 1;
  transform: translateX(0);
}

/* MOBILE */
@media(max-width:768px)
{
  .whatsapp-fixed{
    width: 52px !important;
  }

  .whatsapp-fixed:hover{
    width: 52px;
  }

  .wa-label{
    display: none;
  }
}
@keyframes pulse
{
  0%{ transform: scale(1) }
  50%{ transform: scale(1.05) }
  100%{ transform: scale(1) }
}

.whatsapp-fixed
{
  animation: pulse 2.5s infinite;
}

@media(max-width:768px)
{
  .whatsapp-fixed{
    width: 52px !important;
  }

  .whatsapp-fixed:hover{
    width: 52px;
  }

  .wa-label{
    display: none;
  }
}

/* parte de detalhes onde vai aparecer as informações */
/* ================================
   MAIN INSTITUCIONAL
================================ */

.institucional-main {
  min-height: 100vh;
  padding: 140px 8% 120px 8%;
  display: flex;
  align-items: flex-start;
  justify-content: center;

  background: radial-gradient(circle at top, #1a1033 0%, #050510 60%);
}


/* brasão da alcateia atras de tudo para ficar top */
.institucional-main 
{
  position: relative;
  min-height: 100vh;
  padding: 140px 8% 120px 8%;
  display: flex;
  align-items: flex-start;
  justify-content: center;

  background: radial-gradient(circle at top, #1a1033 0%, #050510 60%);
  overflow: hidden;
}

/* BRASÃO EPCAR */
.institucional-main::before 
{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;

  background: url("/assets-logos/logo-fundo-transp.png") no-repeat center;
  background-size: contain;

  transform: translate(-50%, -50%);
  opacity: 0.30; /* controla intensidade aqui */

  pointer-events: none;
  z-index: 0;

  animation: floatBrasao 12s ease-in-out infinite;
}


@media (max-width: 768px) 
{
  .institucional-main 
  {
    padding: 120px 6% 100px 6%;
  }
}


/* Garante que conteúdo fique acima */
.institucional-section 
{
  position: relative;
  z-index: 2;
}

@keyframes floatBrasao {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -52%) scale(1.02);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}


/* BOTÃO VOLTAR - ALCATEIA */
.btn-voltar {
  position: fixed;
  top: 15px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;
  border-radius: 10px;

  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.45);

  color: #ede9fe;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;

  backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 rgba(124,58,237,0),
    inset 0 0 12px rgba(124,58,237,0.25);

  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;

  z-index: 9999;
}

/* ÍCONE */
.btn-voltar::before {
  content: "←";
  font-size: 1.2rem;
  transition: transform 0.35s ease;
}

/* HOVER */
.btn-voltar:hover {
  background: rgba(124, 58, 237, 0.35);
  box-shadow:
    0 0 18px rgba(124,58,237,0.55),
    inset 0 0 16px rgba(124,58,237,0.45);
  transform: translateX(-4px);
}

.btn-voltar:hover::before {
  transform: translateX(-4px);
}

/* CLIQUE */
.btn-voltar:active {
  transform: scale(0.96);
}

/* MOBILE */
@media (max-width: 768px) {
  .btn-voltar {
    top: 7px;
    left: 16px;
    padding: 9px 14px;
    font-size: 0.85rem;
  }
}



/* mostra qual pagina esta ativado, em qual ele clicou */
.nav a 
{
  position: relative;
  text-decoration: none;
  color: #ccc;
  padding: 6px 10px;
  transition: 0.3s ease;
}

.nav a:hover {
  color: #fff;
}

/* Link ativo */
.nav a.active {
  color: #8b5cf6;
  font-weight: 600;
}

/* Linha animada embaixo */
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #8b5cf6;
  border-radius: 2px;
}



/* css dos depoimentos da pagina */
.depoimentos-section 
{
  padding: 120px 5%;
  background:
    radial-gradient(circle at 80% 30%, rgba(168, 85, 247, 0.20), transparent 60%),
    radial-gradient(circle at 20% 70%, rgba(236, 72, 153, 0.15), transparent 60%),
    linear-gradient(135deg, #060612, #0d0d1f, #050510);  color: #fff;
  position: relative;
  overflow: hidden;
}

.depoimentos-header 
{
  text-align: center;
  margin-bottom: 80px;
  animation: fadeUp 1s ease forwards;
}

.depoimentos-header .tag 
{
  color: #b889ff;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.depoimentos-header h1 {
  font-size: 48px;
  margin: 20px 0;
}

.depoimentos-header h1 span {
  color: #a855f7;
}

.depoimentos-header p {
  max-width: 800px;
  margin: auto;
  opacity: 0.8;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  border-radius: 70px;
}

.depoimento-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  cursor: pointer;
  transform: translateY(40px);
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.depoimento-card:nth-child(even) {
  animation-delay: 0.3s;
}

.foto-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.foto-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: 0.6s ease;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(88, 28, 135, 0.95), rgba(0,0,0,0.2));
  color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(100%);
  transition: 0.6s ease;
}

.overlay h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #e9d5ff;
  text-align: center;
}

.overlay p 
{
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
}

.depoimento-card:hover img {
  transform: scale(1.1);
}

.depoimento-card:hover .overlay {
  transform: translateY(0);
}

/* Animação */

@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* MOBILE - clique ativa overlay */

@media (max-width: 768px) 
{
  .depoimento-card .overlay 
  {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
}

/* PARA TELAS DE TABLET ELE FICA DE DOIS EM DOIS */
@media (min-width: 769px) and (max-width: 1199px)
{
  .depoimentos-grid 
  {
    grid-template-columns: repeat(2, 1fr);
  }
  .depoimento-card .overlay 
  {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
}

/* PARA TELAS DE DESKTOP ELE FICA DE TRES EM TRES */
@media (min-width: 1200px) 
{
  .depoimentos-grid 
  {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* FRASE DE IMPACTO NO FINAL */
/* ======================================
   CTA IMPACTO - VERSÃO PROFISSIONAL
====================================== */

.cta-impacto {
  padding: 110px 8%;
  background: radial-gradient(circle at center, #1e0b3a 0%, #0b0618 70%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cta-conteudo {
  max-width: 820px;
}

/* TÍTULO */
.cta-impacto h2 {
  font-size: 44px;
  margin-bottom: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.cta-impacto h2 span {
  color: #a855f7;
}

/* TEXTO */
.cta-impacto p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* BOTÃO */
.btn-cta-impacto {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(90deg, #9333ea, #6b21a8);
  color: white;
  font-size: 18px;
  font-weight: 700;
  border-radius: 60px;
  text-decoration: none;
  transition: 0.35s ease;
  box-shadow: 0 0 35px rgba(147,51,234,0.6);
}

.btn-cta-impacto:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 55px rgba(147,51,234,0.9);
}

.cta-impacto small {
  display: block;
  margin-top: 22px;
  opacity: 0.6;
  font-size: 14px;
}

@media (max-width: 768px) 
{

  .cta-impacto {
    padding: 85px 6%;
  }

  .cta-impacto h2 {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .cta-impacto p {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .btn-cta-impacto {
    width: 100%;
    max-width: 360px;
    padding: 16px 26px;
    font-size: 16px;
    border-radius: 50px;
  }

  .cta-impacto small {
    font-size: 13px;
    margin-top: 18px;
  }

}

@media (max-width: 1024px) 
{

  .cta-impacto {
    padding: 100px 7%;
  }

  .cta-impacto h2 {
    font-size: 40px;
  }

  .cta-impacto p {
    font-size: 17px;
  }

  .btn-cta-impacto {
    padding: 17px 42px;
    font-size: 17px;
  }

}


@media (min-width: 1400px) {

  .cta-impacto {
    padding: 130px 10%;
  }

  .cta-impacto h2 {
    font-size: 50px;
  }

  .cta-impacto p {
    font-size: 20px;
  }

  .btn-cta-impacto {
    padding: 20px 55px;
    font-size: 19px;
  }

}



/* ========================= */
/* DESATIVAR REVEAL NO MOBILE E TABLET */
/* ========================= */

@media (max-width: 1024px) {

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-destaque {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

}
