/* #region global */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
}

/* paleta de cores */
:root {
  /* Aqui e as cores degradee do Navebar de Menus */
  --color-gradient: linear-gradient(to right,
      #a0a1bb 10%,
      #0a0d4e 60%,
      #050505 100%);
  --color-gradient1: linear-gradient(to top,
      #818181 10%,
      #f6f6fa 50%,
      #818181 80%);
  --color-gradient2: linear-gradient(to top,
      #12074e 10%,
      #6161d1 60%,
      #1f1883 80%);
  --color-gradient3: linear-gradient(to bottom,
      #3b2b94 10%,
      #080863 60%,
      #02020f 80%);
  --color-bg-dark: #121212;
  --color-bg-black: #000000;
  --color-text-light: #f8f8f8;
  --color-primary: #c70303;
  --color-muted: #aaa;
  --color-border: #333;
  --font-main: "Segoe UI", Tahoma, Geneva;
}

body {
  padding: 0;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  font-family: var(--font-main);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

p {
  font-size: 1.2rem;
  color: var(--color-muted);
}

/* #endregion */

/* #region navbar */
/* ============================================================
   🌈 NAVBAR PRINCIPAL (mantém seu estilo original)
   ============================================================ */
.navbar {
  background: var(--color-gradient);
  /* border-bottom: 1px solid var(--color-border); */
  transition: background 0.35s ease, box-shadow 0.35s ease, border-bottom 0.35s ease;
}

/* Links */
.navbar .nav-link {
  color: var(--color-text-light);
  transition: color 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--color-primary);
}

/* Efeito de transparência ao rolar */
nav.navbar.transparent {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: none;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

nav.navbar.transparent .nav-link {
  color: var(--color-text-light);
}

.navbar .nav-item {
  margin-right: 20px;
  /* 🔹 Afasta todos os itens igualmente */
}

/* Evita excesso no último item (Inscreva-se) */
.navbar .nav-item:last-child {
  margin-right: 0;
}


/* ============================================================
   📱 AFASTA "INSCRIVA-SE" DO "CONTATO" APENAS NO CELULAR
   ============================================================ */
@media (max-width: 600px) {

  /* Garante que os dois fiquem visíveis e com espaço entre eles */
  .navbar .nav-item .destaque-inscreva {
    margin-top: 10px;
    /* 🔹 afasta verticalmente */
    margin-left: 0;
    /* 🔹 zera margem lateral pra alinhar central */
  }

  /* Só para garantir que o 'Contato' tenha um pequeno espaço também */
  .navbar .nav-item a[href*="#contatos"] {
    margin-bottom: 8px;
    /* 🔹 um pequeno respiro abaixo */
  }
}





/* ============================================================
   🌟 LOGO FLUTUANTE ACIMA DO NAVBAR
   ============================================================ */
.navbar-brand {
  overflow: visible;
  /* garante que a logo que sai da barra apareça */
}

.navbar-brand img {
  height: 150px;
  /* 🔹 tamanho padrão da logo */
  width: auto;
  position: relative;
  top: 8px;
  /* 🔹 Regula a Logo para subir ou descer para sair da barra navBar.  valor menor sobe e maior desce */
  z-index: 10;
  /* 🔹 garante que fique acima dos itens */
  transition: all 0.4s ease-in-out;

  /* ✨ Brilho e sombra */
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 10px rgba(0, 119, 255, 0.4));

  /* 💫 Efeito de leve flutuação */
  animation: floatLogo 4s ease-in-out infinite;
}

/* 💨 Animação de flutuar */
@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 8px rgba(0, 119, 255, 0.4));
  }

  50% {
    transform: translateY(-4px);
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 18px rgba(0, 119, 255, 0.5));
  }
}

/* ============================================================
   🎵 MENU DROPDOWN PERSONALIZADO (HINOS)
   ============================================================ */
.navbar .dropdown-menu {
  background-color: #000;
  /* fundo preto */
  border: 1px solid #f8d47a33;
  /* contorno dourado translúcido */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(248, 212, 122, 0.3);
}

.navbar .dropdown-item {
  color: #f8d47a;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
  background-color: #f8d47a;
  color: #000;
  font-weight: 600;
}


/* ============================================================
   📱 RESPONSIVIDADE
   ============================================================ */
