/*------------------------------------------------------*/
/* Navbar Personalizado */
/*------------------------------------------------------*/

/* Navbar container */
.navbar {
  padding: 0.75rem 0;
  transition: var(--transition-fast);
  background-color: var(--azul-escuro) !important;
}

/* Logo */
.navbar-brand img {
  max-height: 50px;
  width: auto;
  transition: var(--transition-fast);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

/* Nav links */
.navbar-nav .nav-link {
  color: var(--branco);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1.25rem;
  position: relative;
  transition: var(--transition-fast);
}

/* Efeito de underline animado - tarja branca */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--branco);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover {
  color: var(--branco);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* Link ativo */
.navbar-nav .nav-link.active {
  color: var(--branco);
  font-weight: 600;
}

.navbar-nav .nav-link.active::after {
  width: 80%;
}

/* Botão CTA */
.navbar .btn-primary {
  background: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
  transition: var(--transition-fast);
}

.navbar .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
  background: var(--secondary);
  border-color: var(--secondary);
}

/* Navbar com scroll */
.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .navbar-brand img {
  max-height: 45px;
}

/* Toggler customizado */
.navbar-toggler {
  padding: 0.5rem;
  border-color: var(--branco);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(248, 249, 250, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: 2px solid var(--branco);
}

/* Espaçador */
.navbar-spacer {
  height: 80px;
}

/* Responsividade */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding: 1rem 0;
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
  }

  .navbar-nav .nav-link::after {
    bottom: 5px;
  }

  .navbar .btn-primary {
    margin-top: 1rem;
    display: inline-block;
  }

  .navbar-spacer {
    height: 70px;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    max-height: 40px;
  }

  .navbar-spacer {
    height: 65px;
  }
}

/*------------------------------------------------------*/
/* Footer Personalizado */
/*------------------------------------------------------*/

/* Footer container */
.footer {
  background-color: var(--azul-escuro);
  padding: 3rem 0;
}

/* Logo do footer */
.footer-logo img {
  transition: var(--transition-fast);
}

.footer-logo img:hover {
  transform: scale(1.05);
}

/* Títulos do footer */
.footer h5 {
  color: var(--branco);
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: 2px;
}

/* Links rápidos com animação */
.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--branco);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.footer-links a i {
  transition: var(--transition-fast);
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--azul-claro);
  transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-links a.footer-link-active {
  color: var(--azul-claro);
  transform: translateX(5px);
}

.footer-links a:hover i,
.footer-links a.footer-link-active i {
  transform: translateX(3px);
}

.footer-links a:hover::after,
.footer-links a.footer-link-active::after {
  width: 100%;
}

/* Ícones de redes sociais */
.footer .social-links {
  gap: 1rem;
}

.footer .social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--branco);
  font-size: 1.2rem;
  transition: var(--transition-fast);
  text-decoration: none;
}

.footer .social-icon:hover {
  background: linear-gradient(135deg, var(--azul-claro), var(--verde));
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 196, 230, 0.4);
}

/* Informações de contato */
.footer-contact {
  padding-left: 0;
  list-style: none;
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  margin-top: 0.2rem;
  color: var(--branco);
}

.footer-contact a {
  color: var(--branco);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--azul-claro);
  transform: translateX(3px);
}

/* Linha de separação */
.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  opacity: 0.3;
}

/* Tarja de copyright */
.footer .row:last-child p,
.footer .row:last-child a {
  font-size: 0.9rem;
}

.footer .row:last-child a {
  transition: var(--transition-fast);
}

.footer .row:last-child a:hover {
  color: var(--azul-claro) !important;
}

/* Link da Arco */
.footer .dev__link {
  color: var(--branco);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer .dev__link:hover {
  color: var(--azul-claro);
}

.footer .dev__logo svg {
  width: 18px;
  height: 18px;
  margin-left: 5px;
  transition: var(--transition-fast);
  display: inline-block;
  vertical-align: middle;
}

.footer .dev__link:hover .dev__logo svg {
  transform: scale(1.1);
}

/* Responsividade do footer */
@media (max-width: 991.98px) {
  .footer .col-lg-4,
  .footer .col-md-6 {
    text-align: left;
  }

  .footer h5::after {
    left: 0;
    transform: none;
  }

  .footer .social-links {
    justify-content: flex-start;
  }

  .footer-links,
  .footer-contact {
    text-align: left;
    display: block;
  }
}

@media (max-width: 767.98px) {
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer .col-md-4,
  .footer .col-md-6 {
    text-align: left;
  }

  .footer .col-md-4 {
    margin-bottom: 0.5rem;
  }

  .footer h5 {
    font-size: 1.1rem;
  }

  .footer-links a,
  .footer-contact a {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer .col-md-4,
  .footer .col-md-6 {
    text-align: left;
  }

  .footer-logo img {
    max-height: 45px;
  }

  .footer .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/*------------------------------------------------------*/
/* SEÇÃO: Banner
/*------------------------------------------------------*/

#banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Imagem do Banner */
#banner .banner__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Desktop: aspect ratio 21:9 */
@media (min-width: 768px) {
  #banner .banner__image {
    aspect-ratio: 21 / 9;
    min-height: 500px;
    max-height: 700px;
  }
}

/* Mobile: aspect ratio 1:1 */
@media (max-width: 767.98px) {
  #banner .banner__image {
    aspect-ratio: 1 / 1;
    min-height: 400px;
    max-height: 600px;
  }
}

/* Overlay escuro sobre a imagem */
#banner .banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 48, 86, 0.7) 0%,
    rgba(0, 48, 86, 0.5) 50%,
    rgba(0, 196, 230, 0.3) 100%
  );
  z-index: 1;
}

/* Conteúdo do banner */
#banner .banner__content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
  text-align: left;
}

/* Título do banner */
#banner .banner__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

/* Subtítulo do banner */
#banner .banner__subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--branco);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  line-height: 1.5;
}

/* Botão do banner */
#banner .banner__btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--branco-absoluto);
  transition: var(--transition-fast);
  box-shadow: 0 5px 15px rgba(0, 48, 86, 0.2);
  text-transform: none;
  letter-spacing: normal;
}

#banner .banner__btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 196, 230, 0.3);
}

#banner .banner__btn i {
  transition: var(--transition-fast);
}

#banner .banner__btn:hover i {
  transform: translateX(5px);
}

/* Carousel - Indicadores customizados */
#banner .carousel-indicators {
  bottom: 30px;
  z-index: 3;
}

#banner .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--branco);
  transition: var(--transition-fast);
  margin: 0 5px;
}

#banner .carousel-indicators button.active {
  background-color: var(--azul-claro);
  border-color: var(--azul-claro);
  transform: scale(1.2);
}

/* Carousel - Controles customizados */
#banner .carousel-control-prev,
#banner .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 48, 86, 0.7);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition-fast);
  z-index: 3;
  color: var(--branco);
}

#banner:hover .carousel-control-prev,
#banner:hover .carousel-control-next {
  opacity: 1;
}

#banner .carousel-control-prev {
  left: 30px;
}

