/**
* Template Name: Arsha - v4.3.0
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #0378a6;
  text-decoration: none;
}

a:hover {
  color: #0378a6;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", sans-serif;
  font-size: 1.5em; /* Ajuste o valor conforme necessário */
}

h1 {
  font-size: 200px; /* Tamanho específico para h1 */
}

h2 {
  font-size: 2.5em; /* Tamanho específico para h2 */
}

h3 {
  font-size: 2em; /* Tamanho específico para h3 */
}

h4 {
  font-size: 1.75em; /* Tamanho específico para h4 */
}

h5 {
  font-size: 1.5em; /* Tamanho específico para h5 */
}

h6 {
  font-size: 1.25em; /* Tamanho específico para h6 */
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #022859;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #022859;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0378a6;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #0378a6;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* Garantir que o cabeçalho fique fixo e com fundo azul */
#header {
  background-color: #022859; /* Azul */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; /* Garante que o cabeçalho fique sobre outros elementos */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para destacar o cabeçalho */
  display: flex;
  justify-content: center; /* Centraliza o conteúdo horizontalmente */
  align-items: center; /* Centraliza o conteúdo verticalmente */
  height: 80px; /* Definindo altura fixa para o cabeçalho */
  
}

#header .container {

  display: flex;
  justify-content: space-between;  /* Alinha logo e menu nos extremos */
  align-items: center; /* Alinha verticalmente */
  padding-top: 15px;  /* Ajuste o valor conforme necessário */
  padding-bottom: 10px; /* Ajuste para não ficar muito apertado */
  margin-top: -10px;
}

body {
  padding-top: 80px; /* Ajuste conforme a altura do seu cabeçalho */
}

#header .logo img {
  height: 60px; /* Ajuste a altura da logo para o tamanho que você preferir */
  margin-top: -0px; /* Ajuste o valor de margin-top para empurrar a logo mais para cima ou para baixo */
}

 @media (max-width: 768px) {
    .top-bar {
      font-size: 16px;
      height: auto;
      padding: 8px;
      line-height: 1.2;
      flex-wrap: wrap;
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .top-bar {
      font-size: 14px;
      padding: 6px;
    }
  }


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding-top: 10px; /* Ajuste para aumentar ou diminuir a distância do topo */
  padding-bottom: 10px; /* Ajuste o padding inferior para o menu */
}

.navbar ul {
  display: flex;
  align-items: center; /* Alinha os itens verticalmente */
  margin-top: 15px;
}

.navbar a {
  padding-top: 5px; /* Ajuste o padding vertical */
  padding-bottom: 5px; /* Ajuste o padding vertical */
}


.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #0378a6;
}

.navbar .getstarted {
  padding: 6px 15px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #0378a6;
  font-weight: 600;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #0378a6;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 150px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0378a6;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #0378a6;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #022859;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #0378a6;
}

.navbar-mobile .getstarted {
  margin: 15px;
  color: #022859;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #0378a6;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section - Melhorado
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 80vh;
  background: #022859;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; /* Centraliza todo o conteúdo */
  padding: 20px;
}

/* Ajuste da altura automática */
@media (max-width: 1200px) {
  #hero {
    min-height: 70vh;
  }
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: clamp(36px, 8vw, 50px); /* Se adapta ao tamanho da tela */
  font-weight: 800;
  line-height: 1.2;
  color: #0378a6;
}

#hero h2 {
  color: rgb(255, 255, 255);
  margin-bottom: 30px;
  font-size: clamp(36px, 12vw, 70px); /* Se adapta ao tamanho da tela */
  font-weight: 400;
  text-align: left;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 1.8vw, 18px); /* Se adapta ao tamanho da tela */
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 5px; /* Espaçamento entre os botões */
  color: #fff;
  background: #0378a6;
}

#hero .btn-get-started:hover {
  background: #024d71;
}

#hero .btn-watch-video {
  font-size: clamp(12px, 1.8vw, 14px);
  display: flex;
  align-items: center;
  justify-content: center; /* Centraliza o ícone e o texto */
  transition: 0.5s;
  margin: 10px 5px; /* Espaçamento entre os botões */
  color: #fff;
  line-height: 1;
  margin-top: 15px; /* Ajuste para alinhar com o botão "Conheça a UP+" */
}

#hero .btn-watch-video i {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-right: 8px;
  transition: 0.3s;
}

#hero .btn-watch-video:hover i {
  color: #0378a6;
}

#hero .hero-img img {
  max-width: 90%; /* Evita que a imagem ultrapasse a tela */
  height: auto;
  margin-bottom: 20px; /* Espaçamento abaixo da imagem */
}

/* Melhor ajuste para telas entre 992px e 1200px (notebooks menores) */
@media (max-width: 1200px) {
  #hero {
    min-height: 75vh;
    padding: 15px;
  }
  #hero h1 {
    font-size: clamp(28px, 5vw, 80px);
  }
  #hero h2 {
    font-size: clamp(18px, 4vw, 32px);
  }
  #hero .hero-img img {
    max-width: 85%;
  }
}

/* Ajustes para telas entre 768px e 991px (tablets e alguns notebooks pequenos) */
@media (max-width: 991px) {
  #hero {
    min-height: 100vh;
  }
  #hero .hero-img img {
    width: 70%;
    max-width: 400px;
  }
}