@media (max-width: 1024px) {
  .navbar-brand img {
    height: 75px;
    top: -20px;
  }
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 65px;
    top: -5px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 8px rgba(0, 119, 255, 0.3));
  }
}

/* Essa e a area para celular */
@media (max-width: 480px) {
  .navbar-brand img {
    height: 75px;
    /* Tamanho da LOGO */
    top: 10px;
    /* Afastar a LOGO do topo do aparelho */
  }
}


/* ============================================================
   ✨ DESTAQUE PULSANTE PARA O BOTÃO "INSCREVA-SE"
   ============================================================ */
.destaque-inscreva {
  position: relative;
  color: #f8d47a !important;
  /* dourado elegante */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 8px 18px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

/* 🔹 Brilho e contorno pulsante */
.destaque-inscreva::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 8px;
  border: 2px solid rgba(248, 212, 122, 0.6);
  box-shadow: 0 0 12px rgba(248, 212, 122, 0.6);
  animation: brilhoInscreva 2s ease-in-out infinite;
  z-index: -1;
}

/* ✨ Animação do brilho */
@keyframes brilhoInscreva {

  0%,
  100% {
    opacity: 0.5;
    box-shadow: 0 0 10px rgba(248, 212, 122, 0.4),
      0 0 20px rgba(248, 212, 122, 0.2);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 16px rgba(248, 212, 122, 0.9),
      0 0 35px rgba(248, 212, 122, 0.6);
  }
}

/* 💫 Efeito ao passar o mouse */
.destaque-inscreva:hover {
  color: #fff !important;
  text-shadow: 0 0 15px #f8d47a;
  transform: scale(1.05);
}



/* 💫 Efeito extra ao passar o mouse */
.destaque-contato:hover {
  color: #fff !important;
  text-shadow: 0 0 12px #f8d47a;
  transform: scale(1.05);
}


/* ============================================================
   🌈 POPUP "EM CONSTRUÇÃO"
   ============================================================ */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* fundo escuro translúcido */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease-in-out;
}

.popup-content {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(248, 212, 122, 0.6);
  border-radius: 16px;
  padding: 25px 35px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 25px rgba(248, 212, 122, 0.4);
  animation: scaleIn 0.5s ease;
}

.popup-content h3 {
  color: #f8d47a;
  font-size: 1.6rem;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(248, 212, 122, 0.4);
}

.popup-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 15px;
}

.popup-content button {
  background: #f8d47a;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-content button:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(248, 212, 122, 0.6);
}

.hidden {
  display: none;
}

/* ✨ Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}




/* #endregion */

/* #region home */

#myVideoCategoria {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
}

#home {
  background: linear-gradient(to bottom, var(var(--color-bg-black) 80%));
  text-align: center;
}

/* ================================================================================
   🎥 EFEITO DE VIDRO FUMÊ SOBRE O VÍDEO DA HOME  + LETREIRO SOBREPOSTO AO CENTRO
===================================================================================*/

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* vídeo cobre toda a área */
#myVideoCategoria {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* camada de vidro fumê */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.50);
  /* Aqui escureço ou clareo a camada de vidro fumê */
  z-index: 1;
  pointer-events: none;
}

/* 🔹 Letreiro por cima de tudo */
.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff;
  text-align: center;
}

/* animação de entrada do letreiro */
.reveal {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🔹 responsividade — reduz no celular */
@media (max-width: 600px) {
  .text-overlay h1 {
    font-size: 2rem;
  }
}






/* Aqui é o Letreiro ACAS fixo no centro do site */
#home h1 {
  font-size: 5rem;
  color: rgb(11, 33, 155);

}

.reveal {
  margin-top: 30vh;
  /* 🔹 8% da altura da tela */
}

/* Aqui é o Letreiro em movimento no centro do site */
#home span {
  font-size: 3rem;
  color: rgb(240, 236, 236);
  margin-top: 50vh;
  /* 🔹 8% da altura da tela */

}











/* #endregion */

/* #region A.C.A.S */

