/* 
estilos de fonts para estrutura do site
*/
/* Poppins font-family (local files). Using TTF as fallback; convert to WOFF2 for better perf */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Thin.woff2') format('woff2'),
    url('../fonts/Poppins/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* Icons color specifically for the Sobre page (#sobre) */
/* Use !important to override utility classes like .text-primary when needed */
#sobre .icon-box i,
#sobre .card i,
#sobre i.fas,
#sobre i.far,
#sobre i.fab,
#sobre .fa {
  color: #0B496A !important;
}

/* Keep CTA button icon white inside Sobre (override the above) */
#sobre .btn-saiba-mais i,
#sobre a.btn-saiba-mais i,
#sobre .btn.btn-saiba-mais i {
  color: #fff !important;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-ExtraLight.woff2') format('woff2'),
    url('../fonts/Poppins/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Light.woff2') format('woff2'),
    url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Regular.woff2') format('woff2'),
    url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Medium.woff2') format('woff2'),
    url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-SemiBold.woff2') format('woff2'),
    url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Bold.woff2') format('woff2'),
    url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-ExtraBold.woff2') format('woff2'),
    url('../fonts/Poppins/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Black.woff2') format('woff2'),
    url('../fonts/Poppins/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Lato font-family (local files) */
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/Lato-Light.woff2') format('woff2'),
    url('../fonts/Lato/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/Lato-Regular.woff2') format('woff2'),
    url('../fonts/Lato/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/Lato-Bold.woff2') format('woff2'),
    url('../fonts/Lato/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/Lato-Black.woff2') format('woff2'),
    url('../fonts/Lato/Lato-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Montserrat (use the available static WOFF2 files) */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Thin.woff2') format('woff2'),
    url('../fonts/Montserrat/Montserrat-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* Open Sans (use the available static WOFF2 files) */
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans/OpenSans-Regular.woff2') format('woff2'),
    url('../fonts/OpenSans/OpenSans-Regular.ttf') format('truetype');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}/* Header padrão */
header#mainHeader.navbar-fixed-top,
header#mainHeader.sticky-top {
  width: 100%;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.7) !important; /* força contra Bootstrap */
  font-family: 'Poppins', 'Lato', 'Montserrat', sans-serif;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
  z-index: 999;
}

/* Logo dentro do header */
header#mainHeader .navbar-brand img {
  max-height: 40px;
  display: block;
  transition: transform 0.3s ease;
}
header#mainHeader .navbar-brand img:hover {
  transform: scale(1.05);
}

/* Blur ao rolar */
header#mainHeader.blur {
  background-color: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Links */
header#mainHeader .navbar-nav .nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #333;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

header#mainHeader .navbar-nav .nav-link:hover {
  color: #0B496A;
}

header#mainHeader .navbar-nav .nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #0B496A;
  transition: width 0.3s;
  margin-top: 2px;
}

header#mainHeader .navbar-nav .nav-link:hover::after,
header#mainHeader .navbar-nav .nav-link.active::after {
  width: 100%;
}

header#mainHeader .navbar-nav .nav-link.active {
  font-weight: 600;
  color: #0B496A !important;
}

/* Botão hamburguer */
header#mainHeader .navbar-toggler {
  border: none;
}
header#mainHeader .navbar-toggler:focus {
  box-shadow: none;
}
header#mainHeader .navbar-toggler-icon {
  filter: invert(30%);
}

/* Responsividade */
@media (max-width: 991px) {
  header#mainHeader .navbar-collapse {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.75)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 12px 12px;
    padding: 1rem;
  }

  header#mainHeader .navbar-nav .nav-link {
    text-align: center;
    padding: 0.75rem 1rem;
  }
}


/* 
*estilos do scrollbar do site
*/
/* Estiliza a trilha (fundo da barra) */
::-webkit-scrollbar {
  width: 8px;
}

/* Estiliza o fundo da barra */
::-webkit-scrollbar-track {
  background: #d9dbdd00;
}

/* Estiliza o "thumb" (ícone que desliza) */
::-webkit-scrollbar-thumb {
  background-color: #0B496A;
  border-radius: 4px;
  border: 2px solid #f0f0f0;
}

/* Hover no thumb */
::-webkit-scrollbar-thumb:hover {
  background-color: #0B496A;
}
/* Firefox */
html {
  scrollbar-color: #0B496A #f0f0f0;
  scrollbar-width: thin;
}

/* 
*
* Estilo do botão fixo no footer do fale conosco do whatsApp
*/
/* Botão principal */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  z-index: 1000;
  animation: pulse 2.5s infinite ease-in-out;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Tooltip */