/* Ajustes para telas muito pequenas, como celulares menores */
@media (max-width: 480px) {
  #hero {
    min-height: 85vh;
    padding: 10px;
    justify-content: flex-start; /* Alinha o conteúdo no topo */
  }

  #hero .hero-img img {
    max-width: 95%;
    margin-top: 20px; /* Espaçamento acima da imagem */
    margin-bottom: 20px; /* Espaçamento abaixo da imagem */
  }

  #hero h1 {
    font-size: clamp(28px, 8vw, 36px); /* Aumenta o tamanho da fonte */
    text-align: center; /* Centraliza o texto */
    margin-top: 10px; /* Espaçamento acima do título */
    margin-bottom: 10px; /* Espaçamento abaixo do título */
  }

  #hero h2 {
    font-size: clamp(18px, 6vw, 24px); /* Aumenta o tamanho da fonte */
    text-align: center; /* Centraliza o texto */
    margin-bottom: 20px; /* Espaçamento abaixo do subtítulo */
  }

  #hero .btn-get-started {
    font-size: clamp(14px, 4vw, 16px); /* Aumenta o tamanho da fonte */
    padding: 12px 24px; /* Aumenta o padding do botão */
    margin: 10px auto; /* Centraliza o botão */
    display: block; /* Garante que o botão ocupe a linha inteira */
  }

  #hero .btn-watch-video {
    font-size: clamp(14px, 4vw, 16px); /* Aumenta o tamanho da fonte */
    margin: 20px auto; /* Centraliza o botão e ajusta o espaçamento */
    display: block; /* Garante que o botão ocupe a linha inteira */
    text-align: center; /* Centraliza o texto */
  }

  #hero .btn-watch-video i {
    font-size: clamp(24px, 6vw, 32px); /* Aumenta o tamanho do ícone */
  }
}

/* Esconde todo o conteúdo do #hero no mobile */
@media (max-width: 767px) {
  #hero .container {
    display: none;
  }

  #hero {
    background: url('../images/hero-mobile.png') center center no-repeat;
    background-size: 100%; 
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    
  }
  
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #022859;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #0378a6;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Clientes
--------------------------------------------------------------*/
.clientes {
  padding: 12px 0;
  text-align: center;
}

.clientes-logo {
  width: 120px; /* Ajuste conforme necessário */
  height: auto;
  transition: all 0.4s ease-in-out;
  filter: grayscale(100%);
  object-fit: contain;
}

.clientes-logo:hover {
  filter: none;
  transform: scale(1.1);
}

/* Container do carrossel */
.carousel-container {
  width: 100%;
  overflow: hidden; /* Esconde o conteúdo que ultrapassa o container */
  position: relative;
  white-space: nowrap; /* Impede quebra de linha */
}

/* Trilha do carrossel (todas as imagens em uma única linha) */
.carousel-track {
  display: flex;
  gap: 40px; /* Adiciona espaçamento entre as imagens */
  width: calc((120px + 20px) * 48); /* Ajusta a largura total considerando o espaçamento */
  animation: slide 30s linear infinite;
}

/* Cada imagem ocupa um espaço fixo e não quebra linha */
.carousel-item {
  flex: 0 0 auto;
  width: 120px; /* Ajuste conforme necessário */
}

/* Animação de deslizamento */
@keyframes slide {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%); /* Move metade da lista para criar o efeito contínuo */
  }
}

/* Ajustes para mobile */
@media (max-width: 768px) {
  .clientes-logo {
      width: 80px; /* Reduz o tamanho no mobile */
  }
}
@media (max-width: 768px) {
  .clientes {
    margin-top: -60px; /* Ajuste conforme necessário */
  }
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
/* ======= ABOUT SECTION ======= */
.about {
  padding: 40px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.about .section-title h2 {
  font-weight: 800;
  font-size: 2.4rem;
  color: #002c5f;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.about .video-wrapper {
  position: relative;
  padding-bottom: 40%; /* antes era 56.25% — reduz a altura */
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  margin: 0 auto 40px;
  max-width: 900px; /* largura máxima controlada */
}


.about .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.about .about-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

.about .about-text p {
  margin-bottom: 20px;
}

.about .btn-saiba-mais {
  display: inline-block;
  background-color: #002c5f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.about .btn-saiba-mais:hover {
  background-color: #004b8e;
  transform: translateY(-3px);
}

/* ======= Responsividade ======= */
@media (max-width: 768px) {
  .about .section-title h2 {
    font-size: 2rem;
  }

  .about .about-text {
    padding: 0 20px;
    text-align: left;
  }

  /* 🔥 Moldura estilo celular */
  .about .video-phone-frame {
    position: relative;
    width: 280px;
    height: 500px;
    margin: 0 auto 40px;
    border: 10px solid #000;
    border-radius: 40px;
    background: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
  }

  .about .video-phone-frame::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    z-index: 2;
  }

  /* 🧩 Ajuste do vídeo dentro da moldura */
  .about .video-phone-frame iframe {
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 30px;
    display: block;
  }

  /* Remove padding e conflitos */
  .about .video-phone-frame .video-wrapper {
    position: static;
    padding: 0;
    height: 100%;
  }

  /* Esconde o vídeo padrão */
  .about .about-video {
    display: none;
  }
}

/* ======= Desktop mantém o padrão ======= */
@media (min-width: 769px) {
  .about .video-phone-frame {
    display: none;  
  }
}



/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

#why-us {
  padding-top: 100px;
}