.left {    /* Quadro a area da historia da  A.C.A.S */
  background: var(--color-gradient2);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px 12px 0 0;

  h1 {     /* COR fonte palavra A.C.A.S */
    font-size: 60px;
    font-weight: bold;
    margin: 50px 0px;
    color: #940505;    

    span {
      font-size: 30px;
      font-weight: bold;
      margin: 50px 0px;

      .tag {
        text-decoration: underline overline;
        margin: 50px 30px;
      }
    }
  }

  p {     /*Fontes da historia abaixo  A.C.A.S */
    color: var(--color-text-light);
    position: center;
    margin: 80px 20px;
    text-align: justify;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;    
  }



  /* ===================  INICIO do Botão " Falar com a ACA=========================== */

  /* ============================================================
   💛 BOTÃO VERDE-AMARELADO COM PULSO INFINITO GARANTIDO ✨
   ============================================================ */
  .btn-yellow {
    display: inline-block;
    background-color: #46f572;
    /* Verde base */
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    letter-spacing: 1px;

    /* 🌟 Efeito visual */
    box-shadow: 0 0 20px rgba(13, 184, 47, 0.6);
    transition: none !important;
    /* 🔸 remove interferência de transições */
    animation: pulse-yellow 2s ease-in-out infinite !important;
    /* 🔥 força o pulso */
    transform-origin: center center;
    /* 🔸 garante o “crescimento” central */
  }

  /* 💫 Animação pulsante contínua */
  @keyframes pulse-yellow {
    0% {
      transform: scale(1);
      box-shadow: 0 0 10px rgba(13, 184, 47, 0.5);
    }

    50% {
      transform: scale(1.08);
      box-shadow: 0 0 40px rgba(13, 184, 47, 1);
    }

    100% {
      transform: scale(1);
      box-shadow: 0 0 10px rgba(13, 184, 47, 0.5);
    }
  }

  /* 🧲 Hover — reforça o brilho e mantém o pulso ativo */
  .btn-yellow:hover {
    background-color: #13f526 !important;
    color: #000 !important;
    box-shadow: 0 0 50px rgba(19, 245, 38, 1) !important;
    transform: scale(1.1);
  }

  /* 📱 Responsivo */
  @media (max-width: 600px) {
    .btn-yellow {
      font-size: 0.9rem;
      padding: 10px 18px;
      margin: 15px auto;
      display: block;
      width: fit-content;
    }
  }
  
}

/* =======================  Fim do Botão ============================================= */

/* ============================================================ */
/*   🎨 COLUNA DIREITA — GIF | TÍTULO | IMAGEM | FRASE           */
/* ============================================================ */

.right {
  text-align: center;
  background: var(--color-gradient1);
  
  padding: 70px 30px;    /* 🔹 DESCE TUDO (TOPO MAIOR) */
  
  border-radius: 0 12px 12px 0;
}

/* Espaço entre cada elemento */
.right .logo {
  width: 260px;
  margin-bottom: 40px;   /* 🔹 Aumentei o espaçamento */
}

.right h2 {
  font-size: 1.8rem;
  margin-bottom: 65px;   /* 🔹 Afastamento do título */
  color:#1013da;
}

.right .jovens {
  width: 100%;
  max-width: 430px;
  margin-bottom: 40px;   /* 🔹 Espaço abaixo da imagem */
  border-radius: 12px;
}

.right p {
  font-style: italic;
  font-size: 1.4rem;
  color: #1013da;
  margin-bottom: 10px;
}


/* ============================================================ */
/*   🔹 PARA TELAS GRANDES (DESKTOP)                             */
/* ============================================================ */
@media (min-width: 768px) {
  .left {
    border-radius: 12px 0 0 12px;
  }

  .right {
    border-radius: 0 12px 12px 0;
  }
}

/* #endregion */

/* #region Porque Existimos */

.backMission {
  padding: 50px;
  background: #f8f9fa;
  font-family: Arial, sans-serif;

  .section-title {
    margin: 20px 0;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #0a1a56;
  }

  .card-custom {
    background: #0a1a56;
    /* azul escuro */
    color: #fff;
    border-radius: 12px;
    padding: 0px 40px;
    height: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    h2 {
      color: var(--color-text-light);
      padding-top: 70px;
      margin: 30px 0;
      text-align: center;
      margin-bottom: 20px;
    }

    p {
      margin: 50px 20px;
      color: var(--color-text-light);
      font-size: 20px;
      line-height: 1.5;
      text-align: justify;
    }
  }

  .card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }

  .footer-text {
    margin-top: 2rem;
    font-style: italic;
    font-size: 2rem;
    color: #333;
    text-align: center;
  }
}

