/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Importação das Fontes Essenciais */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Raleway:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap');

:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Raleway", sans-serif;
}

/* Paleta de Cores com Gradiente */
:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #1b2f45;
  --accent-color: #56b8e6;
  --accent-gradient: linear-gradient(45deg, #56b8e6, #3b8dc9);
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: rgba(255, 255, 255, 0.7);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #56b8e6;
}

.light-background {
  --background-color: #f8f9fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #17283b;
  --default-color: rgba(255, 255, 255, 0.9);
  --heading-color: #ffffff;
  --surface-color: #254160;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
color: color-mix(in srgb, var(--accent-color), transparent 25%);
text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(23, 40, 59, 0.9);
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background-color: rgba(23, 40, 59, 0.9);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 20px;
    z-index: 99;
    box-shadow: 10px 0px 30px rgba(0, 5, 5, 0.541);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: rgba(255, 255, 255, 0.8);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: rgba(23, 40, 59, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(129, 128, 128, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow-y: auto;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    /* Transição suave */
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }

  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #ffffff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(165, 202, 240, 0.849);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Seções e Títulos Globais
--------------------------------------------------------------*/
section,
.section {
  padding: 80px 0;
  scroll-margin-top: 80px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-gradient);
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 2px;
}

/*--------------------------------------------------------------
# Botões
--------------------------------------------------------------*/
.btn-get-started,
.cta-btn,
.btn-submit {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  transition: 0.5s;
  color: var(--contrast-color);
  background: var(--accent-gradient);
  background-size: 200% auto;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-get-started:hover,
.cta-btn:hover,
.btn-submit:hover {
  background-position: right center;
  color: var(--contrast-color);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Seção Hero
--------------------------------------------------------------*/
/* Hero Responsivo com Imagem de Fundo e Transparência */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("../img/portfolio/landpage3.webp");
  /* Caminho da imagem */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

/* Camada de transparência (overlay escuro) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* ajuste aqui a transparência (0 = sem, 1 = totalmente opaco) */
  z-index: 2;
}

.hero {
  background-image: url("../img/portfolio/landpage3.webp");
}

.hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container,
.hero .row,
.hero .col-lg-7,
.hero .col-lg-4 {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

  .hero p {
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(10, 10, 10, 0.5);
  }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .animated-heading {
  animation: fadeInUp 1s ease-out forwards;
}

.hero .reservation-form-container {
  background: #20d5e217;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px;
}

.hero .reservation-form-container .form-control,
.hero .reservation-form-container .form-select {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid transparent;
  color: #333;
  transition: all 0.3s ease;
}

.hero .reservation-form-container .form-control:focus,
.hero .reservation-form-container .form-select:focus {
  background-color: white;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(86, 184, 230, 0.25);
}

.hero .reservation-form-container .form-control::placeholder {
  color: #666;
}

@media (max-width: 991px) {

  /* Tablets */
  .hero {
    padding: 100px 0 50px;
  }

  .hero h1 {
    font-size: 3rem;
    /* Ajuste para tablets */
  }

  .hero-text-container {
    text-align: center;
  }

  .hero .btn-get-started {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {

  /* Smartphones */
  .hero {
    padding: 80px 0 40px;
  }

  .hero h1 {
    font-size: 2.2rem;
    /* Reforce o ajuste para smartphones */
    line-height: 1.1;
  }

  .hero .reservation-form-container {
    padding: 25px;
  }

  .hero .reservation-form-container h4 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {

  /* Telas muito pequenas */
  .hero h1 {
    font-size: 1.8rem;
    /* Tamanho ainda menor para garantir ajuste */
  }

  .hero-text-container p {
    font-size: 0.9rem;
  }
}


/*--------------------------------------------------------------
# Estilo Personalizado do Formulário (Optgroup)
--------------------------------------------------------------*/

/* Este código estiliza os títulos das categorias (optgroup) dentro do 
  menu de seleção de "Modelo Técnico" no formulário.
*/
#quote-form-container .form-select optgroup {
  background-color: var(--heading-color);
  /* Fundo azul escuro da paleta */
  color: var(--contrast-color);
  /* Texto branco para contraste */
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 12px;
  margin-top: 5px;
  /* Adiciona um pequeno espaço entre os grupos */
}

/* Garante que as opções (option) dentro dos grupos mantenham o fundo
  branco padrão para facilitar a leitura.
*/
#quote-form-container .form-select optgroup option {
  background-color: #1c58a711;
  color: #212529;
}

/*--------------------------------------------------------------
# Estilos para Mensagens do Formulário (Status de Envio)
--------------------------------------------------------------*/

/* Garante que as mensagens de status fiquem ocultas por padrão */
.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  display: none;
}

/* Estilo da mensagem de sucesso (quando visível) */
.php-email-form .sent-message {
  color: #ffffff;
  background: #28a745;
  /* Verde para sucesso */
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-top: 15px;
  border-radius: 8px;
}

/* Estilo da mensagem de erro (quando visível) */
.php-email-form .error-message {
  color: #ffffff;
  background: #dc3545;
  /* Vermelho para erro */
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-top: 15px;
  border-radius: 8px;
}

/* Estilo do indicador de carregamento (quando visível) */
.php-email-form .loading {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  text-align: center;
  padding: 15px;
  margin-top: 15px;
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Seção Produtos (versão unificada)
--------------------------------------------------------------*/
.products .product-card {
  border: 1px solid #dee2e6;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 100%;
  box-shadow: 0 4px 15px rgba(10, 10, 10, 0.38);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.products .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Imagem */
.products .product-card-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to top, rgba(250, 248, 248, 0.089), rgba(247, 244, 244, 0.075));
}

.products .product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.products .product-card:hover .product-card-image img {
  transform: scale(1.05);
}

/* Overlay (título sobre a imagem) */
.products .product-card-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  border-radius: 0 0 12px 12px;
}

.products .product-card-image-overlay h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.products .product-card-image-overlay p {
  font-size: 0.95rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

/* Corpo do card */
.products .product-card-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.products .product-card-body p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Botão */
.products .btn-outline-primary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 30px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.products .btn-outline-primary:hover {
  background: var(--accent-gradient);
  color: var(--contrast-color);
  border-color: transparent;
}

/*--------------------------------------------------------------
# Seção Diferenciais
--------------------------------------------------------------*/
.differentials {
  background-color: #f8f9fa;
}

.differentials .differential-item {
  text-align: center;
  padding: 30px;
  height: 100%;
  background-color: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.differentials .differential-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(86, 184, 230, 0.2);
}

.differentials .differential-item i {
  font-size: 42px;
  margin-bottom: 20px;
  display: inline-block;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.differentials .differential-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Seção Como Funciona
--------------------------------------------------------------*/
.how-it-works .step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  height: 100%;
}

.how-it-works .step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 20px rgba(86, 184, 230, 0.4);
}

.how-it-works .step-title {
  font-size: 20px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .how-it-works .process-line .step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    border-top: 2px dashed #ccc;
    z-index: -1;
  }

  .how-it-works .process-line .col-md-4:last-child .step::after {
    display: none;
  }
}

/*--------------------------------------------------------------
# Seção Depoimentos
--------------------------------------------------------------*/
.testimonials {
  background-color: #f8f9fa;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 45px 10px 15px 10px;
  min-height: 200px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  border-radius: 15px;
  border-top: 4px solid;
  border-image: var(--accent-gradient) 1;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 6px solid #fff;
  margin: 0 auto;
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 55px 0 5px 0;
  color: var(--heading-color);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #c9e3f5;
  font-size: 26px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-gradient);
}