.whatsapp-tooltip {
  visibility: hidden;
  opacity: 0;
  background-color: #333;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  position: absolute;
  bottom: 70px;
  right: 0;
  transform: translateX(-10%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateX(-10%) translateY(-5px);
}

/* Animação suave do botão */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}


/* 
estilos de css da section ferragens
@author: Tiago Ferreira
*/
#ferragens {
  /* background-color: #EAEAEA;; */
  padding: 60px 0;
}

#title-ferragens {
  color: #325665;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 85px;
  letter-spacing: 3px;
  font-size: calc(1.325rem + .9vw)
}

/* Divider implemented as a pseudo-element to avoid extra markup */
#title-ferragens::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  background: currentColor;
  margin: 0.6rem auto 1.6rem auto;
  border-radius: 4px;
}

@media (max-width: 767.98px) {
  #title-ferragens::after {
    width: 56px;
    height: 3px;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }
}

/* Aplica estilo a todas as imagens dentro da seção de ferragens */
#ferragens img {
  border-radius: 12px !important;
  /* mantém o arredondamento delicado */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
  /* sombra mais forte */
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

#ferragens img:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25) !important;
  /* sombra ainda mais evidente no hover */
}

.second-title {
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.second-description {
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  /* Remove underline when used on links like 'Ver mais...' */
  text-decoration: none;
}

/* Espaçamento entre imagem e texto no mobile */
@media (max-width: 767.98px) {
  #ferragens img {
    margin-bottom: 1.5rem;
  }

  .second-title {
    text-align: center;
    font-size: 1.4rem;
  }

  .second-description {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
}

.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-section.from-left {
  transform: translateX(-50px);
}

.fade-section.from-right {
  transform: translateX(50px);
}

.fade-section.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Delays progressivos — imagem antes, texto depois */
.fade-section.visible img {
  transition-delay: 0s;
}

.fade-section.visible h3 {
  transition-delay: 0.2s;
}

.fade-section.visible p {
  transition-delay: 0.4s;
}

/* Mobile ajustes */
@media (max-width: 767.98px) {
  .fade-section {
    transform: translateY(40px);
  }
}

/* Botão "saiba mais" */
.btn-saiba-mais-ferragens {
  position: relative;
  overflow: hidden;
  background-color: #325665;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 0.9rem 1.5rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  z-index: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: none;
  text-align: center;
  /* display: flex; */
  justify-content: center;
  align-items: center;
}

.btn-saiba-mais-ferragens::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -200px;
  width: 100px;
  height: 400px;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg);
  z-index: 1;
  transition: all 1.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn-saiba-mais-ferragens:hover::before {
  left: 160%;
}

.btn-saiba-mais-ferragens:hover,
.btn-saiba-mais-ferragens.active {
  background-color: #27444f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(50, 86, 101, 0.25);
  color: #fff;
}
/* 
estilos de css da section diferenciais
@author: Tiago Ferreira
*/
/* =============================
   ESTILO BASE DA SEÇÃO
============================= */
#diferenciais {
  background-color: #eeeeee;
  color: #000000;
  overflow: hidden;
}

.diferenciais-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 767.98px) {
  .diferenciais-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 10px;
  }

  .diferenciais-menu .btn-saiba-mais {
    min-height: 120px;
    height: 100%;
    width: 100%;
    white-space: normal;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    line-height: 1.3;
  }
}

/* =============================
   BOTÕES COM SEU ESTILO
============================= */
.btn-saiba-mais {
  position: relative;
  overflow: hidden;
  background-color: #325665;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 0.9rem 1.5rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  z-index: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: none;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-saiba-mais::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -200px;
  width: 100px;
  height: 400px;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg);
  z-index: 1;
  transition: all 1.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn-saiba-mais:hover::before {
  left: 160%;
}

.btn-saiba-mais:hover,
.btn-saiba-mais.active {
  background-color: #27444f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(50, 86, 101, 0.25);
  color: #fff;
}