/* Responsividade para os cards da missão */
@media (max-width: 992px) {
  .backMission {
    padding: 30px;
  }

  .backMission .card-custom {
    height: auto;
    /* permite o card crescer conforme o conteúdo */
    padding: 20px;
  }

  .backMission .card-custom h2 {
    padding-top: 30px;
    font-size: 1.4rem;
  }

  .backMission .card-custom p {
    margin: 20px 10px;
    font-size: 16px;
    line-height: 1.4;
    text-align: justify;
  }
}

@media (max-width: 576px) {
  .backMission {
    padding: 20px;
  }

  .backMission .card-custom {
    height: auto;
    padding: 15px;
  }

  .backMission .card-custom h2 {
    padding-top: 20px;
    font-size: 1.2rem;
  }

  .backMission .card-custom p {
    margin: 15px 5px;
    font-size: 15px;
    line-height: 1.4;
  }

  .backMission .footer-text {
    font-size: 1.4rem;
    padding: 0 10px;
  }
}

/* Espaçamento entre os cards */
.backMission .card-custom {
  margin-bottom: 30px;
  /* adiciona espaço entre os cards na vertical */
}

/* Responsividade */
@media (max-width: 992px) {
  .backMission .card-custom {
    margin-bottom: 25px;
  }
}

@media (max-width: 576px) {
  .backMission .card-custom {
    margin-bottom: 20px;
  }
}


/* #endregion */

/* #region confiança */

.img-estatistica {
  /* AQUI e a imagem dos 3 familiares + 9000 familias escrito */
  width: 310px;
  /* tamanho padrão (o mesmo que você colocou no HTML) */
  max-width: 100%;
  /* responsivo: evita estourar no celular */
  height: auto;
  /* mantém proporção */
  display: block;
}


.confianca {
  background: #0a1a56;
  font-family: Arial, sans-serif;
  color: #fff;
  width: auto;

  h2 {
    color: var(--color-text-light);
    padding: 20px 0;
  }

  .highlight {
    color: #f9b233;
    /* amarelo para destaque */
    font-weight: bold;
  }

  /* Ajuste para que os cards tenham a mesma altura */
  .row.g-3 {
    display: flex;
    flex-wrap: wrap;
  }

  .row.g-3>div {
    display: flex;
  }

  .stats-box {
    background: #fff;
    color: #111;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    /* faz todos crescerem igualmente */
    display: flex;
    flex-direction: column;
    /* permite alinhar conteúdo interno */
    justify-content: center;
    /* conteúdo centralizado verticalmente */
  }

  .stats-box h3 {
    color: #0a1a56;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .stats-box p {
    font-style: italic;
    font-size: 18px;
    color: var(--color-bg-black);
  }

  .stats-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }

  p {
    color: var(--color-text-light);
    font-size: 20px;
    margin-top: 30px;
    font-weight: 500;
    line-height: 1.6;
  }
}

/* Responsividade 100% */
@media (max-width: 768px) {
  .stats-box {
    height: auto !important;
    padding: 25px;
  }
}


/*====================     Botão da area CONFIANÇA    ==============================*/

.btn-confianca {
  display: inline-block;
  background-color: #28a745;
  /* Verde principal */
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 14px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  margin-top: 20px;
  animation: pulseButton 1.5s infinite ease-in-out;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #28a745, 0 0 20px rgba(40, 167, 69, 0.5);
}

/* ✨ Efeito de pulsação infinita */
@keyframes pulseButton {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px #28a745, 0 0 20px rgba(40, 167, 69, 0.6);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px #28a745, 0 0 40px rgba(40, 167, 69, 0.8);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 10px #28a745, 0 0 20px rgba(40, 167, 69, 0.6);
  }
}




/* #endregion */

/* #region descomplicado */
.descomplicado {
  background: #fff;
  font-family: Arial, sans-serif;
  color: #111;

  h2 {
    font-size: 50px;
    font-weight: bold;
    color: #0a1a56;
  }

  .subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
  }

  /* .image-box {            /* Imagem ou video do veja nossos projetos */
  /* img { */
  */
  /* max-width: 70%;     almentar ou diminuir o campo da imagem */
  /* height: auto;
      transition: transform 0.5s ease;
    }

    img:hover {
      transform: scale(1.05);
    }
  } */


/* ===================================================================
   🎬 PLAYER DA HOME – FORÇA TOTAL PARA FUNCIONAR CORRETAMENTE
   =================================================================== */

   /* SE VOCÊ QUISER DEIXAR O PLAYER MAIOR:  
   Exemplo: max-width: 1100px !important;
   Exemplo: max-width: 1280px !important;
   Exemplo: max-width: 720px !important;
*/