#banner .carousel-control-next {
  right: 30px;
}

#banner .carousel-control-prev:hover,
#banner .carousel-control-next:hover {
  background-color: var(--azul-claro);
  transform: translateY(-50%) scale(1.1);
}

#banner .carousel-control-prev-icon,
#banner .carousel-control-next-icon {
  width: 30px;
  height: 30px;
}

/* Fallback (quando não há banners) */
#banner .banner__fallback {
  min-height: 500px;
  background: linear-gradient(
    135deg,
    var(--azul-escuro) 0%,
    var(--azul-claro) 100%
  );
}

/* ============================================
   RESPONSIVIDADE - Banner
   ============================================ */

/* Tablets */
@media (max-width: 991.98px) {
  #banner .banner__title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
  }

  #banner .banner__subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.75rem;
  }

  #banner .banner__btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  #banner .carousel-control-prev,
  #banner .carousel-control-next {
    width: 50px;
    height: 50px;
  }

  #banner .carousel-control-prev {
    left: 20px;
  }

  #banner .carousel-control-next {
    right: 20px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  #banner .banner__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  #banner .banner__subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  #banner .banner__btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  #banner .carousel-indicators {
    bottom: 20px;
  }

  #banner .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 3px;
  }

  #banner .carousel-control-prev,
  #banner .carousel-control-next {
    width: 40px;
    height: 40px;
    opacity: 1;
  }

  #banner .carousel-control-prev {
    left: 10px;
  }

  #banner .carousel-control-next {
    right: 10px;
  }

  #banner .carousel-control-prev-icon,
  #banner .carousel-control-next-icon {
    width: 20px;
    height: 20px;
  }
}

/* Mobile pequeno */
@media (max-width: 575.98px) {
  #banner .banner__title {
    font-size: 1.5rem;
  }

  #banner .banner__subtitle {
    font-size: 0.9rem;
  }

  #banner .banner__btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* Animação fade para o carousel */
#banner .carousel-fade .carousel-item {
  transition: opacity 0.6s ease-in-out;
}

/*------------------------------------------------------*/
/* SEÇÃO: Sobre Nós
/*------------------------------------------------------*/
#sobre-nos {
  background-color: var(--branco-absoluto);
  position: relative;
  overflow: hidden;
  padding-bottom: 8rem;
  padding-top: 8rem;
}

#sobre-nos::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    var(--branco-absoluto) 0%,
    var(--branco) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Título */
#sobre-nos .sobre-nos__title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--azul-escuro);
  position: relative;
  padding-bottom: 1.5rem;
}

#sobre-nos .sobre-nos__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: 2px;
}

/* Texto */
#sobre-nos .sobre-nos__text p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--preto);
  font-family: var(--font-secondary);
}

/* Botão CTA */
#sobre-nos .sobre-nos__btn {
  display: inline-block;
  background: var(--primary);
  color: var(--branco-absoluto);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 48, 86, 0.2);
  transition: var(--transition-fast);
  border: 2px solid var(--primary);
}

#sobre-nos .sobre-nos__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 196, 230, 0.3);
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--branco-absoluto);
}

#sobre-nos .sobre-nos__btn i {
  transition: var(--transition-fast);
}

#sobre-nos .sobre-nos__btn:hover i {
  transform: translateX(5px);
}

/* Container da imagem */
#sobre-nos .sobre-nos__image-wrapper {
  position: relative;
  width: 100%;
  padding: 2rem;
}

#sobre-nos .sobre-nos__image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--azul-escuro), var(--azul-claro));
  border-radius: 1.5rem;
  transform: rotate(-3deg);
  z-index: -1;
  box-shadow: 0 15px 35px hsla(0, 0%, 0%, 0.25);
}

#sobre-nos .sobre-nos__image-wrapper img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: var(--transition-fast);
  z-index: 1;
  display: block;
}

#sobre-nos .sobre-nos__image-wrapper:hover img {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Container do vídeo */
#sobre-nos .sobre-nos__video-wrapper {
  position: relative;
  width: 100%;
  padding: 2rem;
}

#sobre-nos .sobre-nos__video-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--azul-escuro), var(--azul-claro));
  border-radius: 1.5rem;
  transform: rotate(-3deg);
  z-index: -1;
  box-shadow: 0 15px 35px hsla(0, 0%, 0%, 0.25);
}

#sobre-nos .sobre-nos__video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Aspect ratio 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background-color: var(--preto-absoluto);
  transition: var(--transition-fast);
  z-index: 1;
}

#sobre-nos .sobre-nos__video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

#sobre-nos .sobre-nos__video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}

/* ============================================ */
/* RESPONSIVIDADE                               */
/* ============================================ */

/* Tablets */
@media (max-width: 991.98px) {
  #sobre-nos .sobre-nos__title {
    font-size: 3rem;
  }

  #sobre-nos .sobre-nos__text p {
    font-size: 1.2rem;
  }

  #sobre-nos .sobre-nos__content {
    margin-bottom: 2rem;
  }

  #sobre-nos .sobre-nos__title::after {
    width: 100px;
    height: 5px;
  }

  #sobre-nos .sobre-nos__video-wrapper {
    padding: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  #sobre-nos {
    padding: 5rem 0 6rem 0;
  }

  #sobre-nos::after {
    height: 80px;
  }

  #sobre-nos .sobre-nos__title {
    font-size: 2.5rem;
    text-align: center;
  }

  #sobre-nos .sobre-nos__title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
  }

  #sobre-nos .sobre-nos__text {
    text-align: center;
  }

  #sobre-nos .sobre-nos__text p {
    font-size: 1.1rem;
  }

  #sobre-nos .sobre-nos__btn {
    display: block;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }

  #sobre-nos .sobre-nos__video-wrapper {
    padding: 1rem;
  }

  #sobre-nos .sobre-nos__video-wrapper::before {
    transform: rotate(-2deg);
  }
}

/* Mobile pequeno */
@media (max-width: 575.98px) {
  #sobre-nos {
    padding: 4rem 0 5rem 0;
  }

  #sobre-nos::after {
    height: 60px;
  }

  #sobre-nos .sobre-nos__title {
    font-size: 2rem;
  }

  #sobre-nos .sobre-nos__title::after {
    width: 80px;
    height: 4px;
  }

  #sobre-nos .sobre-nos__btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    max-width: 280px;
  }

  #sobre-nos .sobre-nos__text p {
    font-size: 1rem;
  }

  #sobre-nos .sobre-nos__video-wrapper {
    padding: 0.75rem;
  }

  #sobre-nos .sobre-nos__video-wrapper::before {
    transform: rotate(-1deg);
  }
}

/* ============================================
   SEÇÃO: Produtos
   ============================================ */

#produtos {
  background-color: var(--branco);
  position: relative;
  overflow: hidden;
}

#produtos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23003056"/></svg>')
    no-repeat;
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
}

#produtos::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(
    to bottom,
    rgba(248, 249, 250, 0) 0%,
    rgb(42 60 101) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Título da Seção */