.why-us .content {
  padding: 60px 100px 0 100px;
}

#why-us .container-fluid {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

#why-us .row {
  width: 100%;
  display: flex;
  justify-content: center;
}

#why-us .col-lg-7 {
  max-width: 100%;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #022859;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li + li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #0378a6;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #0378a6;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

/* Vídeo responsivo */
.video-container {
  position: relative;
  margin: 25px 0;
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

@media (min-width: 769px) {
  .video-container {
    width: 350px;
    height: 620px;
    margin: 25px auto;
  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
}

@media (max-width: 768px) {
  .video-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    margin: 20px auto;
  }

  .video-container iframe {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .video-container {
    height: auto;
    aspect-ratio: 9 / 16;
  }
}

/* Hover (somente desktop) */
@media (hover: hover) {
  .video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
}

.video-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 15px;
  font-size: 16px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-container:hover .video-title {
  opacity: 1;
}

/* --------------------------------
   🔧 RESPONSIVIDADE: Ajustes Mobile
----------------------------------*/

@media (max-width: 768px) {
  .why-us .accordion-list {
    padding: 0 20px 40px 20px;
  }

  .why-us .accordion-list li {
    padding: 18px;
  }

  .why-us .accordion-list a {
    font-size: 15px;
    line-height: 22px;
  }

  .why-us .accordion-list span {
    font-size: 16px;
  }

  .why-us .accordion-list p {
    font-size: 14px;
    line-height: 22px;
  }

  .why-us .content {
    padding: 40px 20px 0 20px;
  }

  .why-us .content h3 {
    font-size: 28px;
  }

  .why-us .content h4 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #022859;
  font-family: "Poppins", sans-serif;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #0378a6;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #022859;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #022859;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #0378a6;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #022859;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #0378a6;
}

.services {
  padding-top: 130px;
  position: relative;
}

.services  .section-heading p {
  margin-top: 10px;
  margin-left: 18%;
  margin-right: 18%;
}

.services .container-fluid {
  padding-left: 65px;
  padding-right: 65px;
}

.services:after {
  content: '';
  background-image: url(../images/services-left-dec.png);
  position: absolute;
  left: 0;
  bottom: -300px;
  width: 261px;
  height: 368px;
  z-index: 0;
}

.services:before {
  content: '';
  background-image: url();
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  width: 1136px;
  height: 244px;
  z-index: 0;
}

.services .section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.services .section-heading .line-dec {
  margin: 0 auto;
}

.service-item {
  position: relative;
  z-index: 1;
  padding: 30px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  background-color: #fff;
  border-radius: 10px;
  border-top-right-radius: 50px;
  transition: all .3s;
}

.service-item .icon {
  margin-left: 0px;
  margin-bottom: 30px;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  transition: all .3s;
}

.service-item h4 {
  transition: all .3s;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-item p {
  transition: all .3s;
  font-size: 15px;
  margin-bottom: 20px;
}

.service-item:hover h4,
.service-item:hover p,
.service-item:hover .text-button a {
  color: #fff;
}

.first-service .icon {
  background-image: url();
}

.first-service:hover .icon {
  background-image: url();
}

.second-service .icon {
  background-image: url();
}

.second-service:hover .icon {
  background-image: url();
}


.third-service .icon {
  background-image: url();
}

.third-service:hover .icon {
  background-image: url();
}

.fourth-service .icon {
  background-image: url();
}

.fourth-service:hover .icon {
  background-image: url();
}

.service-item:hover {
  background-image: url(../images/service-bg.png);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 40, 89, 1), rgba(2, 40, 89, 0.8)), url(../images/cta-bg.jpg) fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #0378a6;
  border: 2px solid #0378a6;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #0378a6;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.new-title-style h4 a {
  color: #fff !important; 
  font-size: 18px;
  font-weight: bold;
}

.new-title-style p a {
  color: #fff!important; 
  font-size: 14px;
}




.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #0378a6;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0378a6;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Feedback Details
--------------------------------------------------------------*/
.testimonials {
  text-align: center;
  padding: 30px;
  border-radius: 5px;
  background: #f8f9fa;
}

.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
}

.member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  display: flex;
  align-items: center;
  max-width: 600px; /* Tamanho máximo do card */
  margin: 0 auto; /* Centraliza o card */
}

.member .pic {
  overflow: hidden;
  width: 100px; /* Tamanho menor para a foto */
  height: 100px; /* Tamanho menor para a foto */
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0; /* Impede que a imagem diminua */
}

.member .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que a imagem cubra o espaço */
  transition: ease-in-out 0.3s;
}

.member:hover {
  transform: translateY(-10px);
}

.member .member-info {
  flex-grow: 1; /* Faz o texto ocupar o espaço restante */
}

.member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px; /* Tamanho menor para o nome */
  color: #37517e;
}