/* =============================
   CONTEÚDO E TRANSIÇÕES
============================= */
.diferenciais-content {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.conteudo {
  position: absolute;
  top: 0;
  left: 100%;
  opacity: 0;
  width: 100%;
  transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateX(60px);
}

.conteudo.ativo {
  left: 0;
  opacity: 1;
  transform: translateX(0);
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}

.conteudo.saindo {
  left: -100%;
  opacity: 0;
  transform: translateX(-60px);
}

.imagem-diferencial {
  /* Make diferencial images look like icons: smaller and without shadow */
  border-radius: 8px;
  box-shadow: none; /* remove surrounding shadow as requested */
  transition: transform 0.3s ease, opacity 0.3s ease;
  max-width: 96px; /* icon-like width */
  height: auto;
  object-fit: contain;
  display: inline-block;
}

.conteudo.ativo .imagem-diferencial {
  opacity: 1;
  transform: none; /* no scaling effect for icon images */
}

@media (max-width: 767.98px) {
  .imagem-diferencial {
    max-width: 72px;
  }
}

/* =============================
   TEXTO
============================= */
.conteudo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 12px;
  text-align: center;
}

.conteudo p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.sobre-empresa {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
}

/* =============================
   RESPONSIVIDADE
============================= */
@media (max-width: 768px) {
  .diferenciais-menu {
    margin-bottom: 40px;
  }
  .diferenciais-content {
    min-height: 400px;
  }
}

/* 
* Estilos CSS para a seção de portfólio
*/
/* === PORTFÓLIO PREMIUM === */
.portfolio-section {
  background-color: #fff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #343a40;
  position: relative;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #343a40;
  display: block;
  margin: 10px auto 0;
}

/* Botões de filtro */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 -5px;
  padding: 0 15px;
}

.portfolio-filters .btn {
  font-weight: 500;
  border-radius: 30px;
  padding: 0.5rem 1.25rem;
  transition: all 0.3s ease;
  border-width: 2px;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  min-width: 120px;
  background-color: transparent;
  border-color: #325665;
  color: #325665;
}

.portfolio-filters .btn:hover {
  background-color: #325665;
  border-color: #325665;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(50, 86, 101, 0.15);
}

.portfolio-filters .btn.active {
  background-color: #325665;
  border-color: #325665;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(50, 86, 101, 0.15);
}

@media (max-width: 767.98px) {
  /* Prevenção geral de scroll horizontal */
  .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .row {
    margin-right: 0;
    margin-left: 0;
  }
  
  section {
    overflow-x: hidden;
  }
  
  img {
    max-width: 100%;
  }

  /* Estilos específicos do portfolio */
  .portfolio-filters {
    gap: 8px;
    padding: 0 10px;
    margin-left: 0;
    margin-right: 0;
  }

  .portfolio-filters .btn {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    min-width: calc(50% - 10px);
    flex: 1 1 auto;
  }

  /* Ajustes para galeria e carousel */
  #portfolio-gallery img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .carousel-item img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* Imagens da galeria */
.portfolio-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

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

/* Container da galeria */
#portfolio-gallery {
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

/* Transições MixItUp */
#portfolio-gallery .mix {
  opacity: 1;
  transition: opacity 0.4s ease;
  will-change: opacity;
}

#portfolio-gallery .mix.hide {
  opacity: 0 !important;
  pointer-events: none;
}


/* Lightbox2 custom styling */
.lb-data .lb-caption {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #fff;
  text-align: center;
}

.lb-number {
  font-size: 0.9rem;
  color: #ccc;
}

.lb-close {
  background: none;
  color: #fff;
  font-size: 1.5rem;
}
/* 
* Section diagnóstico estilos CSS
 */
 #diagnostico{
  background-color: #eeeeee;
 }
.fade-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.from-left {
  transform: translateX(-30px);
}

.from-right {
  transform: translateX(30px);
}

.fade-section.visible.from-left,
.fade-section.visible.from-right {
  transform: translateX(0);
}
a.text-decoration-none:hover {
  text-decoration: none;
  color: #325665;
}
#video-preview {
  pointer-events: none;
}

.glightbox-video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.glightbox-clean .gvideo-wrapper {
  max-width: 960px;
  margin: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.glightbox-overlay {
  background: rgba(0, 0, 0, 0.6) !important;
}
/* Fundo mais suave */
.glightbox-overlay {
  background: rgba(0, 0, 0, 0.6) !important;
}

/* Estilo do player como modal */
.glightbox-clean .gvideo-wrapper {
  max-width: 960px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Remove título e barra superior */
.glightbox-clean .gdesc-inner,
.glightbox-clean .gslide-title {
  display: none !important;
}
/* 
* estilos css da view sobre.php
 */
/* Espaçamento e semântica: cada bloco dentro de #sobre (sobre-block) tem padding
   e separação visual para deixar o layout mais arejado. Scoped a #sobre para
   não afetar outras seções. */
#sobre .sobre-block {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

/* Espaçamento extra entre sections vizinhas */
#sobre .sobre-block + .sobre-block {
  margin-top: 2rem;
}

@media (max-width: 767.98px) {
  #sobre .sobre-block {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* Contato - padroniza espaçamento visual como nas outras sections */
#contato .contato-block {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (max-width: 767.98px) {
  #contato .contato-block {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* Contato: ícones com cor padrão do projeto e alinhamento */
#contato .contato-icon {
  color: #325665; /* cor padrão do projeto usada em botões e elementos principais */
  min-width: 1.6rem; /* garante espaço consistente entre ícone e texto */
  display: inline-block;
  text-align: center;
}

/* Ajusta ícones dentro de listas para ficarem bem alinhados verticalmente */
#contato .list-unstyled li {
  align-items: center; /* reforça o alinhamento caso alguma classe não exista */
}