#produtos .produtos__title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

#produtos .produtos__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: 2px;
}

/* Subtítulo */
#produtos .produtos__subtitle {
  font-size: 1.4rem;
  color: var(--preto);
  margin-top: 1.5rem;
}

/* Swiper Container */
#produtos .produtos__swiper {
  padding: 20px 0 60px 0;
  position: relative;
}

/* Card de Produto */
#produtos .produtos__card {
  display: flex;
  flex-direction: column;
  background: var(--branco-absoluto);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 48, 86, 0.08);
  transition: var(--transition-medium);
  text-decoration: none;
  height: 100%;
  min-height: 320px;
  max-height: 380px;
}

#produtos .produtos__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 48, 86, 0.15);
}

/* Wrapper da Imagem */
#produtos .produtos__card-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Aspect ratio 1:1 */
  overflow: hidden;
  background: var(--branco);
}

#produtos .produtos__card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

#produtos .produtos__card:hover .produtos__card-image {
  transform: scale(1.1);
}

/* Overlay do Card */
#produtos .produtos__card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 48, 86, 0.9),
    rgba(0, 196, 230, 0.9)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-medium);
}

#produtos .produtos__card:hover .produtos__card-overlay {
  opacity: 1;
}

/* Ícone do Overlay */
#produtos .produtos__card-icon {
  font-size: 3rem;
  color: var(--branco-absoluto);
  transform: scale(0.5);
  transition: var(--transition-medium);
}

#produtos .produtos__card:hover .produtos__card-icon {
  transform: scale(1) rotate(90deg);
}

/* Corpo do Card */
#produtos .produtos__card-body {
  padding: 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80px;
}

/* Título do Card */
#produtos .produtos__card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  transition: var(--transition-fast);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3.3em;
}

#produtos .produtos__card:hover .produtos__card-title {
  color: var(--secondary);
}

/* Botões de Navegação do Swiper */
#produtos .produtos__swiper-button-next,
#produtos .produtos__swiper-button-prev {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 48, 86, 0.7);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition-fast);
  z-index: 3;
  color: var(--branco);
}

#produtos:hover .produtos__swiper-button-next,
#produtos:hover .produtos__swiper-button-prev {
  opacity: 1;
}

#produtos .produtos__swiper-button-next {
  right: 30px;
}

#produtos .produtos__swiper-button-prev {
  left: 30px;
}

#produtos .produtos__swiper-button-next:hover,
#produtos .produtos__swiper-button-prev:hover {
  background-color: var(--azul-claro);
  transform: translateY(-50%) scale(1.1);
}

#produtos .produtos__swiper-button-next::after,
#produtos .produtos__swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Paginação do Swiper */
#produtos .produtos__swiper-pagination {
  bottom: 20px !important;
}

#produtos .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary);
  opacity: 0.3;
  transition: var(--transition-fast);
}

#produtos .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--secondary);
  transform: scale(1.3);
}

/* Botão CTA */
#produtos .produtos__cta-btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--branco-absoluto);
  transition: var(--transition-fast);
  box-shadow: 0 5px 15px rgba(0, 48, 86, 0.2);
  margin-bottom: 200px;
}

#produtos .produtos__cta-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 196, 230, 0.3);
}

#produtos .produtos__cta-btn i {
  transition: var(--transition-fast);
}

#produtos .produtos__cta-btn:hover i {
  transform: translateX(5px);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

/* Tablets */
@media (max-width: 991.98px) {
  #produtos .produtos__title {
    font-size: 3rem;
  }

  #produtos .produtos__subtitle {
    font-size: 1.2rem;
  }

  #produtos .produtos__card {
    min-height: 300px;
    max-height: 350px;
  }

  #produtos .produtos__card-body {
    min-height: 75px;
  }

  #produtos .produtos__swiper-button-next,
  #produtos .produtos__swiper-button-prev {
    width: 50px;
    height: 50px;
  }

  #produtos .produtos__swiper-button-next {
    right: 20px;
  }

  #produtos .produtos__swiper-button-prev {
    left: 20px;
  }

  #produtos .produtos__swiper-button-next::after,
  #produtos .produtos__swiper-button-prev::after {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  #produtos .produtos__title {
    font-size: 2.5rem;
  }

  #produtos .produtos__subtitle {
    font-size: 1.1rem;
  }

  #produtos .produtos__card {
    min-height: 280px;
    max-height: 320px;
  }

  #produtos .produtos__card-body {
    padding: 1rem;
    min-height: 70px;
  }

  #produtos .produtos__card-title {
    font-size: 1rem;
    min-height: 2.8em;
  }

  #produtos .produtos__cta-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  #produtos .produtos__swiper-button-next,
  #produtos .produtos__swiper-button-prev {
    width: 40px;
    height: 40px;
    opacity: 1;
  }

  #produtos .produtos__swiper-button-next {
    right: 10px;
  }

  #produtos .produtos__swiper-button-prev {
    left: 10px;
  }

  #produtos .produtos__swiper-button-next::after,
  #produtos .produtos__swiper-button-prev::after {
    font-size: 0.9rem;
  }
}

/* Mobile pequeno */
@media (max-width: 575.98px) {
  #produtos {
    padding: 3rem 0;
  }

  #produtos .produtos__title {
    font-size: 2rem;
  }

  #produtos .produtos__card {
    min-height: 260px;
    max-height: 300px;
  }

  #produtos .produtos__card-body {
    padding: 0.875rem;
    min-height: 60px;
  }

  #produtos .produtos__card-title {
    font-size: 0.95rem;
    min-height: 2.6em;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  #produtos .produtos__card-icon {
    font-size: 2.5rem;
  }
}

/* Telas muito pequenas (abaixo de 540px) */
@media (max-width: 539.98px) {
  #produtos .produtos__card-title {
    -webkit-line-clamp: 5;
    line-clamp: 5;
    min-height: 5.2em;
    line-height: 1.3;
  }

  #produtos .produtos__card-body {
    min-height: 95px;
    padding: 0.875rem;
  }

  #produtos .produtos__card {
    min-height: 290px;
    max-height: 330px;
  }

  #produtos .produtos__title {
    font-size: 1.8rem;
  }

  #sobre-nos .sobre-nos__title {
    font-size: 1.8rem;
  }
}

/* Telas extremamente pequenas (abaixo de 480px) */
@media (max-width: 479.98px) {
  #produtos .produtos__card-title {
    -webkit-line-clamp: 6;
    line-clamp: 6;
    min-height: 6.2em;
    font-size: 0.9rem;
  }

  #produtos .produtos__card-body {
    min-height: 105px;
    padding: 0.875rem 0.75rem;
  }

  #produtos .produtos__card {
    min-height: 310px;
    max-height: 360px;
  }

  #produtos .produtos__card-image-wrapper {
    padding-bottom: 90%; /* Reduz um pouco a imagem para dar mais espaço ao texto */
  }

  #produtos .produtos__title {
    font-size: 1.6rem;
  }

  #sobre-nos .sobre-nos__title {
    font-size: 1.6rem;
  }
}