.member span {
  display: block;
  font-size: 14px; /* Tamanho menor para o cargo */
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.member p {
  margin: 10px 0 0 0;
  font-size: 14px; /* Tamanho menor para o texto */
  line-height: 1.5; /* Melhora a legibilidade */
}

/* Ajustes para telas pequenas (mobile) */
@media (max-width: 768px) {
  .member {
    flex-direction: column; /* Empilha o conteúdo verticalmente */
    text-align: center; /* Centraliza o texto */
    padding: 15px; /* Reduz o padding para telas pequenas */
  }

  .member .pic {
    display: none; /* Remove a imagem */
  }

  .member .member-info {
    width: 100%; /* Faz o texto ocupar 100% da largura */
  }

  .member h4 {
    font-size: 16px; /* Ajusta o tamanho da fonte do nome */
  }

  .member span {
    font-size: 12px; /* Ajusta o tamanho da fonte do cargo */
  }

  .member p {
    font-size: 12px; /* Ajusta o tamanho da fonte do texto */
  }
}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Garante que o botão fique no final */
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 30px;
  color: #022859;
  text-align: center;
}

.pricing h4 {
  font-size: 48px;
  color: #022859;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #0378a6;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

/* Estilo padrão do botão */
.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #0378a6;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  border: 1px solid #0378a6;
  text-align: center; /* Centraliza o texto dentro do botão */
  margin-top: auto; /* Garante que o botão fique no final */
}

.pricing .buy-btn:hover {
  background: #0378a6;
  color: #fff;
}

/*--------------------------------------------------------------
# Estilização do Card Destacado (Featured)
--------------------------------------------------------------*/

.pricing .featured {
  background-color: #022859; /* Fundo azul escuro */
  color: white; /* Texto branco */
  padding: 20px;
  border-radius: 10px;
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured ul,
.pricing .featured ul li {
  color: white; /* Mantém o texto dentro do card branco */
}

/* Estilo do botão dentro do card destacado */
.pricing .featured .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  background-color: #0378a6;
  color: #ffffff;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  text-align: center; /* Centraliza o texto dentro do botão */
  margin-top: auto; /* Garante que o botão fique no final */
}

.pricing .featured .buy-btn:hover {
  background: #02658b;
  border: 1px solid #02658b;
}

/*--------------------------------------------------------------
# Responsividade
--------------------------------------------------------------*/

/* Em telas menores que 992px */
@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

/* Em telas menores que 767px */
@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

/* Em telas menores que 420px */
@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #0378a6;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #022859;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #0378a6;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #0378a6;
  border-bottom: 3px solid #0378a6;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #0378a6;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #022859;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #0378a6;
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #0378a6;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #0378a6;
  border-bottom: 3px solid #0378a6;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #0378a6;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #0378a6;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #209dd8;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #022859;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #022859;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #022859;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #022859;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #0378a6;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #02658b;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #022859;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #022859;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #0378a6;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #0378a6;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0378a6;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  padding-left: .5rem;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}
#services .row {
  display: flex;
  justify-content: center; /* Alinha as colunas horizontalmente no centro */
  align-items: center; /* Alinha as colunas verticalmente no centro, caso necessário */
}

/* Opcional: ajuste de margens e tamanhos para garantir uma boa aparência */
.icon-box {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  background-color: #f8f9fa;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-box h4 {
  margin-top: 15px;
  font-size: 18px;
}

.icon-box p {
  font-size: 14px;
  color: #666;
}
/* Estilos para o slider de imagens */
.swiper-container {
  width: 100%;
  height: 500px;  /* Ajuste de altura para que a imagem tenha um bom tamanho */
  margin-bottom: 30px; /* Espaço abaixo do slider */
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Para garantir que a imagem ocupe o espaço corretamente sem distorcer */
  display: block; /* Garantir que a imagem seja exibida corretamente */
}

/* Estilo para as informações do projeto (lateral) */
.portfolio-info {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
}

.portfolio-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.portfolio-info ul {
  list-style-type: none;
  padding: 0;
}

.portfolio-info ul li {
  margin-bottom: 10px;
}

.portfolio-info ul li strong {
  font-weight: bold;
}

/* Aplicando Flexbox para alinhar os parágrafos lado a lado */
.row.content {
  display: flex;
  justify-content: space-between; /* Distribui os itens igualmente */
  gap: 30px; /* Espaçamento entre os elementos */
}

.row.content .col-lg-6 {
  flex: 1; /* Garante que cada coluna ocupe metade da largura */
}

.row.content .col-lg-6 p {
  margin-bottom: 20px; /* Espaço abaixo de cada parágrafo */
}

.btn-learn-more {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #022859;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.btn-learn-more:hover {
  background-color: #022859;
}
/* Personalizando os ícones */
.services .service-item .icon {
  font-size: 3rem; /* Tamanho dos ícones */
  color: #022859; /* Cor dos ícones */
  margin-bottom: 20px;
  text-align: center; /* Alinha o ícone ao centro */
}

.services .service-item .icon i {
  transition: color 0.3s ease; /* Transição suave para mudança de cor */
}

.services .service-item:hover .icon i {
  color: #0378a6; /* Muda a cor do ícone ao passar o mouse */
}