/* Não são necessárias regras extras para .btn-saiba-mais dentro de #contato;
   o estilo global já aplica o visual desejado. Mantemos esse comentário para
   referência futura. */

/* Estilos com escopo apenas para a seção Sobre (#sobre) - evita conflitos globais */
#sobre .section-title,
#sobre .second-title,
#sobre .second-description {
  text-align: center; /* centraliza títulos, subtítulos e descrições apenas dentro de #sobre */
}

/* Garante que ícones e botões dentro de #sobre mantenham o alinhamento visual
   sem alterar outras regras globais */
#sobre .icon-box,
#sobre .d-flex,
#sobre .text-center {
  text-align: center;
}

/* Ajuste opcional: centraliza o conteúdo das colunas na vertical dentro da seção
   apenas quando desejado (não interfere em outras seções). */
#sobre .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Controles do carrossel */
.carousel-wrapper .carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Botões */
.carousel-wrapper .carousel-controls .btn {
  min-width: 44px;          /* área clicável confortável */
  min-height: 44px;
  border-radius: 8px;       /* quadrado arredondado, mais moderno que círculo */
  font-size: 1.2rem;        /* ícone proporcional */
  font-family: 'Poppins', sans-serif;
  border: 1px solid #0B496A;
  background-color: #fff;
  color: #0B496A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}



/* Foco */
.carousel-wrapper .carousel-controls .btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(11,73,106,0.3);
}

/* Espaçamento entre blocos */
.mb-6 {
  margin-bottom: 6rem !important;
}

/* Cards do carrossel */
.cp-cards-slider .carousel-item {
  display: flex;
  justify-content: center;
  transition: transform 0.6s ease-in-out;
}

.card {
  max-width: 400px;
  margin: auto;
}

.card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.card p.second-description {
  font-size: 1rem;
  color: #000000;
}

/* Ícones */
.icon-box {
  display: inline-block;
  padding: 1rem;
  /* background: #e9ecef; */
  border-radius: 50%;
}

/* Zoom-in animation */
.zoom-in {
  animation: zoomIn 0.4s ease forwards;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.carousel-container {
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s ease;
}

.carousel-item {
    flex: 0 0 auto;
    transition: transform 0.6s ease;
}

@media (max-width: 768px) {
    .carousel-item {
        width: 100% !important;
        margin: 0 auto;
    }

    .carousel-inner {
        gap: 1rem;
    }
}
.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 1rem;
}

.carousel-card {
  flex: 0 0 80%;
  max-width: 80%;
}

@media (min-width: 992px) {
  .carousel-card {
    flex: 0 0 60%;
    max-width: 60%;
  }
}

@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .carousel-wrapper {
    margin-top: 2rem;
  }
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.carousel-viewport {
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}

.carousel-card {
  flex: 0 0 70%;
  max-width: 70%;
}

@media (min-width: 992px) {
  .carousel-card {
    flex: 0 0 60%;
    max-width: 60%;
  }
}

@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .carousel-viewport {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
/* 
* Estilo da página de contato
 */
/* Seção de Contato */
.contato-section h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.contato-section .second-description {
  font-size: 1.1rem;
  color: #000000;
}

.contato-section ul {
  padding-left: 0;
}

.contato-section ul li {
  list-style: none;
}

.contato-section .form-label {
  font-weight: 500;
}

.contato-section .form-control {
  border-radius: 0.375rem;
  box-shadow: none;
}

.contato-section .btn {
  padding: 0.6rem 1.5rem;
  font-weight: 500;
}

.contato-section .ratio iframe {
  border: 0;
  border-radius: 0.5rem;
}
.contato-section ul li {
  list-style: none;
  display: flex;
  align-items: start;
  gap: 1rem;
}

.contato-section i {
  flex-shrink: 0;
}