/*------------------------------------------------------*/
/* SEÇÃO: CTA Financiamento e Orçamento */
/*------------------------------------------------------*/

#cta-financiamento {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Background Parallax */
#cta-financiamento .cta-financiamento__parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

/* Overlay Azul Escuro com Opacidade */
#cta-financiamento .cta-financiamento__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 48, 86, 0.92) 0%,
    rgba(0, 48, 86, 0.85) 100%
  );
  z-index: 1;
}

/* ====================
   COLUNA ESQUERDA - Informações
   ==================== */

/* Título Principal */
#cta-financiamento .cta-financiamento__title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

#cta-financiamento .cta-financiamento__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: 2px;
}

/* Subtítulo */
#cta-financiamento .cta-financiamento__subtitle {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--branco);
  margin-bottom: 2.5rem;
  font-family: var(--font-secondary);
}

/* Lista de Benefícios */
#cta-financiamento .cta-financiamento__benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

#cta-financiamento .cta-financiamento__benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  color: var(--branco);
}

#cta-financiamento .cta-financiamento__benefits li i {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-right: 1rem;
  flex-shrink: 0;
}

/* Ícones de Pagamento */
#cta-financiamento .cta-financiamento__payment-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

#cta-financiamento .cta-financiamento__payment-icon {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: var(--transition-fast);
}

#cta-financiamento .cta-financiamento__payment-icon:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ====================
   COLUNA DIREITA - Formulário
   ==================== */

#cta-financiamento .cta-financiamento__form-wrapper {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

#cta-financiamento .cta-financiamento__form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

#cta-financiamento .cta-financiamento__form-subtitle {
  font-size: 1rem;
  color: var(--preto);
  margin-bottom: 2rem;
}

/* Inputs do Formulário */
#cta-financiamento .cta-financiamento__form .form-label {
  font-weight: 600;
  color: var(--preto);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

#cta-financiamento .cta-financiamento__form .form-control,
#cta-financiamento .cta-financiamento__form .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: var(--transition-fast);
  background-color: var(--branco-absoluto);
}

#cta-financiamento .cta-financiamento__form .form-control:focus,
#cta-financiamento .cta-financiamento__form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(0, 48, 86, 0.1);
  outline: none;
}

#cta-financiamento .cta-financiamento__form textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

/* Radio Buttons */
#cta-financiamento .cta-financiamento__form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

#cta-financiamento .cta-financiamento__form .form-check-label {
  color: var(--preto);
  font-size: 1rem;
  cursor: pointer;
}

/* Mensagens de erro */
#cta-financiamento .cta-financiamento__form .invalid-feedback {
  display: none;
  color: var(--vermelho);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

#cta-financiamento
  .cta-financiamento__form
  .form-control.is-invalid
  ~ .invalid-feedback,
#cta-financiamento
  .cta-financiamento__form
  .form-select.is-invalid
  ~ .invalid-feedback {
  display: block;
}

/* Checkbox Termos */
#cta-financiamento
  .cta-financiamento__form
  .form-check-input[type="checkbox"]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

#cta-financiamento .cta-financiamento__form .form-control.is-invalid,
#cta-financiamento .cta-financiamento__form .form-select.is-invalid {
  border-color: var(--vermelho);
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.1);
}

#cta-financiamento .cta-financiamento__form .form-control.is-invalid:focus,
#cta-financiamento .cta-financiamento__form .form-select.is-invalid:focus {
  border-color: var(--vermelho);
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.1);
}

/* Botão de Envio */
#cta-financiamento .cta-financiamento__btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--branco-absoluto);
  transition: var(--transition-fast);
  box-shadow: 0 5px 15px rgba(0, 48, 86, 0.2);
  cursor: pointer;
}

#cta-financiamento .cta-financiamento__btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 196, 230, 0.3);
}

#cta-financiamento .cta-financiamento__btn i {
  transition: var(--transition-fast);
}

#cta-financiamento .cta-financiamento__btn:hover i {
  transform: translateX(5px);
}

/* Mensagem de Sucesso */
#cta-financiamento .cta-financiamento__success-message {
  margin-bottom: 2rem;
  animation: slideDown 0.5s ease-out;
}

#cta-financiamento .cta-financiamento__success-message .alert {
  border: none;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-left: 4px solid var(--verde);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.1);
}

#cta-financiamento .cta-financiamento__success-message .alert i {
  font-size: 1.25rem;
  color: var(--verde);
}

#cta-financiamento .cta-financiamento__success-message .alert-success {
  color: var(--verde);
  font-weight: 500;
}

/* ====================
   RESPONSIVIDADE
   ==================== */

/* Telas grandes até tablets grandes (1600px até 1024px) */
@media (max-width: 1600px) and (min-width: 1100px) {
  #cta-financiamento .cta-financiamento__title {
    font-size: 3.5rem;
  }

  #cta-financiamento .cta-financiamento__subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 1099px) {
  #cta-financiamento .cta-financiamento__title {
    font-size: 3rem;
  }
}

/* Tablets */
@media (max-width: 991.98px) {
  #cta-financiamento {
    min-height: auto;
    padding: 5rem 0;
  }

  #cta-financiamento .cta-financiamento__title {
    font-size: 3rem;
  }

  #cta-financiamento .cta-financiamento__subtitle {
    font-size: 1.3rem;
  }

  #cta-financiamento .cta-financiamento__form-wrapper {
    padding: 2rem;
  }

  #cta-financiamento .cta-financiamento__form-title {
    font-size: 1.75rem;
  }

  /* Centralizar informações em tablet */
  #cta-financiamento .cta-financiamento__info {
    text-align: center;
  }

  #cta-financiamento .cta-financiamento__title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  #cta-financiamento .cta-financiamento__benefits li {
    justify-content: center;
  }

  #cta-financiamento .cta-financiamento__payment-icons {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  #cta-financiamento {
    padding: 4rem 0;
  }

  #cta-financiamento .cta-financiamento__parallax-bg {
    background-attachment: scroll;
  }

  #cta-financiamento .cta-financiamento__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  #cta-financiamento .cta-financiamento__subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  #cta-financiamento .cta-financiamento__benefits li {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  #cta-financiamento .cta-financiamento__benefits li i {
    font-size: 1.3rem;
    margin-right: 0.75rem;
  }

  #cta-financiamento .cta-financiamento__form-wrapper {
    padding: 1.5rem;
  }

  #cta-financiamento .cta-financiamento__form-title {
    font-size: 1.5rem;
  }

  #cta-financiamento .cta-financiamento__form-subtitle {
    font-size: 0.9rem;
  }

  #cta-financiamento .cta-financiamento__btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  #cta-financiamento .cta-financiamento__payment-icon {
    height: 50px;
  }
}

