/* definições gerais */
:root {
  --cor-principal: #E96612;
}

body {
  font-family: 'Ubuntu', sans-serif;
}

/* Navbar fixa */
.navbar {
  transition: all 0.3s ease;
  z-index: 1030;
}

.navbar-collapse {
  transition: all 0.3s ease;
}

.navbar-scrolled {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-spacer {
  height: 85px; /* Ajuste conforme a altura do seu navbar */
}

/* Logo responsiva */
.logo-img {
  height: 65px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.navbar-scrolled .logo-img {
  height: 50px;
}

@media (max-width: 991px) {
  .logo-img {
    height: 50px;
  }
  
  .navbar-scrolled .logo-img {
    height: 40px;
  }
  
  .navbar-spacer {
    height: 70px;
  }
}

@media (max-width: 576px) {
  .logo-img {
    height: 40px;
  }
  
  .navbar-scrolled .logo-img {
    height: 35px;
  }
  
  .navbar-spacer {
    height: 60px;
  }
}

.bg-warning {
  background-color: var(--cor-principal) !important;
}

.text-warning {
  color: var(--cor-principal) !important;
}

.btn-warning {
  background-color: var(--cor-principal) !important;
  color: white !important;
  border: none;
}

.btn-warning:hover {
  background-color: #E96612 !important;
}

.fs-7 {
  font-size: 0.8rem;
}

.navbar-nav .nav-link {
  color: #555;
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link.active {
  color: var(--cor-principal);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-left: 2rem;
}

.social-icons a {
  color: var(--cor-principal);
  font-size: 1.2rem;
}

.text-brand {
  color: var(--cor-principal) !important;
}

.hero-section {
  background-image: url('../img/bg-hero.png');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.btn-saiba-mais {
  background-color: var(--cor-principal);
  border: none;
  color: white;
}

.rounded-pill {
  border-radius: 50px !important;
}

.text-dark {
  color: #0a0a2a !important;
}

/* Seção Destaques */
.destaques-section {
  background-color: #fff;
  position: relative;
  padding: 60px 0;
}

.destaques-container {
  background: linear-gradient(135deg, #F3A746 0%, #E45005 100%);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.destaque-item {
  color: white;
  padding: 15px;
  transition: transform 0.3s ease;
}

.destaque-item:hover {
  transform: translateY(-10px);
}

.destaque-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.destaque-numero {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.destaque-texto {
  font-size: 1rem;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .destaque-icon {
    font-size: 2rem;
  }
  
  .destaque-numero {
    font-size: 1.8rem;
  }
  
  .destaque-texto {
    font-size: 0.9rem;
  }
  
  .destaques-container {
    padding: 30px 15px;
  }
}

/* Seção Quem Sou */
.quem-sou-section {
  background-color: #d4eeff;
  position: relative;
  padding: 80px 0;
}

.quem-sou-section h2 {
  color: #222;
  margin-bottom: 1.5rem;
}

.quem-sou-section p {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
}
 
.biografia-bg{
  background-image: url('../img/icon-15.png');
 
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
  border-radius: 10px;
}

.biografia {
  max-width: 800px; 
  
}

.assinatura {
  margin-top: 1.5rem;
}

/* Seção Serviços */
.servicos-section {
  padding: 80px 0;
  background-color: #fff;
}

.servicos-section h2 {
  color: #222;
  margin-bottom: 0.5rem;
}

.servico-card {
  background: linear-gradient(135deg, #F3A746 0%, #E45005 100%);
  color: white;
  border-radius: 15px;
  padding: 40px 25px 30px;
  height: 100%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.servico-card:hover {
  transform: translateY(-10px);
}

.servico-icon-container {
  width: 202px;
  height: 202px;
   border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px; 
}

 

.servico-titulo {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.servico-descricao {
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-outline-light {
  border: 2px solid white;
  font-weight: 500;
  padding: 8px 25px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--cor-principal);
}

@media (max-width: 767px) {
  .servico-card {
    margin-bottom: 30px;
  }
}

/* Seção Agenda */
.agenda-section {
  padding:   0;
  background-color: #f9f9f9;
  background-image: linear-gradient(135deg, rgba(252, 238, 227, 0.4) 0%, rgba(249, 249, 249, 0.4) 100%);
  position: relative;
}

.agenda-section h2 {
  color: #222;
  margin-bottom: 0.5rem;
}

.eventos-container {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 20px;
}

/* Estilizando a barra de rolagem */
.eventos-container::-webkit-scrollbar {
  width: 5px;
}

.eventos-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.eventos-container::-webkit-scrollbar-thumb {
  background: var(--cor-principal);
  border-radius: 10px;
}

.eventos-container::-webkit-scrollbar-thumb:hover {
  background: #d55700;
}

.evento-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.evento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.evento-icon {
  width: 50px;
  height: 50px;
  background-color: var(--cor-principal);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.evento-tipo {
  display: inline-block;
  padding: 2px 8px;
  background-color: var(--cor-principal);
  color: white;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.evento-titulo {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.evento-info {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}

.btn-outline-dark {
  border: 2px solid #333;
  color: #333;
  font-weight: 500;
  padding: 8px 35px;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: #333;
  color: white;
}

.agenda-img-container {
  position: relative;
  margin-top: 20px;
}

.agenda-img-container img {
 
  object-fit: contain;
}

@media (max-width: 991px) {
  .agenda-img-container {
    margin-top: 50px;
  }
}

/* Seção Contratar */
.contratar-section {
  background: linear-gradient(135deg, #5B76CE 0%, #43A9D6 100%);
  padding: 80px 0;
  position: relative;
}

.contratar-section h2 {
  margin-bottom: 1.5rem;
}

.contratar-section p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contratar-section .btn-light {
  color: #4a73c7;
  font-weight: 600;
  padding: 10px 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.contratar-section .btn-light:hover {
  background-color: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Seção Depoimentos */
.depoimentos-section {
  padding: 80px 0;
  background-color: #fff;
  background-image: url('../img/bg-depoimentos.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.depoimento-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
 
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.depoimento-content {
  padding: 30px;
  position: relative;
}

.depoimento-pessoa {
  display: flex;
  align-items: center;
}

.depoimento-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid #f5f5f5;
}

.depoimento-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.depoimento-nome {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #333;
}

.depoimento-cargo {
  font-size: 0.9rem;
  color: #777;
}

.depoimento-texto {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.depoimento-aspas {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--cor-principal);
  opacity: 0.8;
}

@media (max-width: 767px) {
  .depoimento-card {
    margin-bottom: 30px;
  }
}

/* Seção Blog */
.blog-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  background-image: url('../img/bg-blog.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-section h2 {
  color: #222;
  margin-bottom: 2rem;
}

.blog-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-img-container {
  height: 230px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-content {
  background: linear-gradient(135deg, #F3A746 0%, #E45005 100%);
  color: white;
  padding: 25px 20px;
  min-height: 120px; 
}

.blog-titulo {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}

.btn-outline-warning {
  color: var(--cor-principal);
  border: 2px solid var(--cor-principal);
  font-weight: 600;
  padding: 10px 30px;
  transition: all 0.3s ease;
}

.btn-outline-warning:hover {
  background-color: var(--cor-principal);
  color: white;
}

/* Seção Vídeos */
.videos-section {
  padding: 80px 0;
  background-color: #f2f2f2;
  position: relative;
}

.videos-section h2 {
  color: #222;
  margin-bottom: 0.8rem;
}

.video-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.video-item:hover .video-container {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.video-info {
  text-align: center;
  padding: 0 10px;
}

.video-info h3 {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.video-info p {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 991px) {
  .video-info h3 {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .video-item {
    margin-bottom: 30px;
  }
}

/* Seção Contato */
.contato-section {
  background: linear-gradient(135deg, #5577CD 0%, #45A7D5 100%);
  padding: 100px 0;
  position: relative;
}

.contato-section h2 {
  margin-bottom: 2rem;
}

.contato-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
}

.contato-texto a, .contato-texto p {
  font-size: 1.1rem;
}

.contato-texto a:hover {
  text-decoration: underline !important;
  opacity: 0.9;
}

.contato-form .form-control {
  border: none;
  padding: 15px 25px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.contato-form .form-control::placeholder {
  color: #999;
}

.contato-form .form-control:focus {
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  background-color: white;
}

.contato-form textarea.form-control {
  resize: none;
}

.btn-info {
  background-color: #45D1FC !important;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.btn-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Footer */
.footer-section {
  background-color: #000;
  color: #fff;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-heading {
  position: relative;
  padding-bottom: 12px;
  font-weight: 600;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--cor-principal);
}

.footer-menu {
  margin-top: 10px;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--cor-principal);
}

.footer-contato p {
  margin-bottom: 15px;
}

.footer-contato i {
  width: 25px;
  text-align: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--cor-principal);
  color: white;
  transform: translateY(-3px);
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  padding: 12px 15px;
  border-radius: 4px 0 0 4px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
  border-radius: 0 4px 4px 0;
  padding: 0 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

@media (max-width: 767px) {
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-heading {
    text-align: center;
  }
}

/* Estilo para o navbar quando rola a página */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease;
}

/* Estilo do botão voltar ao topo */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--cor-principal);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: #d55700;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Estilos para formulário de contato validação */
.contato-form .form-control.is-invalid {
  border: 1px solid #dc3545;
  background-color: rgba(220, 53, 69, 0.1);
}

/* Animações para elementos */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.5s ease forwards;
}

/* Ajustes de responsividade adicionais */
@media (max-width: 576px) {
  .display-5 {
    font-size: 2rem;
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }
}

/* Botão flutuante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20ba59;
  transform: scale(1.1);
  color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    bottom: 20px;
    left: 20px;
  }
}

/* Prevenção de overflow horizontal causado por animações AOS */
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Ajuste para animações AOS em mobile */
@media (max-width: 767px) {
  [data-aos] {
    /* Reduz a distância de deslocamento em mobile */
    transform: translate3d(0, 0, 0) !important;
  }
  
  /* Evita que as animações causem overflow */
  .row [data-aos] {
    opacity: 1 !important;
  }
}

/* Ajuste para seções com IDs para navegação com menu fixo */
section[id] {
  scroll-margin-top: 90px;
}

@media (max-width: 991px) {
  section[id] {
    scroll-margin-top: 70px;
  }
}

@media (max-width: 576px) {
  section[id] {
    scroll-margin-top: 60px;
  }
}

/* Estilos para Páginas Internas */
.pagina-interna {
  background-color: #f9f9f9;
}

.pagina-header {
  background: linear-gradient(135deg, #F3A746 0%, #E45005 100%);
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  margin-bottom: 20px;
}

.pagina-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.2) 100%);
}

.pagina-header h1 {
  font-size: 2.8rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.7);
}

.pagina-conteudo {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

/* Estilos para o conteúdo de texto das páginas */
.texto {
  text-align: left;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
}

.texto p {
  margin-bottom: 1.2rem;
}

.texto h2, .texto h3, .texto h4 {
  font-weight: 600;
  margin-top: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.texto h2 {
  font-size: 1.8rem;
  color: var(--cor-principal);
}

.texto h3 {
  font-size: 1.5rem;
}

.texto a {
  color: var(--cor-principal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.texto a:hover {
  border-bottom-color: var(--cor-principal);
}

.texto ul, .texto ol {
  margin-bottom: 1.2rem;
  padding-left: 1.2rem;
}

.texto li {
  margin-bottom: 0.5rem;
}

.texto img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.texto blockquote {
  border-left: 4px solid var(--cor-principal);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background-color: rgba(233, 102, 18, 0.05);
  font-style: italic;
}

/* Estilos para figuras e legendas */
.texto figure.image {
  display: inline-block;
  margin: 1.5rem 0;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.texto figure.align-left {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
  max-width: 50%;
}

.texto figure.align-right {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  max-width: 50%;
}

.texto figure.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}

.texto figure.image img {
  margin: 0;
  box-shadow: none;
  border-radius: 0;
  width: 100%;
}

.texto figure.image figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  padding: 0.6rem;
  border-top: 1px solid #f0f0f0;
  background-color: #fafafa;
}

@media (max-width: 768px) {
  .pagina-header h1 {
    font-size: 2rem;
  }
  
  .texto figure.align-left,
  .texto figure.align-right {
    float: none;
    margin: 1rem 0;
    max-width: 100%;
  }
  
  .texto figure.align-center {
    max-width: 100%;
  }
}

/* Separador decorativo para páginas */
.separador-decorativo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.separador-decorativo .linha {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(233, 102, 18, 0.1), rgba(233, 102, 18, 0.5));
}

.separador-decorativo .icone {
  margin: 0 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(233, 102, 18, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 5px rgba(233, 102, 18, 0.05);
}

.separador-decorativo .icone i {
  font-size: 1.2rem;
}

/* Seção CTA nas páginas internas */
.pagina-cta {
  background: linear-gradient(135deg, #5B76CE 0%, #43A9D6 100%);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  position: relative;
}

.pagina-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.4), rgba(255,255,255,0.2));
}

.pagina-cta h3 {
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pagina-cta .btn-light {
  color: #4a73c7;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pagina-cta .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Estilos do Swiper para a seção de depoimentos */ 


.swiper-depoimentos .swiper-slide-prev,
.swiper-depoimentos .swiper-slide-next {
  opacity: 0.8;
  transform: scale(0.9);
}

/* Redefina completamente os botões de navegação */
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px !important;
  height: 44px !important;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 20 !important;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
  color: var(--cor-principal);
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--cor-principal);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: white;
}

.swiper-pagination {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--cor-principal);
  opacity: 0.5;
  margin: 0 5px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--cor-principal);
}
 