/* Estilo básico para o paginador */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.pagination li {
  margin: 0 5px;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 16px;
  background-color: #022859;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.pagination a:hover,
.pagination span.active {
  background-color: #209dd8;
  cursor: pointer;
}

.pagination span.disabled {
  background-color: #ddd;
  cursor: not-allowed;
  color: #aaa;
}

/* Adicionar espaçamento entre os itens */
.pagination .page-item {
  display: inline-block;
}

.pagination .page-item:first-child a {
  border-radius: 4px 0 0 4px;
}

.pagination .page-item:last-child a {
  border-radius: 0 4px 4px 0;
}

/* Estilos gerais */
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
}

.no-results, .no-content {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  background-color: #f8f9fa;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.no-results-title, .no-content-title {
  font-size: 24px;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 10px;
}

.no-results-description, .no-content-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* Botões */
.no-results-btn, .no-content-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  color: white;
  background-color: #2980b9;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.no-results-btn:hover, .no-content-btn:hover {
  background-color: #2980b9;
}

.no-results-btn:focus, .no-content-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.5);
}
/* Blog and Portfolio Container */
.portfolio-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Individual Portfolio Item */
.portfolio-item {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  width: calc(33.333% - 20px); /* 3 items per row */
}

.portfolio-item:hover {
  transform: scale(1.05);
}

.portfolio-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.portfolio-info {
  padding: 15px;
  text-align: center;
}

.portfolio-info h4 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 10px 0;
}

.portfolio-info p {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.portfolio-link a {
  display: inline-block;
  padding: 8px 15px;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.portfolio-link a:hover {
  background-color: #2980b9;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.pagination a {
  padding: 8px 12px;
  background-color: #3498db;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.pagination a:hover {
  background-color: #2980b9;
}

/* Responsivity */
@media (max-width: 991px) {
  .portfolio-item {
      width: calc(50% - 20px); /* 2 itens per row */
  }
}

@media (max-width: 767px) {
  .portfolio-item {
      width: 100%; /* 1 item per row */
  }
}
/* Garantir que cada item de serviço tenha a mesma altura */
.service-item {
  display: flex;
  flex-direction: column; /* Para garantir que o conteúdo seja empilhado verticalmente */
  justify-content: space-between; /* Distribui o conteúdo de forma que o ícone e o texto fiquem alinhados */
  height: 100%; /* Faz com que todos os itens de serviço tenham a mesma altura */
  background-color: #f8f9fa; /* Um fundo claro, pode ser alterado conforme o design */
  padding: 20px; /* Espaçamento interno */
  border-radius: 8px; /* Bordas arredondadas */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra para destacar */
  text-align: center; /* Centraliza o texto */
}

/* Estilo para o ícone (você pode personalizar com ícones de sua escolha) */
.service-item .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #0378a6; /* Cor do ícone */
}

/* Ajustar a aparência do botão */
.text-button a {
  color: #0378a6;
  text-decoration: none;
  font-weight: bold;
}

.text-button a:hover {
  text-decoration: underline;
}

.row {
  margin: 0;
}

.container {
  margin-top: 50px;
}



.flash-message {
  position: fixed;
  top: 80px; /* Ajuste para ficar abaixo do menu */
  right: 20px;
  padding: 10px 20px;
  background-color: #ff0015d0; /* Cor de fundo de erro */
  color: #ffffff; /* Cor do texto de erro */
  border: 1px solid #ffffff; /* Borda de erro */
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none; /* Inicialmente oculto */
}

.flash-message.success {
  background-color: #28a745; /* Cor de fundo de sucesso */
  color: #ffffff; /* Cor do texto de sucesso */
  border: 1px solid #ffffff; /* Borda de sucesso */
}

.flash-message p {
  margin: 0;
}

.flash-message.show {
  display: block;
}

/*--------------------------------------------------------------*/
/* Cliente Count Section - Responsivo */
/*--------------------------------------------------------------*/
#client-count {
  display: flex;
  flex-direction: column; /* Organiza os elementos verticalmente */
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Garante que a seção ocupe pelo menos a altura da tela */
  width: 100%;
  padding: 20px; /* Adiciona um padding para evitar sobreposição */
  text-align: center; /* Centraliza tudo dentro do container */
  background-color: #fff; /* Adiciona um fundo branco para garantir visibilidade */
}

/*--------------------------------------------------------------*/
/* Ajustando a imagem para telas menores */
/*--------------------------------------------------------------*/
#client-count .pessoas-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  animation: levitate 3s ease-in-out infinite;
  max-width: 100%; /* Diminui um pouco o tamanho geral da imagem */
}

@media (max-width: 768px) {
  #client-count .pessoas-img {
    max-width: 100%; /* Em telas pequenas, reduz a imagem */
  }
}

@media (max-width: 480px) {
  #client-count .pessoas-img {
    max-width: 100%; /* Em celulares pequenos, reduz ainda mais */
  }
}