/* Mobile pequeno */
@media (max-width: 575.98px) {
  #cta-financiamento .cta-financiamento__title {
    font-size: 2rem;
  }

  #cta-financiamento .cta-financiamento__subtitle {
    font-size: 1rem;
  }

  #cta-financiamento .cta-financiamento__form-wrapper {
    padding: 1.25rem;
  }

  #cta-financiamento .cta-financiamento__btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  #cta-financiamento .form-check-inline {
    display: block;
    margin-bottom: 0.5rem;
  }

  /* Campos do formulário em mobile ficam em coluna única */
  #cta-financiamento .row .col-md-6 {
    margin-bottom: 1rem;
  }
}

/*------------------------------------------------------*/
/* SEÇÃO: Instagram                                    */
/*------------------------------------------------------*/

#instagram {
  position: relative;
  overflow: hidden;
  padding: 200px 0px 200px 0px;
  background-color: var(--branco);
}

#instagram::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    rgba(0, 48, 86, 0.92) 0%,
    var(--branco) 100%
  );
  pointer-events: none;
  z-index: 2;
}

#instagram::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    var(--branco) 0%,
    var(--azul-escuro) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Título da Seção */
#instagram .instagram__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--azul-escuro);
  line-height: 1.2;
  margin: 0;
  position: relative;
  padding-bottom: 1.5rem;
}

#instagram .instagram__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 6%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: 2px;
}
/* Instagram Handle (Link com Ícone) */
#instagram .instagram__handle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--azul-escuro);
  color: white;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 48, 86, 0.3);
  transition: var(--transition-fast);
}

#instagram .instagram__handle i {
  font-size: 2rem;
  transition: var(--transition-fast);
}

#instagram .instagram__handle:hover {
  background: linear-gradient(135deg, var(--azul-claro), var(--verde));
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 196, 230, 0.4);
  color: var(--branco-absoluto);
}

#instagram .instagram__handle:hover i {
  transform: rotate(15deg) scale(1.1);
}

/* Espaçamentos personalizados */
#instagram .instagram__header {
  margin-bottom: 5rem;
}

#instagram .instagram__grid {
  margin-bottom: 5rem;
}

#instagram .instagram__cta-row {
  margin-bottom: 5rem;
}

/* Responsividade para espaçamentos */
@media (max-width: 768px) {
  #instagram .instagram__header {
    margin-bottom: 3rem;
  }

  #instagram .instagram__grid {
    margin-bottom: 3rem;
  }

  #instagram .instagram__cta-row {
    margin-bottom: 3rem;
  }
}

/* Wrapper dos Posts */
#instagram .instagram__post-wrapper {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-fast);
  position: relative;
  padding-bottom: 100%;
}

#instagram .instagram__post-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Imagens dos Posts */
#instagram .instagram__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  transition: var(--transition-fast);
}

#instagram .instagram__post-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Botão CTA */
#instagram .instagram__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--branco-absoluto);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 48, 86, 0.2);
  transition: var(--transition-fast);
  border: 2px solid var(--primary);
}

#instagram .instagram__cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 196, 230, 0.3);
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--branco-absoluto);
}

#instagram .instagram__cta-btn i {
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

#instagram .instagram__cta-btn:hover i {
  transform: scale(1.2) rotate(15deg);
}

/* ============================================ */
/* RESPONSIVIDADE                               */
/* ============================================ */

@media (max-width: 1600px) {
  #instagram .instagram__title::after {
    left: 8%;
  }
}

/* Tablets */
@media (max-width: 991.98px) {
  #instagram .instagram__title {
    font-size: 2rem;
  }

  #instagram .instagram__handle {
    padding: 0.875rem 1.75rem;
    font-size: 1.25rem;
  }

  #instagram .instagram__handle i {
    font-size: 1.75rem;
  }

  #instagram .instagram__cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
  }
  #instagram .instagram__title::after {
    left: 12%;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  #instagram {
    padding: 80px 0 !important;
  }

  #instagram .instagram__title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  #instagram .instagram__title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  #instagram .instagram__handle {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
  }

  #instagram .instagram__handle i {
    font-size: 1.5rem;
  }

  #instagram .instagram__post-wrapper {
    margin-bottom: 1rem;
  }

  #instagram .instagram__cta-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  #instagram::before {
    height: 50px;
  }

  #instagram::after {
    height: 50px;
  }
}

/* Mobile Pequeno */
@media (max-width: 575.98px) {
  #instagram {
    padding: 70px 0 !important;
  }

  #instagram .instagram__title {
    font-size: 1.5rem;
  }

  #instagram .instagram__title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  #instagram .instagram__handle {
    font-size: 1rem;
    padding: 0.65rem 1.25rem;
  }

  #instagram .instagram__handle i {
    font-size: 1.25rem;
  }

  #instagram .instagram__post-wrapper {
    margin-bottom: 1rem;
  }

  #instagram .instagram__cta-btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    justify-content: center;
  }

  #instagram .instagram__cta-btn i {
    font-size: 1.25rem;
  }
  #instagram .instagram__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Centralizar terceira imagem entre 990px e 700px */
@media (max-width: 990px) and (min-width: 701px) {
  .instagram__post-third {
    width: 50%;
    margin: 0 auto;
    float: none;
    padding-top: 20px;
  }
}

/*------------------------------------------------------*/
/* Página QUEM SOMOS - SEÇÃO: Hero - Parallax
/*------------------------------------------------------*/
#quem-somos .hero-section {
  height: 400px;
  position: relative;
  overflow: hidden;
}

#quem-somos .hero-section__parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/img/quem-somos-paralax.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

#quem-somos .hero-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--azul-escuro);
  opacity: 0.7;
  z-index: 2;
}

#quem-somos .hero-section__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#quem-somos .hero-section__title {
  color: var(--branco-absoluto);
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

/* Mobile */
@media (max-width: 767.98px) {
  #quem-somos .hero-section {
    height: 300px;
  }

  #quem-somos .hero-section__parallax {
    background-attachment: scroll;
  }

  #quem-somos .hero-section__title {
    font-size: 2rem;
  }
}

/*------------------------------------------------------*/
/* SEÇÃO: Conteúdo - Sobre Nós
        /*------------------------------------------------------*/
#quem-somos .content-section {
  background-color: var(--branco);
}

#quem-somos .content-section__title {
  color: var(--azul-escuro);
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#quem-somos .content-section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--azul-claro);
  border-radius: 2px;
}

#quem-somos .content-section__text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--preto);
  margin-bottom: 1.25rem;
}

#quem-somos .content-section__text p:last-child {
  margin-bottom: 0;
}

#quem-somos .content-section__image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition-fast);
}

#quem-somos .content-section__image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

#quem-somos .content-section__image {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-medium);
  max-height: 600px;
}

#quem-somos .content-section__image-wrapper:hover .content-section__image {
  transform: scale(1.05);
}

@media (max-width: 1366px) {
  #quem-somos .content-section__image {
    max-height: 500px;
  }
}

@media (max-width: 1280px) {
  #quem-somos .content-section__image {
    max-height: 550px;
  }
}

/* Mobile */
@media (max-width: 991.98px) {
  #quem-somos .content-section__title {
    font-size: 2rem;
    text-align: center;
  }

  #quem-somos .content-section__title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  #quem-somos .content-section__text {
    text-align: center;
  }
}