/*--------------------------------------------------------------
# Seção Call to Action / Contato
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: rgba(0, 0, 0, 0.281);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action p {
  color: #fff;
}

/*--------------------------------------------------------------
# Rodapé
--------------------------------------------------------------*/
.footer .footer-about .logo img {
  max-height: 80px;
}

.footer .social-links a {
  color: var(--contrast-color);
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(12, 12, 12, 0.747);
}

/* Footer Clean */
.footer {
  background: #17283b;
  color: #fff;
  font-size: 15px;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.footer a:hover {
  color: #56b8e6;
}

.footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer-slogan {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.footer .social-links a {
  margin-right: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer .social-links a i {
  font-size: 18px;
  color: #fff;
}

.footer .social-links a:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  transform: scale(1.1);
}

.footer-contact p {
  margin: 5px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact strong {
  color: #fff;
  margin-right: 5px;
}

/*--------------------------------------------------------------
# Preloader, Scroll Top e outros utilitários
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

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

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

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--accent-gradient);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  transform: scale(1.1);
}

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


/*--------------------------------------------------------------
# Portfolio Section - ESTRUTURA REVISADA
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  background-color: #d7dee6b9
}

.portfolio .portfolio-item img {
  background-color: #f8f9fa;
  margin-top: 10px;
  border-radius: 10px;
  height: auto;
  width: 100%;
}

.portfolio .portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.portfolio .portfolio-preview-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-preview-link img {
  transition: transform 0.4s ease;
}

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

.portfolio .portfolio-details {
  padding: 20px;
  background-color: #eee7e7;
}

.portfolio .portfolio-details img {
  padding: 20px;
  border-radius: 20px;
  background-color: #eee7e7;
}


.portfolio .portfolio-details .details-link {
  color: var(--heading-color);
  text-decoration: none;
}

.portfolio .portfolio-details .details-link:hover h4 {
  color: var(--accent-color);
}

.portfolio .portfolio-wrap img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  margin-top: 10px;
}

.portfolio .portfolio-details h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  transition: color 0.3s;
}

.portfolio .portfolio-details p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

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

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(1, 1, 1, 0.3);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

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

.portfolio-details .portfolio-description {
  padding-top: 30px;
  box-shadow: #000000;
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .container {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 1.5px rgba(1, 1, 1, 0.3);
}

/*--------------------------------------------------------------
# Ajustes Personalizados para o Lightbox do Portfólio (Glightbox) V2
--------------------------------------------------------------*/

/* 1. Força o contêiner principal a organizar os itens em uma coluna vertical. */
.gslide-inner-content {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* 2. Estilo do card da imagem. */
.gslide-media {
  max-height: 60vh;
  /* <<-- SUA SOLICITAÇÃO DE ALTURA */
  width: auto;
  max-width: 90vw;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.4);
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gslide-media img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

/* 3. Estilo corrigido e reforçado para o box do título. */
.gslide-description {
  position: relative !important;
  margin-top: 15px !important;
  padding: 15px 20px !important;
  background: rgba(15, 26, 41, 0.85) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 8px !important;
  color: #ffffff !important;
  width: 100%;
  /* <<-- ALINHAMENTO COM O CARD DA IMAGEM */
  max-width: 90vw;
  /* Garante que não fique maior que a imagem em telas largas */
  box-sizing: border-box !important;
  text-align: center;
}

/* Garante que a cor do título principal (h4) também seja branca */
.gslide-description .gslide-title {
  color: #ffffff !important;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
}

.page-title .container {
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*==============================================
Cookies - USA
================================================ 
/* Estilo para o banner de cookies */
.cookie-banner {
  position: fixed;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  /* Largura em porcentagem */
  max-width: 500px;
  background-color: #292b2e;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.473);
  z-index: 999;
}

/* Estilo para o título */
.cookies-title h2 {
  margin: 0;
  font-size: 18px;
  color: #c7bdbd;
}

/* Estilo para o conteúdo */
.content-container {
  margin-top: 10px;
}

/* Estilo para o texto de privacidade */
.content-container h3 {
  margin: 10px 0;
  font-size: 16px;
  color: #c7bdbd;
}

/* Estilo para o parágrafo */
.content-container p {
  margin: 5px;
  font-size: 14px;
  color: #E0E0E0;
}

.content-container a {
  color: #56b8e6;
}

/* Estilo para os botões */
.btn-container {
  margin-top: 20px;
}

.btn {
  padding: 10px 20px;
  margin: 0 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Estilo para o botão de aceitar */
.btn-accept {
  background-color: #007bff;
  color: #fff;
  border: 1px solid #0056b3;
}

.btn-accept:hover {
  background-color: #0056b3;
}

/* Estilo para o botão de rejeitar */
.btn-reject {
  background-color: #dc3545;
  color: #fff;
}

.btn-reject:hover {
  background-color: #c82333;
}

/* Estilo para o botão de política */
.btn-policie {
  background-color: #28a745;
  color: #fff;
}

.btn-policie:hover {
  background-color: #218838;
}

/*=================================================================
	Whatsapp boton
==================================================================*/
.btn-social {
  background-color: var(--bs-gray-200);
  border: 1px solid transparent;
  border-radius: .25rem;
  color: var(--bs-gray-500);
  display: inline-block;
  font-size: .975rem;
  height: 2.25rem;
  line-height: 2.25rem;
  padding: 0;
  text-align: center;
  transition: border-color .25s ease-in-out,background-color .25s ease-in-out,color .25s ease-in-out;
  width: 2.25rem
}
.btn-social:hover {
  color: var(--bs-white)
}
.btn-social:focus {
  outline: none
}
.btn-social:active {
  box-shadow: none!important;
  transition: none
}
.btn-social-outline {
  background-color: transparent;
  border-color: var(--bs-gray-400)
}
.btn-social-outline:hover {
  border-color: transparent
}
.social-ph {
  position: fixed;
  top: 30vh;
  right: 0px;
  z-index: 999;
}
.social-ph ul {
  padding: 0px;
  transform: translate(80%, 0);
}
.social-ph ul li {
  display: block;
  margin: 3px;
  background: rgba(18, 219, 192, 0.438);
  width: 300px;
  text-align: left;
  padding: 5px;
  border-radius: 30px 0 0 30px;
  transition: all 1s;
  z-index: 9999;
}
.social-ph ul li:hover {
  transform: translate(-110px, 0);
  background: #57cbcc;
}
.social-ph ul li:hover b {
  color: #ffffff;
  font-size: 18px;
}
.social-ph ul li:hover i {
  color: #ffffff;
 
}
.social-ph ul li a {
  color: var(--bs-black);
}
.social-ph ul li i {
  margin-right: 10px;
  color: #000000;
  padding: 15px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 20px;
  background: var(--bs-light-success);
  transform: rotate(0deg);
}
.social-ph ul li i.bi-whatsapp {
  font-size: 30px; /* Ajustando o tamanho específico do ícone do WhatsApp */
}