/*--------------------------------------------------------------*/
/* Animação de levitação (mantida) */
/*--------------------------------------------------------------*/
@keyframes levitate {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/*--------------------------------------------------------------*/
/* Ajuste no contador - Responsivo */
/*--------------------------------------------------------------*/
#client-count .count-box {
  font-size: clamp(40px, 8vw, 100px); /* Agora o tamanho do número se ajusta */
  font-weight: bold;
  color: #022859;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
  padding: 10px 0;
  margin-top: 20px; /* Adiciona margem para evitar sobreposição */
}

#client-count .count-box p {
  font-size: clamp(16px, 3vw, 20px); /* Ajusta o tamanho do texto secundário */
  color: #022859;
  margin-top: 10px; /* Ajusta a margem para evitar sobreposição */
}

/*--------------------------------------------------------------*/
/* Ajustes para telas menores (tablets e celulares) */
/*--------------------------------------------------------------*/
@media (max-width: 768px) {
  #client-count {
    height: auto; /* Permite que o contêiner cresça conforme necessário */
    padding: 50px 20px;
  }

  #client-count .count-box {
    font-size: clamp(30px, 6vw, 80px); /* Menor em tablets */
  }
}

@media (max-width: 480px) {
  #client-count .count-box {
    font-size: clamp(60px, 5vw, 80px); /* Ainda menor em celulares */
  }
}

/*--------------------------------------------------------------*/
/* Ajustes para o título - Responsivo */
/*--------------------------------------------------------------*/
#client-count h2 {
  font-size: clamp(24px, 5vw, 36px); /* Título responsivo */
  color: #022859;
  margin-bottom: 20px; /* Adiciona margem inferior para evitar sobreposição */
  padding-top: 20px; /* Adiciona espaço acima do título */
}

/*--------------------------------------------------------------*/
/* Ajustes para o subtítulo - Responsivo */
/*--------------------------------------------------------------*/
#client-count h3 {
  font-size: clamp(18px, 4vw, 24px); /* Subtítulo responsivo */
  color: #022859;
  margin-bottom: 30px; /* Adiciona margem inferior para evitar sobreposição */
}
/*--------------------------------------------------------------
# Pop' Up
--------------------------------------------------------------*/

/* Camada de fundo escurecido */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Fundo escurecido */
  z-index: 999;
}

/* Estilo do pop-up */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; /* Largura total do pop-up */
  height: 400px; /* Definindo uma altura fixa */
  background-color: #022859;
  border-radius: 20px; /* Aumentado para bordas arredondadas */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex; /* Para exibir os elementos lado a lado */
}

/* O conteúdo do pop-up dentro do flexbox */
.popup-inner {
  display: flex;
  width: 100%;
  height: 100%;
}

/* Estilo da imagem */
.popup-left {
  width: 50%; /* A imagem ocupa metade da largura */
  height: 100%; /* A altura será 100% para preencher a altura do pop-up */
  overflow: hidden; /* Garante que a imagem não ultrapasse o contêiner */
  border-radius: 20px; /* Arredondando as bordas da imagem */
}

.popup-image {
  width: 100%; /* A imagem ocupa 100% da largura do contêiner */
  height: 100%; /* A imagem ocupa 100% da altura do contêiner */
  object-fit: cover; /* Ajusta a imagem sem distorcer */
}

/* Estilo do formulário */
.popup-right {
  width: 50%; /* O formulário ocupa a outra metade da largura */
  height: 100%; /* O formulário ocupa 100% da altura */
  padding: 20px; /* Adiciona espaçamento interno ao formulário */
  box-sizing: border-box; /* Para incluir o padding na largura e altura */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Alinha o conteúdo do formulário verticalmente */
  background-color: #022859; /* Cor de fundo para o formulário */
  border-radius: 20px; /* Arredondando as bordas do formulário */
}

/* Estilo do texto antes do formulário */
.popup-right p {
  color: white; /* Cor do texto em branco */
  text-align: center; /* Centraliza o texto */
  font-size: 20px; /* Aumenta o tamanho da fonte */
  font-weight: bold; /* Torna o texto mais forte, se necessário */
  margin-bottom: 20px; /* Espaçamento abaixo do texto */
}

/* Estilo do formulário */
.popup-right form {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Espaço entre os campos do formulário */
}