/*------------------------------------------------------*/
/* SEÇÃO: Missão, Visão e Valores
/*------------------------------------------------------*/
#quem-somos .values-section {
  background: linear-gradient(135deg, var(--azul-escuro) 0%, #00487a 100%);
}

#quem-somos .values-section .mvv__card {
  background-color: var(--branco-absoluto);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-fast);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#quem-somos .values-section .mvv__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

#quem-somos .values-section .mvv__icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--azul-escuro) 0%,
    var(--azul-claro) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

#quem-somos .values-section .mvv__card:hover .mvv__icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

#quem-somos .values-section .mvv__icon {
  font-size: 2.5rem;
  color: var(--branco-absoluto);
}

#quem-somos .values-section .mvv__title {
  color: var(--azul-escuro);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#quem-somos .values-section .mvv__text {
  color: var(--preto);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Mobile */
@media (max-width: 767.98px) {
  #quem-somos .values-section .mvv__card {
    padding: 2rem 1.5rem;
  }

  #quem-somos .values-section .mvv__icon-wrapper {
    width: 70px;
    height: 70px;
  }

  #quem-somos .values-section .mvv__icon {
    font-size: 2rem;
  }

  #quem-somos .values-section .mvv__title {
    font-size: 1.5rem;
  }
}

/*------------------------------------------------------*/
/* SEÇÃO: Números/Estatísticas
        /*------------------------------------------------------*/
#quem-somos .stats-section {
  background-color: var(--branco);
}

#quem-somos .stats-section .numeros__card {
  background-color: var(--branco-absoluto);
  border: 2px solid var(--azul-claro);
  border-radius: 15px;
  padding: 2.5rem 1.5rem;
  transition: var(--transition-fast);
}

#quem-somos .stats-section .numeros__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 196, 230, 0.2);
  border-color: var(--azul-escuro);
}

#quem-somos .stats-section .numeros__icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--azul-claro) 0%,
    var(--azul-escuro) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

#quem-somos .stats-section .numeros__card:hover .numeros__icon-wrapper {
  transform: scale(1.15) rotate(-5deg);
}

#quem-somos .stats-section .numeros__icon {
  font-size: 2.5rem;
  color: var(--branco-absoluto);
}

#quem-somos .stats-section .numeros__number {
  color: var(--azul-escuro);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

#quem-somos .stats-section .numeros__label {
  color: var(--preto);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0;
}

/* Mobile */
@media (max-width: 767.98px) {
  #quem-somos .stats-section .numeros__card {
    padding: 2rem 1rem;
  }

  #quem-somos .stats-section .numeros__icon-wrapper {
    width: 70px;
    height: 70px;
  }

  #quem-somos .stats-section .numeros__icon {
    font-size: 2rem;
  }

  #quem-somos .stats-section .numeros__number {
    font-size: 2.5rem;
  }

  #quem-somos .stats-section .numeros__label {
    font-size: 1rem;
  }
}

/*------------------------------------------------------*/
/* PÁGINA: Contato                                      */
/*------------------------------------------------------*/

/* ============================================ */
/* Hero Section - Parallax                      */
/* ============================================ */
#contato .hero-section {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#contato .hero-section__parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/img/contato-paralax.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: translateZ(0);
  will-change: transform;
}

#contato .hero-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 48, 86, 0.85) 0%,
    rgba(0, 196, 230, 0.75) 100%
  );
  z-index: 1;
}

#contato .hero-section__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

#contato .hero-section__title {
  color: var(--branco-absoluto);
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin: 0;
}

/* ============================================ */
/* Seção de Introdução                          */
/* ============================================ */
#contato .intro-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem 0 2rem;
}

#contato .intro-section__title {
  color: var(--azul-escuro);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

#contato .intro-section__text {
  color: var(--preto);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ============================================ */
/* Seção de Informações de Contato              */
/* ============================================ */
#contato .info-section {
  padding: 3rem 0;
  background-color: #ffffff;
}

#contato .info__card {
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

#contato .info__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(
    180deg,
    var(--azul-claro) 0%,
    var(--azul-escuro) 100%
  );
  transition: height 0.4s ease;
}

#contato .info__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 196, 230, 0.2);
  border-color: var(--azul-claro);
}

#contato .info__card:hover::before {
  height: 100%;
}

#contato .info__icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--azul-claro) 0%,
    var(--azul-escuro) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

#contato .info__card:hover .info__icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

#contato .info__icon {
  font-size: 2rem;
  color: var(--branco-absoluto);
}

#contato .info__title {
  color: var(--azul-escuro);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#contato .info__text {
  color: var(--preto);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

#contato .info__link {
  color: var(--azul-escuro);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 500;
}

#contato .info__link:hover {
  color: var(--azul-claro);
  text-decoration: underline;
}

/* ============================================ */
/* Seção do Formulário                          */
/* ============================================ */
#contato .form-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

#contato .form-section__title {
  color: var(--azul-escuro);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

#contato .form-section__subtitle {
  color: var(--preto);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
}

#contato .form__container {
  background: var(--branco-absoluto);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

#contato .form__label {
  color: var(--azul-escuro);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

#contato .form__input,
#contato .form__textarea {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: var(--transition-fast);
  width: 100%;
}

#contato .form__input:focus,
#contato .form__textarea:focus {
  border-color: var(--azul-claro);
  box-shadow: 0 0 0 0.2rem rgba(0, 196, 230, 0.25);
  outline: none;
}

#contato .form__textarea {
  min-height: 150px;
  resize: vertical;
}

#contato .form__btn {
  background: linear-gradient(
    135deg,
    var(--azul-claro) 0%,
    var(--azul-escuro) 100%
  );
  color: var(--branco-absoluto);
  border: none;
  border-radius: 8px;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-fast);
  width: 100%;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#contato .form__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 196, 230, 0.4);
}

#contato .form__btn i {
  margin-left: 0.5rem;
  transition: var(--transition-fast);
}

#contato .form__btn:hover i {
  transform: translateX(5px);
}

/* Alertas do formulário */
#contato .alert {
  border-radius: 8px;
  margin-top: 1.5rem;
}

/* ============================================ */
/* Seção do Mapa                                */
/* ============================================ */
#contato .map-section {
  padding: 0;
  height: 450px;
}

#contato .map-section__iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
  transition: var(--transition-medium);
}

#contato .map-section__iframe:hover {
  filter: grayscale(0%);
}

/* ============================================ */
/* RESPONSIVIDADE                               */
/* ============================================ */