/* =======================================================================================
   🎬 CORREÇÃO FINAL — PLAYER DA HOME (INDEX)
   PRIORIDADE MÁXIMA — NÃO INTERFERE EM OUTROS VÍDEOS
======================================================================================= */

#indexVideoPlayer {
    max-width: 540px;    /* 🔹 Ajuste o tamanho do player */
    margin: 0 auto;
    display: block;
}

/* Força o vídeo a respeitar o tamanho */
#indexVideoPlayer video {
    width: 100% !important;
    height: auto !important;
    max-height: 300px !important;
}




/* ==============================
   🎬 BOTÕES DO PLAYER HOME — PREMIUM
   ============================== */

.video-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
}

.btn-player {
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #001a88, #0a1a56);
    color: #fff;
    font-size: 22px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 15px rgba(0,0,0,0.25),
                0 0 10px rgba(0, 119, 255, 0.4);

    transition: all .25s ease-in-out;
}

/* HOVER — brilho suave */
.btn-player:hover {
    transform: scale(1.12);
    background: linear-gradient(135deg, #0a1a56, #001a88);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35),
                0 0 14px rgba(0, 119, 255, 0.6);
}

/* Clicar */
.btn-player:active {
    transform: scale(0.92);
}

/* MOBILE */
@media (max-width: 480px) {
    .btn-player {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}







/* ============================  Fim da area de video ===================================== */


  .subtitle {
    font-size: 20px;
    color: var(--color-bg-black);
  }

  p {
    font-style: italic bold;
    font-size: 20px;
    color: var(--color-bg-black);
    margin-top: 20px;
    text-align: center;
    line-height: 1.6;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
}

/* #endregion */

/* #region criação dos serviços "GALERIA FIXA" */
.criacao {
  background: linear-gradient(to right, #00145c, #061852);
  color: #fff;
  font-family: Arial, sans-serif;

  h2 span {
    color: #ffb400;
    /* cor amarela/destaque */
  }

  h3 {
    text-align: justify;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-bg-black);
  }

  p {
    margin-top: 20px;
    text-align: justify;
    color: var(--color-bg-black);
  }

  .feature-box {
    background: #f1f1f1;
    color: #000;
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    .feature-icon {
      font-size: 35px;
      margin-bottom: 15px;
      color: #e63946;
    }
  }

  .feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  .img-tv {
    max-width: 100%;
  }
}

/* #endregion */

/* #region carrossel */

/* 🌈 Estilo geral do carrossel */
.carousel {
  padding: 20px;
  background: var(--color-gradient2);
  font-family: Arial, sans-serif;
  color: #fff;
}

.carousel .carousel-item {
  text-align: center;
  padding: 50px;
  background: transparent;
  color: var(--color-text-light);
  object-fit: contain;
  margin: 0 auto;
}

.carousel .carousel-item img {
  object-fit: contain;
  max-height: auto;
}

.carousel .carousel-item .textCarousel {
  margin-top: 30px;
  padding-top: 30px;
}

/* ============================================================
   🖥️ TAMANHO PADRÃO DO DESKTOP (ANTES ERA 680px)
   Vamos reduzir cerca de 20% → valor final: 540px
   ============================================================ */
.carousel-item img {
  max-height: 540px;     /* 🔹 Ajuste principal para DESKTOP */
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  display: block;
}

/* ============================================================
   📺 Telas médias (tablets e notebooks pequenos)
   Mantemos 300px como antes — está equilibrado.
   ============================================================ */
@media (max-width: 992px) {
  .carousel-item img {
    max-height: 300px;    /* 🔹 zona intermediária */
  }
}

/* ============================================================
   📱 Responsividade – CELULAR  
   ❤️ AQUI ESTÁ O AJUSTE QUE VOCÊ DISSE QUE ESTÁ BOM.
   Se algum dia quiser AUMENTAR, é só mexer no 220px.
   Ex.: 260px deixa as imagens maiores.
   ============================================================ */
@media (max-width: 576px) {
  .carousel-item img {
    max-height: 220px;    /* 🔹 ponto exato do celular */
  }
}


/* #endregion */

/* #region depoimentos */
.depoimentos {
  background: var(--color-text-light);
  color: var(--color-text-light);
  font-family: Arial, sans-serif;

  h3 {
    color: #0a1a56;
    font-size: 40px;
    padding: 50px 0;
    text-align: center;
  }

  .depoimento-card {
    background: #0a1a56;
    color: var(--color-text-light);
    border-radius: 15px;
    padding: 20px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;

    img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin: 20px 0;
    }

    h5 {
      font-weight: bold;
      margin-bottom: 5px;
    }

    span {
      font-style: italic;
      color: var(--color-text-light);
    }

    p {
      color: var(--color-text-light);
      font-size: 14px;
      margin-top: 10px;
    }
  }

  .depoimento-card:hover {
    transform: translateY(-5px);
  }

  .stars {
    color: #ffc107;
    font-size: 18px;
  }
}

.chamada-final {
  color: #0d47a1;
  /* Azul forte */
  font-weight: 800;
  font-size: 1.8rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 40px;
  position: relative;
  animation: fadeInUp 1.5s ease-in-out, pulseGlow 2.5s infinite alternate;
}

/* ✨ Animação de entrada suave de baixo pra cima */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 💫 Brilho pulsante */
@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 5px #1e88e5, 0 0 10px #1e88e5, 0 0 15px #0d47a1;
  }

  100% {
    text-shadow: 0 0 15px #2196f3, 0 0 25px #42a5f5, 0 0 40px #1e88e5;
  }
}