.popup-right input[type="email"] {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.popup-right input[type="submit"] {
  padding: 10px;
  font-size: 16px;
  background-color: #0378a6;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.popup-right input[type="submit"]:hover {
  background-color: #0378a6;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
}

/* Responsividade para telas pequenas */
@media (max-width: 768px) {
  .popup {
    width: 90%; /* Reduz a largura para 90% da tela */
    max-width: none; /* Remove o limite máximo da largura */
    height: auto; /* Altura automática */
    max-height: 50%; /* Limita a altura para 50% da tela */
    border-radius: 20px; /* Mantém as bordas arredondadas no mobile */
  }

  .popup-inner {
    flex-direction: column; /* Empilha a imagem e o formulário no mobile */
  }

  .popup-left {
    width: 104%; /* A imagem ocupa 100% da largura no mobile */
    height: 500px; /* Definindo uma altura fixa para a imagem */
  }

  .popup-right {
    width: 100%; /* O formulário ocupa 100% da largura */
    padding: 15px; /* Ajuste no padding para telas pequenas */
    border-radius: 20px; /* Mantém as bordas arredondadas no formulário */
  }

  .popup-right p {
    font-size: 18px; /* Ajusta o tamanho da fonte para mobile */
  }

  .popup-right input[type="email"],
  .popup-right input[type="submit"] {
    font-size: 14px; /* Ajusta o tamanho da fonte para campos de entrada */
  }
}


/* Responsividade para telas pequenas referente aos cards da home que fala dos beneficios*/
@media (max-width: 768px) {
  .col-lg-3, .col-md-6 {
      margin-bottom: 20px; /* Adiciona um espaçamento entre as colunas */
  }

  .row {
      margin-left: -15px;
      margin-right: -15px;
  }

  .col-lg-3, .col-md-6 {
      padding-left: 15px;
      padding-right: 15px;
  }

  .service-item {
      margin-bottom: 20px; /* Reduz o espaço entre os cards no mobile */
  }
}

/* MOBILE TEAM NO ABOUT*/
@media (max-width: 768px) {
  .carousel-inner {
      width: 100%;
      overflow: hidden;
  }
  .carousel-item {
      width: 100%;
      flex: 0 0 auto; /* Garante que o carrossel mostre um item por vez */
  }
}

/* POLÍTICA DE PRIVACIDADE */

/* Estilos para a paginação */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active {
  background-color: #717171;
}

/* ---- Container Principal ---- */
#privacy_policy .col-lg-8 {
  position: relative;
  width: 100%;
  max-width: 800px; /* Largura máxima */
  height: 0;
  padding-bottom: 100%; /* Proporção A4 (1:1.414) - 100/70.7 ≈ 141.4% */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  background: white; /* Fundo branco como papel */
  margin: 0 auto; /* Centraliza */
}

/* Container das imagens - preenche todo o espaço */
.img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

/* Estilo para cada imagem */
.img-container img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Mantém proporção sem cortar */
  background: white; /* Fundo branco */
  padding: 20px; /* Margem interna como em um documento */
  display: none; /* Escondido por padrão */
}

/* Apenas a imagem ativa é mostrada */
.img-container img.active {
  display: block;
}

/* Adicione isso para melhor legibilidade do conteúdo */
.img-container img {
  box-sizing: border-box;
}

/* Ajuste para conteúdo A4 */
@media (max-width: 768px) {
  #privacy_policy .col-lg-8 {
    max-width: 100%;
    border-radius: 0;
    padding-bottom: 100%; /* Mantém proporção mesmo em mobile */
  }
  
  .img-container img {
    padding: 10px; /* Menos padding em telas pequenas */
  }
}
/* Navegação */
.nav-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  transform: translateY(-50%);
  z-index: 10;
}

.nav-buttons button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Paginação */
.dots-container {
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #333;
}


/* ESTILO PARA O BANNER DOS COOKIE*/
#cookie-banner {
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  color: #333;
}

#cookie-banner button {
  margin: 5px;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

#accept-cookies {
  background: #022859;
  color: #fff;
}

#seemore-cookies {
  background: #6c757d;
  color: #fff;
}
.not-found-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f8f9fa;
  text-align: center;
}

.not-found-content {
  max-width: 500px;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.error-code {
  font-size: 80px;
  color: #dc3545;
  margin-bottom: 10px;
}

h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

p {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 20px;
}

.btn-home {
  display: inline-block;
  background: #28a745;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-home:hover {
  background: #218838;
}
/*--------------------------------------------------------------
# HotPager Section
--------------------------------------------------------------*/
#hotpager {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  min-height: 100vh;
  background: #022859;
  flex-direction: column;
  padding: 40px 0;
  position: relative;
  overflow: visible;
}

#hotpager .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Ajuste para mobile - inverte a ordem do texto e vídeo */
@media (max-width: 768px) {
  #hotpager .container {
    flex-direction: column;
  }
  
  .text-wrapper {
    order: 3; /* Texto vai para baixo */
  }
  
  .video-wrapper {
    order: 2; /* Vídeo sobe para o meio */
  }
  
  .image-wrapper {
    order: 1; /* Imagem mantém no topo */
  }
}

/* O restante do seu CSS permanece exatamente igual */
.image-wrapper {
  margin-top: 0;
  z-index: 1;
}

.image-wrapper img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  padding-top: 0;
}

.text-wrapper {
  margin-top: 20px;
}

.text-wrapper h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 800;
  line-height: 56px;
  color: #fff;
}

.text-wrapper h2 {
  color: #fff;
  margin: 15px 0 0;
  font-size: 36px;
  font-weight: 400;
}

.video-wrapper {
  width: 100%;
  padding: 0 20px;
  margin-top: 30px;
}

.floating-video {
  width: 100%;
  max-width: 900px;
  height: 506px;
  border-radius: 20px;
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border: none;
}

/* Ajustes para telas grandes */
@media (min-width: 1600px) {
  .floating-video {
    max-width: 1000px;
    height: 563px;
  }
}

/* Ajustes para tablets */
@media (max-width: 992px) {
  .floating-video {
    max-width: 700px;
    height: 394px;
  }
  
  .text-wrapper h1 {
    font-size: 48px;
  }
  
  .text-wrapper h2 {
    font-size: 32px;
  }
}