/* Tablets */
@media (max-width: 991.98px) {
  #contato .hero-section__title {
    font-size: 2.8rem;
  }

  #contato .intro-section__title {
    font-size: 1.8rem;
  }

  #contato .form-section__title {
    font-size: 1.8rem;
  }

  #contato .form__container {
    padding: 2rem;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  #contato .hero-section {
    height: 300px;
  }

  #contato .hero-section__parallax {
    background-attachment: scroll;
    background-size: cover;
  }

  #contato .hero-section__title {
    font-size: 2.2rem;
  }

  #contato .intro-section {
    padding: 3rem 0 1.5rem;
  }

  #contato .intro-section__title {
    font-size: 1.6rem;
  }

  #contato .intro-section__text {
    font-size: 1rem;
  }

  #contato .info-section {
    padding: 2rem 0;
  }

  #contato .info__card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  #contato .form-section {
    padding: 2rem 0;
  }

  #contato .form-section__title {
    font-size: 1.6rem;
  }

  #contato .form__container {
    padding: 1.5rem;
  }

  #contato .form__btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  #contato .map-section {
    height: 350px;
  }
}

/* Mobile pequeno */
@media (max-width: 575.98px) {
  #contato .hero-section__title {
    font-size: 1.8rem;
  }

  #contato .intro-section__title {
    font-size: 1.4rem;
  }

  #contato .form-section__title {
    font-size: 1.4rem;
  }
}
/* ============================================
       ESTILOS DA PÁGINA DE PRODUTOS
       ============================================ */

/* Hero Section */
#produtos-page .hero-section {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#produtos-page .hero-section__parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

#produtos-page .hero-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 86, 179, 0.9),
    rgba(0, 86, 179, 0.7)
  );
  z-index: 2;
}

#produtos-page .hero-section__content {
  position: relative;
  z-index: 3;
  padding: 80px 0;
}

#produtos-page .hero-section__title {
  font-family: var(--font-secondary);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

#produtos-page .hero-section__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
}

/* Seção de Filtros */
#produtos-page .filtros-section {
  background: #f8f9fa;
  padding: 50px 0;
}

#produtos-page .filtros__wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#produtos-page .filtros__busca {
  margin-bottom: 30px;
}

#produtos-page .filtros__busca .input-group {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

#produtos-page .filtros__busca .form-control {
  border: 2px solid transparent;
  padding: 12px 20px;
  font-size: 1rem;
  transition: var(--transition-fast);
}

#produtos-page .filtros__busca .form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
}

#produtos-page .filtros__busca .btn {
  padding: 12px 30px;
  border: none;
  font-weight: 600;
}

#produtos-page .filtros__categorias-title {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
}

#produtos-page .filtros__categorias-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

#produtos-page .filtros__categoria-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #fff;
  border: 2px solid #dee2e6;
  border-radius: 50px;
  color: #495057;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-fast);
}

#produtos-page .filtros__categoria-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

#produtos-page .filtros__categoria-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

#produtos-page .filtros__categoria-btn i {
  font-size: 1.1rem;
}

/* Seção de Listagem de Produtos */
#produtos-page .produtos-listing-section {
  padding: 60px 0;
}

#produtos-page .produtos__contador {
  font-size: 1rem;
  color: #6c757d;
  margin: 0;
}

#produtos-page .produtos__contador strong {
  color: var(--primary);
}

/* Cards de Produtos */
#produtos-page .produto__card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition-medium);
  text-decoration: none;
  height: 100%;
}

#produtos-page .produto__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

#produtos-page .produto__card-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%; /* Aspect ratio 4:3 */
  overflow: hidden;
  background: #f8f9fa;
}

#produtos-page .produto__card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

#produtos-page .produto__card:hover .produto__card-image {
  transform: scale(1.1);
}

#produtos-page .produto__card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 86, 179, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-medium);
}

#produtos-page .produto__card:hover .produto__card-overlay {
  opacity: 1;
}

#produtos-page .produto__card-overlay i {
  font-size: 3rem;
  color: #fff;
  transform: scale(0.8);
  transition: var(--transition-medium);
}

#produtos-page .produto__card:hover .produto__card-overlay i {
  transform: scale(1);
}

#produtos-page .produto__card-body {
  padding: 24px;
}

#produtos-page .produto__card-category {
  display: inline-block;
  padding: 6px 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  margin-bottom: 12px;
}

#produtos-page .produto__card-title {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.4;
  transition: var(--transition-fast);
}

#produtos-page .produto__card:hover .produto__card-title {
  color: var(--roxo);
}

#produtos-page .produto__card-subtitle {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Estado Vazio */
#produtos-page .produtos__empty {
  text-align: center;
  padding: 80px 20px;
}

#produtos-page .produtos__empty i {
  font-size: 4rem;
  color: #dee2e6;
  margin-bottom: 20px;
}

#produtos-page .produtos__empty h3 {
  font-family: var(--font-secondary);
  font-size: 1.75rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 12px;
}

#produtos-page .produtos__empty p {
  font-size: 1.1rem;
  color: #6c757d;
  margin: 0;
}

/* Responsividade */
@media (max-width: 991.98px) {
  #produtos-page .hero-section__parallax {
    background-attachment: scroll;
  }

  #produtos-page .hero-section__title {
    font-size: 2.5rem;
  }

  #produtos-page .hero-section__subtitle {
    font-size: 1.1rem;
  }

  #produtos-page .filtros__wrapper {
    padding: 24px;
  }
}

@media (max-width: 767.98px) {
  #produtos-page .hero-section {
    height: 300px;
  }

  #produtos-page .hero-section__content {
    padding: 60px 0;
  }

  #produtos-page .hero-section__title {
    font-size: 2rem;
  }

  #produtos-page .hero-section__subtitle {
    font-size: 1rem;
  }

  #produtos-page .filtros-section {
    padding: 40px 0;
  }

  #produtos-page .filtros__wrapper {
    padding: 20px;
  }

  #produtos-page .filtros__categorias-list {
    gap: 8px;
  }

  #produtos-page .filtros__categoria-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  #produtos-page .produtos-listing-section {
    padding: 40px 0;
  }

  #produtos-page .produto__card-body {
    padding: 20px;
  }

  #produtos-page .produtos__empty {
    padding: 60px 20px;
  }

  #produtos-page .produtos__empty i {
    font-size: 3rem;
  }

  #produtos-page .produtos__empty h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  #produtos-page .hero-section__title {
    font-size: 1.75rem;
  }

  #produtos-page .filtros__busca .form-control {
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  #produtos-page .filtros__busca .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  #produtos-page .filtros__categorias-title {
    font-size: 1.1rem;
  }

  #produtos-page .filtros__categoria-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
       ESTILOS DA PÁGINA DE PRODUTO
       ============================================ */

/* Hero Section */
#produto-page .hero-section {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#produto-page .hero-section__parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

#produto-page .hero-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 86, 179, 0.9),
    rgba(0, 86, 179, 0.7)
  );
  z-index: 2;
}

#produto-page .hero-section__content {
  position: relative;
  z-index: 3;
  padding: 60px 0;
}

#produto-page .hero-section__breadcrumb {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

#produto-page .hero-section__breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: var(--transition-fast);
}

#produto-page .hero-section__breadcrumb a:hover {
  color: var(--amarelo);
}

#produto-page .hero-section__breadcrumb i {
  font-size: 0.75rem;
  margin: 0 8px;
  opacity: 0.7;
}

#produto-page .hero-section__title {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.3;
}

#produto-page .hero-section__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
}