/* 📱 Ajuste responsivo */
@media (max-width: 768px) {
  .chamada-final {
    font-size: 1.4rem;
    margin-top: 30px;
  }
}

/* 🔹 Botão de Inscrição */
.btn-inscricao {
  display: inline-block;
  background-color: #28a745;
  /* Verde principal */
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 14px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  margin-top: 20px;
  animation: pulseButton 1.5s infinite ease-in-out;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #28a745, 0 0 20px rgba(40, 167, 69, 0.5);
}

/* ✨ Efeito de pulsação infinita */
@keyframes pulseButton {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px #28a745, 0 0 20px rgba(40, 167, 69, 0.6);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px #28a745, 0 0 40px rgba(40, 167, 69, 0.8);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 10px #28a745, 0 0 20px rgba(40, 167, 69, 0.6);
  }
}

/* 🟦 Efeito hover para azul */
.btn-inscricao:hover {
  background-color: #1e88e5;
  box-shadow: 0 0 15px #1e88e5, 0 0 30px rgba(30, 136, 229, 0.7);
  transform: scale(1.08);
}

/* 📱 Ajuste responsivo para celular */
@media (max-width: 768px) {
  .btn-inscricao {
    font-size: 1rem;
    padding: 12px 24px;
    width: 80%;
  }

  .chamada-final {
    font-size: 1.5rem;
  }
}

/* 📱📱 Correção: Espaçamento entre cards no celular */
@media (max-width: 768px) {
  .depoimento-card {
    margin-bottom: 25px;
    /* espaçamento entre os cards */
  }
}





/* #endregion */

/* #region contatos */
.contatos {
  font-family: Arial, sans-serif;
  background: var(--color-gradient3);
  color: var(--color-text-light);
  padding: 60px 20px;

  h2 {
    font-size: 40px;
    font-weight: bold;
    margin: 40px 0px;
    text-align: center;
    color: var(--color-text-light);
  }

  p {
    font-size: 18px;
    margin-bottom: 40px 0px;
    text-align: center;
    color: var(--color-text-light);
  }

  .contact-form {
    background: #fff;
    color: #333;
    border-radius: 12px;
    padding: 25px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    h5 {
      margin-bottom: 20px;
      font-weight: bold;
      color: #001a44;
    }
  }

  .btn-custom {
    background: #001a88;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
  }

  .btn-custom:hover {
    background: #0033cc;
  }

  .contact-info {
    margin-top: 40px;

    h5 {
      font-weight: bold;
      margin-bottom: 5px;
    }

    i {
      font-size: 24px;
      margin-right: 10px;
      color: #fff;
    }
  }
}


/* ============================================================
   🎓 BOTÃO DE INSCRIÇÃO COM EFEITO PULSANTE ✨
   ============================================================ */