/* Ajustes para mobile */
@media (max-width: 768px) {
  #hotpager {
    min-height: auto;
    padding: 20px 0;
  }
  
  .image-wrapper img {
    max-height: 150px;
  }
  
  .floating-video {
    max-width: 100%;
    height: 300px;
    
  }
  
  .text-wrapper h1 {
    font-size: 36px;
    line-height: 40px;
  }
  
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 10px;
  }
}

/* Ajustes para celulares pequenos */
@media (max-width: 480px) {
  .floating-video {
    height: 250px;
  }
  
  .text-wrapper h1 {
    font-size: 32px;
  }
  
  .text-wrapper h2 {
    font-size: 20px;
  }
}
/*--------------------------------------------------------------
# HotContact Section
--------------------------------------------------------------*/
.hotcontact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 80vh;
  background: #022859;
  padding: 50px 0; /* Alterado de 20px para 0 no padding lateral */
}

.hotcontact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px; /* Adicionado padding interno no container */
}

.hotcontact-text {
  flex: 1;
  max-width: 50%;
  color: #fff;
  padding: 0 20px; /* Adicionado padding para alinhar com o card */
}
.hotcontact .cta-text{
  color: #fff;
}

/* Responsividade */
@media (max-width: 768px) {
  .hotcontact {
    padding: 30px 0; /* Reduzido padding vertical e removido horizontal */
  }
  
  .hotcontact-container {
    flex-direction: column;
    padding: 0 15px; /* Reduzido padding no mobile */
  }
  .hotcontact-text {
    max-width: 100%;
    padding: 0 10px; /* Padding reduzido */
    margin-top: 20px;
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
  .hotcontact-card {
    padding: 25px 15px; /* Padding ainda menor */
  }
  
  .hotcontact-text {
    padding: 0 5px;
  }
}
/*--------------------------------------------------------------
# HotFeedbacks Section
--------------------------------------------------------------*/
.hotfeedbacks {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-height: 0;
  background: #022859;
  padding: 30px 20px;
  color: #ffffffff;
  flex-direction: column; /* Coloca o conteúdo em coluna por padrão */
}

.feedback-title {
  text-align: center; /* Centraliza o texto no mobile */
  margin-bottom: 30px; /* Espaçamento entre o título e os cards */
}

.feedback-title h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.feedback-title h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0378a6;
  color: #ffffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #025f87; /* Cor alterada no hover */
}

.carrossel-container {
  width: 100%;
  max-width: 400px;
  overflow: hidden;
}

.carrossel {
  display: flex;
  transition: transform 0.5s ease;
}

.card {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 20px;
  background-color: #ffffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 10px;
  color: #0378a6;
}

.card p {
  font-size: 16px;
  line-height: 1.5;
}

.card span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #0378a6;
}

/* Responsividade */
@media (min-width: 768px) {
  .hotfeedbacks {
    flex-direction: row; /* Volta ao layout original em telas maiores */
    align-items: flex-start; /* Alinha o título e o carrossel no topo */
  }

  .feedback-title {
    flex: 0 0 30%;
    text-align: left; /* Alinha o texto à esquerda em telas maiores */
    margin-bottom: 0; /* Remove o espaçamento entre o título e os cards */
  }

  .card {
    flex: 0 0 30%; /* Ajusta a largura dos cards em telas maiores */
  }
}

/* Ajustes para mobile */
@media (max-width: 767px) {
  .carrossel-container {
    padding-right: 20px; /* Adiciona margem no lado direito apenas no mobile */
  }

  .carrossel {
    padding-right: 20px; /* Adiciona margem no lado direito apenas no mobile */
  }
}

#obrigado {
    width: 100%;
    min-height: 100%; /* Reduzido para evitar cortes em telas menores */
    background: linear-gradient(rgba(2, 40, 89, 1), rgba(2, 40, 89, 0.8)), url(../images/cta-bg.jpg) fixed center center;
    background-size: cover;
    padding: 50px 20px; /* Ajustado para telas menores */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; /* Centraliza tudo por padrão */
}

/* === SECTION: Tanks eBook === */
#tanks-ebook {
  width: 100%;
  background: 
    linear-gradient(rgba(2, 40, 89, 1), rgba(2, 40, 89, 0.8)),
    url(../images/cta-bg.jpg) center center no-repeat;
  background-size: cover; /* cobre toda a área sem repetir */
  color: #fff;
  text-align: center;
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

#tanks-ebook h2 {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 25px;
}

#tanks-ebook h2 strong {
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

#tanks-ebook p {
  font-size: 1.1rem;
  margin-top: 15px;
  margin-bottom: 40px;
  color: #dcdcdc;
}

/* === BOTÃO === */
#tanks-ebook .btn-get-started {
  display: inline-block;
  background: #0378a6;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(11, 117, 217, 0.4);
}

#tanks-ebook .btn-get-started:hover {
  background: #0378a6;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(11, 117, 217, 0.4);
  color: #fff;
}

/* === RESPONSIVO === */
@media (max-width: 768px) {
  #tanks-ebook {
    padding: 80px 15px;
  }

  #tanks-ebook h2 {
    font-size: 1.4rem;
  }

  #tanks-ebook .btn-get-started {
    font-size: 1rem;
    padding: 14px 35px;
  }
}