/* Seção de Conteúdo do Produto */
#produto-page .produto-content-section {
  padding: 80px 0;
}

/* Imagem Principal */
#produto-page .produto__image-wrapper {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: var(--transition-medium);
}

#produto-page .produto__image-wrapper:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

#produto-page .produto__image {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-slow);
}

#produto-page .produto__image-wrapper:hover .produto__image {
  transform: scale(1.05);
}

#produto-page .produto__image-zoom {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: var(--transition-medium);
}

#produto-page .produto__image-wrapper:hover .produto__image-zoom {
  opacity: 1;
}

#produto-page .produto__image-zoom i {
  font-size: 1.2rem;
}

/* Galeria de Miniaturas */
#produto-page .produto__galeria-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

#produto-page .produto__thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #dee2e6;
  cursor: pointer;
  transition: var(--transition-fast);
}

#produto-page .produto__thumb:hover,
#produto-page .produto__thumb.active {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

#produto-page .produto__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-fast);
}

#produto-page .produto__thumb:hover img {
  transform: scale(1.1);
}

/* Informações do Produto */
#produto-page .produto__info {
  position: sticky;
  top: 100px;
}

#produto-page .produto__categoria {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #f8f9fa;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 20px;
}

#produto-page .produto__categoria i {
  font-size: 1rem;
}

#produto-page .produto__title {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

#produto-page .produto__subtitulo {
  font-size: 1.15rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 30px;
}

#produto-page .produto__descricao {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

#produto-page .produto__descricao-title {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#produto-page .produto__descricao-title i {
  font-size: 1.4rem;
}

#produto-page .produto__descricao-content {
  color: #495057;
  line-height: 1.8;
}

#produto-page .produto__descricao-content h2,
#produto-page .produto__descricao-content h3,
#produto-page .produto__descricao-content h4 {
  color: var(--primary);
  margin-top: 20px;
  margin-bottom: 12px;
}

#produto-page .produto__descricao-content p {
  margin-bottom: 12px;
}

#produto-page .produto__descricao-content ul,
#produto-page .produto__descricao-content ol {
  margin-left: 20px;
  margin-bottom: 12px;
}

/* Call to Action */
#produto-page .produto__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#produto-page .produto__cta .btn {
  flex: 1;
  min-width: 200px;
  padding: 14px 24px;
  font-weight: 600;
}

/* Produtos Relacionados */
#produto-page .produtos-relacionados-section {
  background: #f8f9fa;
  padding: 80px 0;
}

#produto-page .section-title {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

#produto-page .section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin: 0;
}

#produto-page .produto-relacionado__card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition-medium);
  text-decoration: none;
  height: 100%;
}

#produto-page .produto-relacionado__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

#produto-page .produto-relacionado__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  background: #f8f9fa;
}

#produto-page .produto-relacionado__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

#produto-page .produto-relacionado__card:hover .produto-relacionado__image {
  transform: scale(1.1);
}

#produto-page .produto-relacionado__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 86, 179, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-medium);
}

#produto-page .produto-relacionado__card:hover .produto-relacionado__overlay {
  opacity: 1;
}

#produto-page .produto-relacionado__overlay i {
  font-size: 3rem;
  color: #fff;
  transform: scale(0.8);
  transition: var(--transition-medium);
}

#produto-page .produto-relacionado__card:hover .produto-relacionado__overlay i {
  transform: scale(1);
}

#produto-page .produto-relacionado__body {
  padding: 24px;
}

#produto-page .produto-relacionado__title {
  font-family: var(--font-secondary);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.4;
  transition: var(--transition-fast);
}

#produto-page .produto-relacionado__card:hover .produto-relacionado__title {
  color: var(--roxo);
}

#produto-page .produto-relacionado__subtitle {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsividade */
@media (max-width: 991.98px) {
  #produto-page .hero-section {
    min-height: 300px;
  }

  #produto-page .hero-section__parallax {
    background-attachment: scroll;
  }

  #produto-page .hero-section__title {
    font-size: 2rem;
  }

  #produto-page .hero-section__subtitle {
    font-size: 1rem;
  }

  #produto-page .produto-content-section {
    padding: 60px 0;
  }

  #produto-page .produto__info {
    position: static;
  }

  #produto-page .produto__title {
    font-size: 1.75rem;
  }

  #produto-page .produtos-relacionados-section {
    padding: 60px 0;
  }

  #produto-page .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767.98px) {
  #produto-page .hero-section__title {
    font-size: 1.75rem;
  }

  #produto-page .produto-content-section {
    padding: 40px 0;
  }

  #produto-page .produto__title {
    font-size: 1.5rem;
  }

  #produto-page .produto__subtitulo {
    font-size: 1rem;
  }

  #produto-page .produto__descricao {
    padding: 20px;
  }

  #produto-page .produto__cta {
    flex-direction: column;
  }

  #produto-page .produto__cta .btn {
    width: 100%;
    min-width: auto;
  }

  #produto-page .produtos-relacionados-section {
    padding: 40px 0;
  }

  #produto-page .section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  #produto-page .hero-section__title {
    font-size: 1.5rem;
  }

  #produto-page .hero-section__breadcrumb {
    font-size: 0.85rem;
  }

  #produto-page .produto__galeria-thumbs {
    gap: 8px;
  }

  #produto-page .produto__thumb {
    width: 60px;
    height: 60px;
  }
}

/* ============================================
       ESTILOS DA SEÇÃO MUNCK - PARALLAX
       ============================================ */

.munck-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.munck-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(
    to bottom,
    rgba(31, 49, 92, 0) 0%,
    rgba(20, 64, 99, 0.85) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.munck-section__parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/img/paralax-final-produtos.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  z-index: -2;
}

.munck-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(31, 49, 92, 0.95),
    rgba(0, 86, 179, 0.9)
  );
  z-index: -1;
}

.munck-section__content {
  position: relative;
  z-index: 1;
  padding: 80px 0 200px 0;
}

.munck-section__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.munck-section__icon i {
  font-size: 3rem;
  color: #fff;
}

.munck-section__title {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.munck-section__text {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 32px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.munck-section .btn-light {
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  transition: var(--transition-medium);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.munck-section .btn-light:hover {
  background: var(--primary);
  color: var(--branco);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 991.98px) {
  .munck-section {
    min-height: 400px;
    margin-top: 60px;
  }

  .munck-section__parallax {
    background-attachment: scroll;
  }

  .munck-section__content {
    padding: 60px 0;
  }

  .munck-section__icon {
    width: 80px;
    height: 80px;
  }

  .munck-section__icon i {
    font-size: 2.5rem;
  }

  .munck-section__title {
    font-size: 2rem;
  }

  .munck-section__text {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .munck-section {
    min-height: 350px;
    margin-top: 40px;
  }

  .munck-section__content {
    padding: 40px 0;
  }

  .munck-section__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .munck-section__icon i {
    font-size: 2rem;
  }

  .munck-section__title {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .munck-section__text {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .munck-section .btn-light {
    padding: 12px 24px;
    width: 100%;
    max-width: 300px;
  }
}