.btn-inscricao,
.btn-inscricao-rodape {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  background-color: #22b14c;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(34, 177, 76, 0.5);
  transition: all 0.3s ease;
  text-align: center;
  width: fit-content;
  min-width: 250px;

  /* 🌟 EFEITO PULSANTE */
  animation: pulse 1.8s infinite ease-in-out;
}

/* 🔹 Hover — ainda mais destaque ao passar o mouse */
.btn-inscricao:hover,
.btn-inscricao-rodape:hover {
  background-color: #00c853;
  box-shadow: 0 0 35px rgba(0, 200, 83, 0.8);
  transform: translateY(-3px);
}

/* 💫 Animação de pulsação suave */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(34, 177, 76, 0.6);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(34, 177, 76, 0.9);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(34, 177, 76, 0.6);
  }
}

/* 🔹 Responsivo — ajuste de tamanho e margem */
@media (max-width: 600px) {

  .btn-inscricao,
  .btn-inscricao-rodape {
    font-size: 0.85rem;
    padding: 10px 20px;
    margin: 25px auto;
    display: block;
  }
}




/* #endregion */

/* #region footer */
footer {
  background-color: #02020f;
  color: var(--color-text-light);
  padding: 20px 0;

  .footer-logo img {
    max-height: 80px;
  }

  .social-icons {
    text-align: center;
    margin-bottom: 20px;
  }

  .social-icons span {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .social-icons a {
    color: #fff;
    font-size: 35px;
    margin: 0 10px;
    transition: 0.3s;
  }

  .social-icons a:hover {
    color: var(--color-primary);
  }

  .copyright {
    padding-top: 30px;
    margin-top: 30px;
    font-size: 14px;
    text-align: center;
  }
}

/* 📱 Responsividade - Correção para celular */
@media (max-width: 768px) {
  footer {
    padding: 30px 0;
  }

  .social-icons a {
    font-size: 28px;
    /* diminui ícones para caber */
    margin: 0 8px;
  }

  .social-icons span {
    font-size: 16px;
  }

  .copyright {
    font-size: 12px;
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
  }
}

/* 📱 Responsividade para telas muito pequenas */
@media (max-width: 480px) {
  .social-icons a {
    font-size: 24px;
    /* ainda menor para caber perfeitamente */
    margin: 0 6px;
  }

  .copyright {
    font-size: 11px;
  }
}

/* #endregion */

/* ==========================================================================================
   🔵 BOTÃO WHATSAPP FLUTUANTE – ACAS
   Este bloco cria um botão fixo no canto inferior direito, com animação pulsante,
   responsivo, com sombra, hover elegante e estilo profissional.
   ========================================================================================== */

/* 🔘 Estilo básico do botão */
.whats-btn {
  position: fixed;
  /* Botão fica sempre fixo no mesmo lugar */
  bottom: 20px;
  /* Distância da borda inferior */
  right: 20px;
  /* Distância da borda direita */
  width: 60px;
  /* Largura do botão */
  height: 60px;
  /* Altura do botão */
  background-color: #25D366;
  /* Verde oficial do WhatsApp */
  color: #fff;
  /* Cor do ícone */
  border-radius: 50%;
  /* Deixa o botão completamente redondo */
  display: flex;
  /* Centraliza conteúdo */
  align-items: center;
  /* Centraliza verticalmente */
  justify-content: center;
  /* Centraliza horizontalmente */
  font-size: 32px;
  /* Tamanho do ícone */
  cursor: pointer;
  /* Mostra que é clicável */
  z-index: 99999;
  /* Fica acima de todo o site */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  /* Sombra moderna */
  transition: all 0.3s ease;
  /* Animação suave no hover */
  animation: pulseWhats 1.8s infinite ease-in-out;
  /* Animação pulsante */
}

/* ✨ Efeito ao passar o mouse (desktop) */
.whats-btn:hover {
  transform: scale(1.15);
  /* Aumenta suavemente */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  /* Sombra mais forte */
}

/*  Animação pulsante (brilho e leve aumento) */
@keyframes pulseWhats {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }

  50% {
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

/* 📱 Ajuste responsivo para celular */
@media (max-width: 768px) {
  .whats-btn {
    width: 50px;
    /* Botão menor */
    height: 50px;
    font-size: 28px;
    /* Ícone menor */
    bottom: 15px;
    /* Ajuste de posição */
    right: 15px;
  }
}

/* .whats-btn {
  background: red !important;
} */


/* ===========================Fim do stilo do Botão =========================================  */