/*
Theme Name: Revoluz Theme
Author: Revoluz Iluminação
Version: 1.0
Text Domain: revoluz-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Fira+Sans+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Fira+Sans+Extra+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');


body {
  font-family: 'Fira Sans', sans-serif;
}

input[type="search"]:focus,
input[type="text"]:focus,
input[type="number"]:focus,
select:focus {
  border-color: #9b00ff !important;
  box-shadow: 0 0 0 0.2rem rgba(106, 0, 181, 0.15) !important;
  outline: none !important;
}

.text-purple { color: #9b00ff !important; }
.text-purple a {  color: #9b00ff;  text-decoration: none;}
.text-purple a:hover {  text-decoration: underline !important; }
.text-dark-purple { color: #40006b; }
.text-muted a {  color: var(--bs-secondary-color) !important; text-decoration: none;}
.text-muted a:hover {  text-decoration: underline !important; }

a > i.bi {
  text-decoration: none;
}

/* ===========================
   HEADER
=========================== */
.revoluz-header {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.revoluz-header .container {
  max-width: 1320px;
}

.revoluz-header .user-area {
  font-size: 0.8rem !important; /* ajusta o tamanho geral */
}
.revoluz-header .user-area .btn {
  font-size: 0.8rem;
  padding: 0.375rem; /* botão menor */
}

/* --- LOGO --- */
.revoluz-header .custom-logo {
  display: inline-block;
  max-height: 50px;
  width: auto;
}

.revoluz-header .custom-logo-link {
  display: inline-block;
  align-items: center;
  text-decoration: none;
}

/* --- BUSCA --- */
.revoluz-header form {
  margin-bottom: 0 !important;
}


.revoluz-header form[role="search"] input[type="search"] {
  border: 1px solid #ccc;
  color: #9b00ff;
  transition: all 0.2s ease;
   background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23aaa' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242.656a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E")
              no-repeat right 0.75rem center;
  background-size: 16px;
  padding-right: 2rem; /* espaço pro ícone */
}


.revoluz-header input.form-control::placeholder {
  color: #aaa !important;
  font-weight: 200 !important;
  opacity: 1;
}


/* --- MENU --- */
.revoluz-header .navbar-nav {
  display: flex;
  flex-wrap: wrap; /* permite quebrar com harmonia antes do mobile */
  justify-content: center;
}

.revoluz-header .navbar-nav li {
  flex: 1 1 auto; /* deixa os itens se ajustarem à largura disponível */
  text-align: center;
}

.revoluz-header .navbar-nav li a {
  display: block;
  padding: 1em 2em; 
  color: #222;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.5px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap; /* impede quebra de linha dentro do item */
}

.revoluz-header .navbar-nav li a:hover,
.revoluz-header .navbar-nav li a:focus,
.revoluz-header .navbar-nav li.current-menu-item > a {
  color: #9b00ff;
  border-bottom-color: #9b00ff;
}

/* --- AJUSTE SUAVE ENTRE DESKTOP E MOBILE --- */
@media (max-width: 1082px) {

  .revoluz-header .navbar-nav li a {
    padding: 0.75em 1em; /* padding mais leve */
  }


}


.revoluz-header .btn-outline-dark:hover {
  background-color: #40006b;
  color: #fff;
  border-color: #40006b;
}


/* wrapper pode ser flex, mas deixe o conteúdo encolher */
.user-area { min-width:0; }

/* nome em 2 linhas + “...” */
.user-name{
  width:130px;               /* largura fixa pro cálculo do clamp */
  display:-webkit-box;
  -webkit-line-clamp:2;
  line-clamp:2;
  -webkit-box-orient:vertical;
  white-space:normal;        /* importante: permite quebrar linhas */
  overflow:hidden;           /* oculta excedente */
  text-overflow:ellipsis;
  line-height:1.2;
}

@media (max-width: 992px) {
  .user-name {
    display: none;
  }
}

/* evita que avatar e botões encolham e empurrem o nome */
.user-area img,
.user-area .btn{ flex-shrink:0; }

/* --- BOTÃO LOGIN (3 risquinhos) --- */
#btn-login {
  border: none;
  background: none;
  position: relative;
  width: 40px;
  height: 40px;
}

#btn-login .navbar-toggler-icon {
  background-image: none;
  width: 22px;
  height: 16px;
  display: inline-block;
  position: relative;
}

#btn-login .navbar-toggler-icon::before,
#btn-login .navbar-toggler-icon::after,
#btn-login .navbar-toggler-icon div {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #222;
  border-radius: 1px;
  transition: all 0.3s ease;
}

#btn-login .navbar-toggler-icon::before {
  top: 0;
}

#btn-login .navbar-toggler-icon::after {
  bottom: 0;
}

#btn-login .navbar-toggler-icon div {
  top: 7px;
}

/* Hover */
#btn-login:hover .navbar-toggler-icon::before,
#btn-login:hover .navbar-toggler-icon::after,
#btn-login:hover .navbar-toggler-icon div {
  background: #6a00b5;
}

.user-area img[data-avatar] {
    object-fit: cover;
    object-position: center;
    width: 32px;   /* garantir proporção */
    height: 32px;
    border-radius: 50%; /* por segurança */
    border: 1px solid dimgray;
}

/* Responsividade header Revoluz */
@media (max-width: 767.98px) {
  .revoluz-header {
    text-align: center;
  }

  .revoluz-header .custom-logo {
    max-height: 36px;
  }

  .revoluz-header form[role="search"] input[type="search"] {
    font-size: 0.9rem;
    background-position: right 0.75rem center;
    background-size: 14px;
    padding-right: 2rem;
  }

  .revoluz-header .btn-light i,
  .revoluz-header .btn-light img {
    vertical-align: middle;
  }

  .revoluz-header .btn-light {
    border: none;
    background: transparent;
  }

  .navbar-collapse {
    margin-top: 0.5rem;
  }
    .revoluz-header.pt-4 {
    padding-top: 0 !important;
  }
    .revoluz-header .navbar {
    margin-top: 0 !important;
  }

  .revoluz-header .navbar-nav li a {
    border-bottom: 1px solid #686868 !important;
    font-weight: 500 !important;
  }

  /* Desativa o submenu inline no mobile */
    .revoluz-header .navbar-nav ul.sub-menu {
    display: block !important;       /* deixa o WP mostrar dentro do colapso */
    position: static !important;     /* remove o absolute */
    width: 100% !important;          /* ocupa largura do container */
    border: none !important;
    padding: 0.25rem 0 !important;
    box-shadow: 0 0px 0px rgba(255, 255, 255, 0) !important;

  }

  .revoluz-header .navbar-nav li ul.sub-menu li:not(:last-child) > a::after {
  content: "" !important;
  margin-left: 0 !important;
  }

  .revoluz-header .navbar-nav ul.sub-menu li {
    display: block !important;
    margin: 0 !important;
  }


  .revoluz-header .navbar-nav ul.sub-menu li a {
    padding-left: 1.5rem !important; /* leve recuo visual */
    font-size: 0.9rem !important;
    border-bottom: 0px !important;
    font-weight: 200 !important;
  }
}


/* Compactar o botão do menu no mobile */
.revoluz-header .navbar-toggler {
  border: none;          /* remove borda */
  padding: 0;            /* remove espaçamento interno */
  background: none;      /* remove fundo */
  width: 36px;           /* opcional: tamanho fixo */
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ícone hambúrguer menor */
.revoluz-header .navbar-toggler-icon {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
}



/*  MENU DE CONTEXTO DO LOGIN */
.user-menu-desktop {
  position: relative;
}

.user-menu-trigger img[data-avatar] {
  width: 28px;
  height: 28px;
  object-fit: cover;
}

.user-menu-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s ease;
  z-index: 999;
}

.user-menu-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 28px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-left: 1px solid rgba(0,0,0,0.08);
  transform: rotate(45deg);
}

.user-menu-link {
  display: block;
  padding: 8px 14px;
  border-radius: 12px;
  color: #212529;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.18s ease;
}

.user-menu-link:hover {
  background: rgba(155,0,255,0.08);
  color: #9b00ff;
}

.user-menu-desktop:hover .user-menu-dropdown,
.user-menu-desktop:focus-within .user-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}




/*-----------------------------------------*/
/* ------ CONFIGURAÇÕES DE SUBMENUS ------*/
/*-----------------------------------------*/
/* --- SUBMENUS INLINE ALINHADOS AO MENU PRINCIPAL --- */
.revoluz-header .navbar-nav {
  position: relative; /* define o contexto pro submenu */
}

/* ajusta posição dos pais */
.revoluz-header .navbar-nav > li {
  position: static;
}

/* --- SUBMENUS INLINE --- */
.revoluz-header .navbar-nav li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%; /* 👈 alinha exatamente à largura do navbar */
  background: white;
  z-index: 999;
  text-align: center;
  padding:1em 0 !important;
  box-shadow: 0 3px 5px rgba(0,0,0,0.15);
  border-radius: 0 0 12px 12px;
  border-top: 1px solid #e5e5e5;
  /*background:  linear-gradient(to bottom, #fff  0%, whitesmoke 100%);*/
  white-space: nowrap; 
}

.revoluz-header .navbar-nav li ul.sub-menu li {
  display: inline-block;
}

.revoluz-header .navbar-nav li ul.sub-menu li a {
  color: #222;
  border: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 1em 1em;
}

.revoluz-header .navbar-nav li ul.sub-menu li a:hover {
  color: #9b00ff;
  border: none;
}
/* pipe depois de cada link, exceto o último */
.revoluz-header .navbar-nav li ul.sub-menu li:not(:last-child) > a::after {
  content: "|";
  display: inline-block;
  margin-left: 2em;
  color: #ccc;
  position: relative;
  top: -0.5px; /* 👈 corrige o leve desalinhamento vertical */
  font-weight: 300;
}







/* ===========================
   HOME REVOLUZ
=========================== */
.btn-primary {
  background-color: #40006b;
  border: none;
  font-weight: 600;
  padding: 8px 40px;
  transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
  background-color: #9b00ff;
}

.btn-outline-primary {
  color: #9b00ff !important;
  border:1px solid  #9b00ff;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.btn-outline-primary:hover {
  border:1px solid  #9b00ff;
  background-color: #9b00ff;
  color: white !important;
}

.revoluz-banner h1 {
  font-family: 'Fira Sans', sans-serif;
  font-weight: 200;
  font-style: italic; 
  font-size: clamp(1.8rem, 4vw, 5rem); /* responsivo */
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.55); /* sombra de contato suave */
  letter-spacing: 0.5px;
  line-height: 0.6;
  margin-bottom: 0.5rem;
}

.revoluz-banner p {
  font-family: 'Fira Sans', sans-serif;
  font-size: clamp(1rem, 1.5vw, 5rem); /* responsivo */
  text-shadow: 0 2px 4px rgba(0,0,0,0.55); /* sombra de contato suave */
}

.carousel-indicators{
  margin-bottom: 4rem !important;
}

.carousel-indicators [data-bs-target] {
  width: 10px;              /* largura = altura → vira círculo */
  height: 10px;
  border-radius: 50%;       /* bordas arredondadas */
  background-color: transparent;  /* sem preenchimento */
  border: 2px solid #fff;         /* borda branca padrão */  
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #fff; 
}

.revoluz-destaques{
  padding: 5rem 0px;
}

.revoluz-destaques img {
  object-fit: cover;
  border-radius: 0.75rem;
}

.revoluz-destaques .text-shadow {
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.revoluz-destaques h3{
  font-size: 4rem;
  font-weight: 200;
}

.revoluz-destaques h4,
.revoluz-destaques h5 {
  font-family: 'Fira Sans Condensed', sans-serif;
  letter-spacing: 0.5px;
  font-weight: 400;
  text-transform: lowercase;
}

.revoluz-destaques .row.g-4 {
  --bs-gutter-x: 3.3rem; /* horizontal */
  --bs-gutter-y: 3.3rem; /* vertical */
}

/*BOXES INFORMATIVOS*/
.revoluz-features {
  margin-top: -60px; /* faz os cards subirem sobre o banner */
  position: relative;
  z-index: 10; /* garante que fiquem acima do banner */
}

.revoluz-box {
  aspect-ratio: 1 / 1;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.revoluz-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.revoluz-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease, transform 0.4s ease;
}

.revoluz-box:hover img {
  transform: scale(1.05);
}

.revoluz-box-text {
  z-index: 2;
  pointer-events: none;
}

.revoluz-box-text h5 {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}









/* ===========================
   EXPLORAR LUMINÁRIAS
=========================== */

.atalho-item {
  display: inline-block;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.atalho-item:hover .atalho-img {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(155, 0, 255, 1);
}

.atalho-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.atalho-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*filter: grayscale(100%);*/
  transition: all 0.3s ease;
}

.atalho-item:hover img {
  /*filter: grayscale(0%);*/
}

.atalho-label {
  font-size: 0.9rem;
  font-family: Fira Sans Extra Condensed;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
}

.atalho-item.ativo .atalho-img {
  background-color: #40006b;
  box-shadow: 0 0 10px rgba(64, 0, 107, 0.5);
}

.atalho-item.ativo img {
  filter: brightness(0) invert(1);
}

.col-atalho {
  flex: 0 0 12.5%; /* 100 / 8 = 12.5% */
  max-width: 12.5%;
}
@media (max-width: 992px) { /* tablet */
  .col-atalho {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 576px) { /* mobile */
  .col-atalho {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Títulos das sanfonas */
.accordion-button {
  font-weight: 800 !important;
  letter-spacing: 0.3px;
}

/* Itens internos (labels, checkboxes, texto etc.) */
.accordion-body,
.accordion-body label,
.accordion-body span,
.form-check-label {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

/* Ajuste de espaçamento e contraste visual */
.accordion-item {
  border: none;
  border-bottom: 1px solid #e3e3e3;
}

.accordion-button:not(.collapsed) {
  color: #40006b;
  background-color: #f8f5ff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #9b00ff;
}


#filtro-linha-input {
  font-size: 0.95rem;
  padding: 5px 10px;
}

/* cor da borda e fundo quando marcado */
.form-check-input:checked {
  background-color: #9b00ff;
  border-color: #9b00ff;
}

/* hover sutil */
.form-check-input:hover {
  border-color: #9b00ff88;
}


/* mantém coerência com estilo geral */
.form-check-label {
  cursor: pointer;
  transition: color 0.15s ease;
}

/* cor/peso quando marcado */
.form-check-input:checked + .form-check-label,
.form-check-input:checked + .form-check-label > span {
  color: #40006b !important;
  font-weight: 600 !important;
}

/* QUADRO (foto com sombra) */
.prod-foto {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  border: 1px solid lightgray;
  transition: all 0.25s ease;
}
.prod-foto:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.30);
}
/* o .ratio cria o quadrado, nós apenas garantimos o contexto */
.prod-foto .ratio {
  position: relative;
}

/* imagem dentro do quadro */
.prod-foto img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

/* BLOCO INFERIOR */
.prod-info {
  background: transparent;
  padding-top: 0.5rem;
}

/* CÓDIGO */
.produto-card .prod-info .codigo {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #9b00ff;
  line-height: 1rem;
}

/* CÓDIGO (col-md-4 → 3 colunas) */
@media (min-width: 768px) {
  .produto-card .prod-info .codigo {
    font-size: 1.15rem;
  }
}

/* CÓDIGO (col-lg-3 → 4 colunas) */
@media (min-width: 992px) {
  .produto-card .prod-info .codigo {
    font-size: 1.25rem;
  }
}

/* CÓDIGO (col-xl-2 → 6 colunas) */
@media (min-width: 1200px) {
  .produto-card .prod-info .codigo {
    font-size: 1.15rem;
  }
}

/* -------- ÍCONES LIMPOS -------- */
.icon-btn {
  border: none;
  background: transparent;
  color: #9b00ff;
  font-size: 1.2rem;
  padding: 0;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

/* hover sutil */
.icon-btn:hover {
  transform: scale(1.1);
}

/* estado ativo */
.icon-btn.active {
  transform: scale(1.1);
}

/* coração → preenchido */
.prod-actions .icon-btn.fav:hover i::before,
.prod-actions .icon-btn.fav.active i::before {
  content: "\f415"; /* bi-heart-fill */
}

/* bookmark → preenchido */
.prod-actions .icon-btn.project:hover i::before,
.prod-actions .icon-btn.project.active i::before {
  content: "\f19c"; /* bi-bookmark-fill */
}

/* bookmark → ativo no usuário */
.icon-btn.project[data-em-projeto="sim"] i::before {
  content: "\f19c"; /* bookmark-check-fill */
  color: #9b00ff;
}

/* comparar → preenchido */
.prod-actions .icon-btn.compare:hover i::before,
.prod-actions .icon-btn.compare.active i::before {
  content: "\f13d"; /* bi-arrow-left-right-circle-fill */
}

.icon-btn .ficha-tecnica {
  font-size: 1.25rem;
  color: #40006b;
  transition: color .2s ease;
}
.icon-btn .ficha-tecnica:hover {
  color: #9b00ff;
}
.ms-auto.d-flex {
  align-items: center;
  gap: .5rem; /* ou .75rem pra mais folga */
}

/* LÂMPADA/LED e LINHA (2ª linha) */
.prod-info .fonte {
  color: #6c757d;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 0.8rem;
}
.prod-info .fonte img {
  width: 22px; 
  height: auto;
  vertical-align: middle;
}

/* etiqueta visível e fixada no canto inferior */
.prod-foto .linha {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 3;
}

.linha-btn {
  width: fit-content;
  display: block;
  padding: 2px 20px;
  border: 1px solid lightgray;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 400;
  font-style: italic;
  color: #8f8f8f;
  background: rgba(255,255,255,0.9);
  transition: all 0.2s ease;
  margin: 0 0 1em 0.5em;
}

.linha-btn:hover {
  background-color: #9b00ff;
  border: 1px solid #9b00ff;
  color: #fff;
  text-decoration: none;
}


.logo-loja {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border: 1px solid lightgrey;
}


/* ====== GRID DE CARDS INICIAIS DO EXPLORAR ====== */
/* -------- Cards padrão -------- */
#grid-produtos .card {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

#grid-produtos .card:hover:not(.produto-card) {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

/* -------- Somente os cards da 1ª carga (categorias) -------- */
.card-body-categoria {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Card com imagem de fundo */
.revoluz-card-tipo-produto {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Clareamento + preto e branco */ 
.revoluz-card-tipo-produto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  /* backdrop-filter: grayscale(100%) brightness(1.2);*/
  z-index: 1;
}

/* Clareamento + preto e branco */ 
.revoluz-card-tipo-produto:hover::before {
  background: rgba(0,0,0,0);
}

/* Conteúdo sempre acima */
.revoluz-card-tipo-produto-body {
  position: relative;
  z-index: 2;
}

/* Ajuste visual opcional */
.revoluz-card-tipo-produto-body img {
  filter: none; /* mantém o ícone original */
}

.revoluz-tipo-produto-titulo {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0 2px 6px rgba(0,0,0,1);
  text-transform: uppercase;
  line-height: 1.1em;
}















/* ===========================
   LINHAS DE LUMINÁRIAS
=========================== */
.faixa-linhas{
  background-color: #40006b;
  box-shadow: inset 0 40px 100px rgba(0,0,0,1),
              inset 0 -40px 100px rgba(0,0,0,1);
}

.faixa-linhas h2 {
  color: #fff;
  font-weight:200;
  font-style:italic;
}

.faixa-cards {
  height: 430px;
  position: relative;
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
  scroll-padding-left: 12rem;
  scroll-padding-right: 12rem;
}

.faixa-cards::-webkit-scrollbar {
  height: 6px;
}
.faixa-cards::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,.2);
  border-radius: 3px;
}

.card-linha {
  position: relative;
  width: 340px;
  flex-shrink: 0;
  border: none;
  overflow: visible; /* permite que o conteúdo "vaze" */
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 1;
}

.thumb-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.titulo-linha {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 16px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
  color: #fff;
  font-size: 2rem;
  font-weight: 200;
  font-style: italic;
  text-transform: lowercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  margin: 0;
  line-height: 1;
}

.descricao-linha {
  position: absolute;
  top: 55%; /* logo abaixo da imagem */
  left: 0;
  transform: none;
  width: 50vw; /* 👈 mais largo que o card */
  padding: 1rem 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
  font-family: "Fira Sans Extra Condensed", "Fira Sans Condensed", "Fira Sans", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #fff;
  display: flex;
  flex-direction: column;  /* 👈 empilha conteúdo verticalmente */
  gap: 0.5rem; 
}

.card-linha.ativo {
  z-index: 3; /* fica acima dos outros */
}

.card-linha.ativo .thumb-wrapper {
  border: 1px solid #fff;
  filter: brightness(1);
  z-index: 10; /* fica sobre os vizinhos */
    box-shadow:
    0 0 20px 6px rgba(157, 78, 249, 1);   /* brilho suave */
}

/* cards que NÃO estão ativos */
.card-linha:not(.ativo) {
  width: 170px;            /* 👈 reduz a largura dos inativos */
  opacity: 0.7;            /* opcional: escurece um pouco */
}

.card-linha.ativo .descricao-linha {
  opacity: 1;
  pointer-events: auto;
}

  .btn-linha {
  align-self: flex-start;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-family: Fira Sans;
  background: #9b00ff;
  padding: 6px 14px;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.btn-linha:hover {
  background: #b030ff;
  text-decoration: none;
}

/* === MODO MOBILE === */
@media (max-width: 768px) {
  .descricao-linha {
    position: relative;
    top: 0;
    left: 0;
    padding: 1rem;
    transform: none;
    width: 100%; /* segue a largura do card */
    box-shadow: none;
    border-radius: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    align-items: center;         /* centraliza o conteúdo */
    text-align: center;
    gap: 1rem;
  }

  .card-linha.ativo .descricao-linha {
    opacity: 1;
    pointer-events: auto;
  }

    .faixa-cards {
    height: 570px;
    scroll-padding-left: 24px;
    scroll-padding-right: 24px;
    gap: 0.75rem; /* menos espaço entre os cards */
    padding: 0 0.75rem; 
  }

  .card-linha,
  .card-linha:not(.ativo) {
    width: 100%;
    transform: none;
    opacity: 1;
  }

    .btn-linha {
    align-self: center;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 15px 45px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .btn-linha:hover,
  .btn-linha:active {
    transform: scale(1.03);
    opacity: 0.95;
    text-decoration: none;
  }

}







/* ===========================
   PÁGINA DE LUMINÁRIAS
=========================== */

.linha-descricao{
    margin-top: -27px;
    z-index: 20;
    position: relative;
}

@media (max-width: 768px) {
.linha-descricao{
    margin-top: 1em !important;
}

.linha-descricao .container .mx-5{
    margin-right: 0px !important;
    margin-left: 0px !important;
}

.linha-descricao .container .p-5{
    padding: 1.5em !important;
}

}








/* ===========================
   PÁGINA DO PRODUTO
=========================== */

.galeria-wrap {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  height: 100%;
}

.thumbs-col {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  overflow-y: auto;
  max-height: 485px;
  scrollbar-width: thin;
}

.thumbs-col img {
  width: 75px;
  height: 75px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
  cursor: pointer;
  opacity: .7;
  transition: .2s;
  border: 2px solid #eee;
}

.thumbs-col img.active {
  opacity: 1;
  border: 2px solid #9b00ff;
}

.main-box {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
  justify-items: center;
  background: #f8f8f8; 
  border-radius: 12px;
  padding: 1rem;
}

.col-ico img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  cursor: pointer;
  border-radius: 50%;
  /*border: 1px solid #ddd;*/
  transition: all 0.2s ease;
}

.grupo-ico:hover {
  border-color: #9b00ff;
}

.main-img {
  max-width: 100%;
  height: 520px;
  object-fit: contain;
  border-radius: 12px;
  aspect-ratio: 1;
}

.overlay-img {
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.grupo-ico,
.grupo-ico-overlay {
  display: inline-flex;
  background: #fff;
  border-radius: 50px;
  padding: 3px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.2s ease;
}
.grupo-ico.ativo,
.grupo-ico-overlay.ativo {
  border-color: #9b00ff;
}
.grupo-ico img,
.grupo-ico-overlay img {
  border-radius: 50%;
  object-fit: cover;
}
.grupo-ico img + img,
.grupo-ico-overlay img + img {
  margin-left: -12px; /* sobreposição leve, estilo Mastercard */
}

.legenda-destaque {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.legenda-destaque.visivel {
  opacity: 1;
}

.chip { 
  display:inline-flex; 
  align-items:center; 
  gap:.5rem; 
  font-size:.875rem; 
}
.chip img { 
  width: 25px; 
  height: 25px; 
  object-fit: contain; 
}

.table-sm th, 
.table-sm td {
  padding: 0.3rem 0.3rem;
}

.table thead th {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--bs-body-color);
  background-color: transparent !important;
}

.table td img {
  vertical-align: middle;
}

.table td {
  font-size: 0.75rem;
  color: #333;
  text-wrap-mode: nowrap;
}

.bi-info-circle {
  font-size: 0.9rem;
  color: #9b00ff !important; /* Roxo Revoluz */
  cursor: pointer;
}

.bi-info-circle:hover {
  color: #40006b !important;
}

.tooltip-inner {
  max-width: 280px;
  padding: 0.8rem 0.8rem; /* ↑ mais respiro */
  color: #fff;
}

.desenho-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ededed;
  border-radius: 6px;
  padding: 1.5rem 3.5rem;
  max-width: 350px; /* largura máxima em desktop */
  flex-direction: column;
}

.desenho-wrap img {
  margin: 1rem;
  opacity: 0.7;
  max-height: 310px;
}

.nicho-info {
  font-size: 0.80rem !important;
  color: #333;
  align-items: center;
  display: flex
}

.nicho-info img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  filter: grayscale(100%) brightness(1);
  opacity: 0.7;
}

.nicho-info .fw-semibold {
  margin-right: 0.25rem;
}

.lista-acabamentos .acab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lista-acabamentos .acab-item .acab-ico {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  /*border: 1px solid #ccc;*/
  transition: transform 0.2s ease;
}

@media (max-width: 768px) {
    .lista-acabamentos .acab-item .acab-ico {
      width: 28px;
      height: 28px;
 }
}

.texto-codigo {
  font-size: 0.75rem;
  color: #555;
  margin-top: 0.25rem;
  letter-spacing: 0.3px;
}

/* linha cinza ocupando toda a largura */
.titulo-secao-wrap {
  border-bottom: 1px solid #dcdcdc;
  margin: 1rem 0 1rem;
}

/* texto + barra roxa só embaixo do texto */
.titulo-secao {
  position: relative;
  display: inline-block;          /* 🔥 largura = largura do texto */
  margin: 0;
  left: 1.5rem; 
  padding: .75rem 0 .75rem 0;
  font-weight: 600;
}

/* barra roxa limitada ao texto */
.titulo-secao::after {
  content: "";
  position: absolute;
  left: 0;                   /* alinha com o texto */
  bottom: -2px;                   /* encosta na linha cinza */
  width: 100%;                    /* 100% do TEXTO, não da coluna */
  height: 4px;
  background: #9b00ff;
  border-radius: 4px;
}

.bullet-purple {
  color: #9b00ff;
  display: inline-block;
  transform: translateY(-2px);
}

.icones_prod{
  width: 25px;
  height: 25px;
}

.curva-wrap {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 6px;
}

.curva-img {
  max-width: 100%;
  height: auto;
}

.icone-curva svg {
  width: 22px;
  height: 22px;
  margin-top: -2px;
}

.icone-curva svg .cls-1 {
  stroke: #6c757d !important;
}

.btn:hover .icone-curva svg .cls-1 {
  stroke: #fff !important;
}




/* ===== CONTAINER DO SLIDER ===== */
.faixa-ambiente .container {
  position: relative;
}

/* ===== SETAS ===== */
.ambiente-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);

  box-shadow: 0 2px 10px rgba(0,0,0,0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 10;

  transition: all .2s ease;
}

.ambiente-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.ambiente-left { left: 0px; }
.ambiente-right { right: 0px; }

@media (max-width: 768px) {
  .ambiente-left { left: 0; }
  .ambiente-right { right: 0; }
}

/* ===== SLIDER ===== */
.ambiente-scroll {
  display: flex;
  gap: 10px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 10px 0;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  scrollbar-width: thin;
}

.ambiente-scroll::-webkit-scrollbar {
  height: 6px;
}
.ambiente-scroll::-webkit-scrollbar-thumb {
  background: #c9c9c9;
  border-radius: 3px;
}

/* ===== ITEM ===== */
.ambiente-item {
  flex: 0 0 auto;
  height: 550px;     /* <<< ALTURA FIXA */
  scroll-snap-align: start;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f4f4f4;
  border-radius: 14px;
  overflow: hidden;

  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

/* Imagem com proporção preservada */
.ambiente-item img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* MOBILE */
@media (max-width: 768px) {
  .ambiente-item {
    height: 280px;
  }
}










@media (max-width: 576px) {
  .desenho-wrap {
    max-width: 100%;
    margin: 0 3em;
  }

  .desenho-wrap img {
    max-height: auto;
  }
}

@media (max-width: 991px){
  .galeria-wrap { grid-template-columns: 1fr; }
  .thumbs-col { flex-direction: row; overflow-x: auto; overflow-y: hidden; }
  .thumbs-col img { width: 64px; height: 64px; }
  .main-box { grid-template-columns: 40px 1fr 40px; }
  .main-img { max-height: 380px; }
}

@media (max-width: 576px) {
  .table th {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 70px; /* ou 60px se quiser mais compacto */
  }
}

.divisor-ambiente {
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
}
























/* ===========================
   MODAL DE PROJETOS
=========================== */

.btn.btn-link.text-purple:hover,
.btn.btn-link.text-purple:focus {
  color: #9b00ff !important;
  text-decoration: none !important;/* remove sublinhado */
}

.modal-body #listaProjetos .projeto-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 6px;
  transition: all .2s ease;
  cursor: pointer;
}
.modal-body #listaProjetos .projeto-item:hover {
  background: #f8f5ff;
  border-color: #9b00ff55;
}
.btn-delete-projeto,
.btn-delete-produto {
  opacity: 0.6;
  color: grey !important;
  transition: opacity .2s ease;
}
.btn-delete-projeto:hover,
.btn-delete-produto:hover {
  opacity: 1;
  color: #ff0033 !important;
}
.projeto-item .bi-folder2-open::before {
  content: "\F3D7"; /* ícone de pasta fechada (Bootstrap Icons "folder") */
}
.projeto-item.ativo .bi-folder2-open::before {
  content: "\F3D8"; /* ícone de pasta aberta ("folder2-open") */
}
.produtos-list {
  border-left: 2px solid #9b00ff22;
}
.produtos-list .produto-item:hover {
  background: #f8f5ff;
  border-radius: 6px;
}
.produtos-list strong {
  color: #9b00ff;
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-weight: 600;
}

.produto-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.produto-item > .d-flex {
  flex: 1; /* permite que o bloco da esquerda cresça */
  min-width: 0; /* evita overflow */
}

.input-aplicacao {
  flex: 1;           /* ocupa o espaço restante */
  min-width: 120px;  /* limite mínimo pra não colapsar */
  width: auto !important;
  margin-right: 0.5rem;
}

/* ESTILOS DAS TAGS DE PROJETO */
.tags-wrap {
  display: flex;
  flex-wrap: wrap;
}

.tag-chip {
  background: #9d4ef920;
  border: 1px solid #9d4ef9;
  color: #9d4ef9;
  border-radius: 4px;
  padding: 0px 10px;
  font-size: 0.7rem;
  font-weight: 400;
  text-decoration: none;
}

.tag-chip .form-control-sm {
  background: transparent !important;
  border: 0px !important;
  color: #9d4ef9;
  width: 40px;
  padding: 0px !important;
    font-size: 0.7rem !important;
}
.btn-remove-tag{
  color: #9d4ef9;
}
/* Força exibição dos spinners do input[type=number] no Chrome/Edge */
.tag-chip input[type="number"]::-webkit-inner-spin-button,
.tag-chip input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;            /* deixa sempre visível */
  pointer-events: auto;  /* mantém clicável */
  background: transparent !important;
}
/* Opcional: suaviza o visual */
.tag-chip input[type="number"] {
  -moz-appearance: textfield; /* remove estilo feio no Firefox */
  appearance: auto;           /* mantém padrão moderno */
  text-align: center;
  background: transparent !important;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(155, 0, 255, 0));
  }
  40% {
    transform: scale(1.4);
    filter: drop-shadow(0 0 6px rgba(155, 0, 255, 0.8));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(155, 0, 255, 0));
  }
}

/* anima só o ícone interno */
.icon-btn.pulse i {
  animation: pulseGlow 0.4s ease-in-out;
}

.btn-comparar-flutuante {
  z-index: 50;
  font-weight: 600;
  animation: blink 1s infinite;
  color: #40006b !important;
  display: flex;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-120%) translateX(10px);
}

.page-template-produto .acoes-cabecalho .btn-comparar-flutuante {
  transform: translateY(85%) translateX(10px);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}






/* ===========================
   EDIÇÃO DE PROJETO NA TELA DO USUÁRIO
=========================== */

.projeto-header {
    background: #9b00ff;
    color: #fff;

    padding: 20px 24px;

    border-top-left-radius: 12px;
    border-top-right-radius: 12px;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.projeto-header .text-light {
    opacity: 0.75;
}
.projeto-header {
    margin-bottom: 0;
}
.projeto-box {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.link-projeto-item {
    text-decoration: none;
    display: block;
}

.link-projeto-item:hover {
    opacity: 0.8;
}

.input-nome-projeto {
  max-width: 420px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff !important;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.75) !important;
  box-shadow: none !important;
}

.input-nome-projeto:focus {
  color: #fff !important;
  background: rgba(255,255,255,0.08) !important;
  border-color: #fff !important;
  box-shadow: none !important;
}

.input-nome-projeto::placeholder {
  color: rgba(255,255,255,0.7);
}

.btn-salvar-nome-projeto {
  color: #fff !important;
  text-decoration: none !important;
}

.btn-salvar-nome-projeto:hover {
  color: rgba(255,255,255,0.75) !important;
}











/* ===========================
   POP UP PARA LOGIN REVOLUZ
=========================== */

.login-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.login-popup {
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  max-width: 400px;
  text-align: center;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}










/* ===========================
   MINHA CONTA - MEUS FAVORITOS/PROJETOS/FICHAS
=========================== */
.user-menu-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: #2a2a2a; /* off-black */
  padding: .3rem .8rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all .2s ease;
}

.user-menu-item i {
  font-size: 1rem;
}

.user-menu-item:hover {
  color: #9b00ff;
  background-color: #f5e8ff;
}

.user-menu-item.ativo {
  color: #9b00ff;
  font-weight: 600;
  background-color: #f5e8ff;
}

.user-fichas-wrap .table td,
.user-fichas-wrap .table th {
  font-size: 1rem;
}

.project-card {
    border-radius: 18px;
}

.project-thumb {
    width: 50%;
    height: 150px;
    overflow: hidden;
    background:  linear-gradient(to bottom, #f1eee3 30%, rgb(211 208 203) 100%);
    border: 1px solid whitesmoke;
}

.project-label {
    background-color: #9b00ff;
    color: #fff;
}

.project-thumb img {
    transition: transform .3s ease;
}

/* luminárias normais, lineares, spots, plafons */
.project-thumb img.is-horizontal {
    object-fit: cover;
    transform: scale(1.7);
}

.project-thumb img.is-horizontal:hover {
    transform: scale(1.22);
}

/* pendentes, arandelas ultra verticais etc. */
.project-thumb img.is-vertical {
    object-fit: contain;
    padding: 8px; /* opcional: margem interna para respiração */
    transform: scale(1); /* zoom leve */
}

.project-thumb img.is-vertical:hover {
    transform: scale(1.05);
}


.project-label a {
    text-decoration: none !important;
}

.project-label .btn-edit-projeto,
.project-label .btn-delete-projeto {
  opacity: 1 !important;
}

.project-label i {
    display: inline-block;              /* Ajuda o transform a funcionar bem */
    cursor: pointer;
    color: #fff;
    transform: scale(1);
    transition: transform .15s ease;    /* Sem isso o hover não “anima” */
}

.project-label .btn-edit-projeto:hover i,
.project-label .btn-delete-projeto:hover i {
    transform: scale(1.2);
}








/* ================================
   COMPARAR MODELOS
================================ */

/* ================================
   GRID MESTRE DA PÁGINA DE COMPARAÇÃO
================================ */

.compare-grid-wrapper {
  overflow-x: auto;
  width: 100%;
}

.compare-grid {
  display: grid;
  grid-template-columns:
      180px            /* coluna títulos */
      repeat(4, 278px); /* 4 produtos */
  gap: 0;
  width: max-content; /* permite rolar no mobile */
}

/* ================================
   TÍTULOS
================================ */

.cmp-title {
  font-weight: 600;
  font-size: 1rem
}

/* ================================
   CÉLULAS
================================ */

.cmp-cell {
  padding: 20px 12px;
  font-size: 0.8rem;
}

.cmp-cell svg .cls-3 {
  fill: none !important;
}

.cmp-cell-stripe {
  margin: 1em 0px;
  border-bottom: 1px solid #8f8f8f;
  background-color:#f0f0f0;
}

.cmp-cell:last-child {
  border-right: none;
}

/* ================================
   DIVISOR (LINHA DO GRID)
================================ */

.cmp-divisor {
  height: 18px;
  border-bottom: 2px solid #ccc !important;
  background: transparent;
}

/* ================================
   DESENHO
================================ */

/* Wrapper controla o tamanho máximo do desenho técnico */
.compara-desenho-wrap {
  width: 100%;
  max-width: 140px;   /* <<< ajuste como quiser */
  margin: 0 auto;
}

/* Torna o SVG escalável e respeitando o wrapper */
.compara-desenho-wrap svg {
  width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

/* ================================
   IMAGENS
================================ */

.cmp-img {
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
}

.cmp-placeholder {
  border: 2px dashed #ccc;
  padding: 30px 0;
  border-radius: 6px;
  text-align: center;
  color: #aaa;
  aspect-ratio: 1;
}

/* ================================
   ÍCONES
================================ */

/* Lista vertical com espaçamento fixo */
.cmp-list {
  display: flex;
  flex-direction: column;
  gap: 6px; /* espaçamento entre itens */
}

/* Cada item: ícone + texto alinhados */
.cmp-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Ajuste para ícone */
.cmp-list-item .cmp-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  object-fit: contain;
}


/* ================================
   SELECTS
================================ */

.form-select-sm {
  width: 100%;
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid #40006b;
  color: #40006b;
  font-weight: 600;
  font-size: 1.1rem;
}

.form-select-sm:focus,
.form-select-sm:focus {
  border-color: #9b00ff;
  color: #9b00ff;
  box-shadow: 0 0 0 0.2rem rgba(155, 0, 255, 0.15);
}


.page-title {
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #222;
  margin-bottom: 6px;
}

.page-subtitle {
  font-size: 0.9rem;
  color: #6c757d;
}



/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
  .compare-grid {
    grid-template-columns:
        150px
        repeat(4, 220px);
  }
}








/* ===========================
   MOODBOARD ACABAMENTOS
=========================== */

.acab-item .acab-icon {
    border-radius: 50%;
    transition: box-shadow .25s ease, transform .25s ease;
}

.acab-item:hover .acab-icon {
    transform: scale(1.12);
    box-shadow: 0 0 0 3px #9b00ff;
}

.acab-item.active .acab-icon {
    transform: scale(1);
    box-shadow: 0 0 0 3px #9b00ff;
}

.h400 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.h500 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.text-shadow {
    text-shadow: 0 2px 3px rgba(0,0,0,0.7);
}

.ani-col {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.ani-col.show {
    opacity: 1;
    transform: translateY(0);
}
/* fade container */
.fade-out {
    opacity: 0;
    transition: opacity .1s ease;
}

.fade-in {
    opacity: 1;
    transition: opacity .3s ease;
}






/* ===========================
   MOODBOARD AMBIENTES
=========================== */

.moodboard-menu {
    flex-wrap: wrap;             /* permite quebrar linha */
    text-align: center;
    row-gap: 10px;
}

/* cada link vira um “bloco” no mobile */
.moodboard-link {
    white-space: nowrap;
    font-size: 1rem;
}

/* mobile: empilha os itens certinho */
@media (max-width: 576px) {
    .moodboard-menu {
        justify-content: flex-start !important;
        text-align: left;
        padding-left: 15px;
        padding-right: 15px;
    }

    .moodboard-link {
        width: 100%;             /* quebra 1 por linha */
        text-align: left;
    }
}


.moodboard-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    transition: transform .2s ease;
}

.moodboard-card:hover {
    transform: translateY(-5px);
}

.moodboard-card img:hover {
    cursor: pointer;
}

.moodboard-img-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.moodboard-img {
    width: 100%;
    height: auto;
    display: block;
}

.moodboard-menu .moodboard-link,
.sub-link {
    text-decoration: none;
    font-weight: 400;
    color: #6c757d;
}

.moodboard-menu .moodboard-link.active,
.moodboard-menu .moodboard-link:hover,
.sub-link.active,
.sub-link:hover {
    opacity: 1;
    color: #9b00ff;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #9b00ff;
    text-underline-offset: 7px;
}

.prod-link {
    color: #9b00ff;
    font-weight: bold;
    text-decoration: none;
}
.prod-link:hover {
    text-decoration: underline;
}

/* MODAL AMBIENTE EXCLUSIVO */
.modal-dialog.modal-ambiente {
    max-width: fit-content !important;
}

.modal-ambiente .modal-content{
  width: auto !important;
  margin: 0px auto;
}

.modal-ambiente .modal-img {
    max-height: 70vh;
    object-fit: contain;
}

/* BACKDROP COM BLUR */
.modal-backdrop.show {
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

















/* ===========================
   FOOTER REVOLUZ
=========================== */

.revoluz-footer a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}

.revoluz-footer a:hover {
  color: #9b00ff;
}

/* --- NEWSLETTER --- */
.revoluz-newsletter {
  background: linear-gradient(90deg, #40006b, #9b00ff);
  color: #fff;
}

.revoluz-newsletter h2 {
  font-family: 'Fira Sans Condensed', sans-serif;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.revoluz-newsletter p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.revoluz-newsletter form input[type="email"]:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.3);
}


/* --- BLOCO MENUS --- */
.revoluz-footer-links {
  background: #f8f8f8;
  font-size: 0.9rem;
}

.revoluz-footer-links h6 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  color: #40006b;
  letter-spacing: 0.3px;
}

.revoluz-footer-inline-menus ul {
  padding: 0;
  margin: 0;
}

.revoluz-footer-inline-menus li {
  display: inline-block;
  margin-right: 12px;
}

.revoluz-footer-inline-menus li:last-child {
  margin-right: 0;
}

/* mantém estilo de link */
.revoluz-footer-inline-menus a {
  color: #222;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.revoluz-footer-inline-menus a:hover {
  color: #9b00ff;
}

/* MENU LUMINÁRIAS (roxo e bold) */
.menu-luminarias a {
  color: #40006b;        
  font-weight: 700;       
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-luminarias a:hover {
  color: #9b00ff;        
}

/* MENU INSTITUCIONAL */
.menu-inst a,
.menu-lat a {
  color: #40006b;           
  font-weight: 400;         
  font-size: 0.85rem;      
  letter-spacing: 0.3px;
  text-transform: none;
}

.menu-inst a:hover {
  color: #9b00ff;         /* roxo no hover */
}

.menu-luminarias li,
.menu-inst li {
  margin-right: 20px;  /* aumenta o espaço entre links */
}

/* --- REDES SOCIAIS --- */
.revoluz-footer-links .bi {
  font-size: 3rem;
  color: #777;
  transition: color 0.2s ease;
}

.revoluz-footer-links .bi:hover {
  color: #9b00ff;
}

/* --- MARCAS --- */
.revoluz-footer-links img {
  width: 100px;
  height: auto;
  filter: brightness(1) contrast(1);
  transition: transform 0.2s ease, filter 0.2s ease;
}

/* Último logo (Indústria Brasileira) menor e em linha abaixo */
.revoluz-footer-links img[alt="Indústria Brasileira"] {
  display: block;          /* força quebra de linha */
  margin: 0px;
  width: 40px;             /* menor */
}

.revoluz-footer-links img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* --- COPYRIGHT --- */
.revoluz-footer section.text-center {
  background: #fff;
  font-size: 0.8rem;
  color: #777;
  border-top: 1px solid #ddd;
}

/* --- RESPONSIVO --- */
@media (max-width: 767.98px) {
  .revoluz-newsletter form {
    flex-direction: column;
  }

  .revoluz-newsletter form input,
  .revoluz-newsletter form button {
    width: 100%;
    max-width: 320px;
  }

  .revoluz-footer-inline-menus {
    flex-direction: column;
    text-align: center;
  }

  .revoluz-footer-links .d-flex.justify-content-center.gap-5 {
    flex-wrap: wrap;     /* deixa quebrar linha */
    gap: 1rem !important;/* reduz espaço entre ícones */
  }

  .revoluz-footer-links .d-flex.justify-content-center.gap-5 a {
    font-size: 1rem;   /* diminui tamanho */
    flex: 0 0 30%;      /* ocupa ~metade da linha */
    text-align: center; /* centraliza cada ícone */
  }

  /* força quebra e centraliza */
  .revoluz-footer-inline-menus,
  .menu-luminarias ul,
  .menu-inst ul,
  .menu-lat ul {
    flex-direction: column !important;
    text-align: center;
  }

  /* cada item vira linha */
  .revoluz-footer-inline-menus li,
  .menu-luminarias li,
  .menu-inst li,
  .menu-lat li {
    display: block !important;
    margin: 6px 0;
  }

  /* centraliza links */
  .revoluz-footer-inline-menus a,
  .menu-luminarias a,
  .menu-inst a,
  .menu-lat a {
    display: inline-block;
  }

  .sp-form-horizontal .sp-element-container.sp-lg .sp-field,
  .sp-button{
    width: 100% !important;
  }


  .revoluz-footer-links img {
    width: 70px;   /* diminui o tamanho das logos */
    height: auto;
  }

}









/* ===========================
   ONDE ENCONTRO
=========================== */
.loja-card {
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all .2s ease;
    box-shadow: 0 0 10px rgba(53, 53, 53, 0.35);
}

.loja-card:hover {
    border-color: #9b00ff;
}

.loja-card.highlight {
    border: 2px solid #9b00ff;
    background: #f8edff;
    transition: 0.3s;
}

/*PIN PERSONALIZADO DO MAPS*/
.revoluz-pin {
    width: 30px;
    height: auto;
    cursor: pointer;
    transition: transform .2s ease;
}

.revoluz-pin:hover {
    transform: scale(1.2);
}

.loja-card.active {
    outline: 2px solid #9b00ff;
    background: #faf5ff;
}

.loja-card.hidden {
    display: none;
}

.loja-logo {
    width: 75px;
    height: auto;
    border-radius: 6px;
}

.loja-card-header {
    min-height: 70px;
}

.loja-card-body .btn i {
    margin-right: 6px;
}

.loja-card-footer{
  background-color: #eee;;
}

.loja-online-card {
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.loja-online-logo {
    width: 120px;
    object-fit: contain;
    border-radius: 10px;
    margin: 0px auto;
}


@media (max-width: 768px) {
    .loja-card-header {
        flex-direction: row;
    }
}

#oe-resultados {
  position: relative; /* limite do mapa flutuante */
}

#oe-resultados .map-sticky {
  z-index: 9999;
}

#map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 90vh;
  border-radius: 12px;
}
.map-sticky {
  height: 90vh;
  max-height: 900px; /* opcional, evita exagero em telas gigantes */
}

.oe-filtros{
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: nowrap;
}

#filtro-uf{
  width: 120px;
  flex: 0 0 120px;
}

#filtro-cidade{
  width: 220px;
  flex: 0 0 220px;
  max-width: 220px;
}










/* ===========================
   QUEM SOMOS
=========================== */

.quem-somos-texto {
    width: 100%;
}

@media (min-width: 992px) { /* lg do Bootstrap */
    .quem-somos-texto {
        max-width: 800px;
    }
}

.quem-somos-video {
    max-width: 1000px;
}

.quem-somos-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
    border: 0;
    border-radius: 16px;
}






/* ===========================
   ACADEMY
=========================== */
.academy-menu-box {
  background: linear-gradient(135deg, #ffffff 0%, #fff7e8 100%);
  border: 1px solid #f9b033c5;
  border-radius: 15px;
  padding: 0px 40px;
  box-shadow: 0 10px 28px rgba(155, 0, 255, 0.08);
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 18px;
}

.academy-menu-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
  flex: 0 0 auto;
}

.academy-menu-logo-link,
.academy-menu-title-link {
  text-decoration: none;
}

.academy-menu-logo {
  max-height: 90px;
  width: auto;
  display: block;
}

.academy-menu-title-link {
  font-size: 22px;
  font-weight: 700;
  color: #9b00ff;
  line-height: 1.1;
}

.academy-menu-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  flex: 1 1 auto;
}

.academy-menu-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  color: #9b00ff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  transition: all 0.22s ease;
}

.academy-menu-item:hover,
.academy-menu-item:focus {
  background: #f9b03386;
  border-color: #9b00ff;
}

@media (max-width: 991px) {
  .academy-menu-box {
    flex-direction: column;
    align-items: center;
    padding: 16px;
    border-radius: 20px;
    gap: 14px;
  }

  .academy-menu-header {
    justify-content: center;
  }

  .academy-menu-logo {
    max-height: 70px;
  }

  .academy-menu-title-link {
    font-size: 20px;
    text-align: center;
  }

  .academy-menu-nav {
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .academy-menu-item {
    width: 100%;
    min-height: 38px;
    padding: 9px 12px;
    font-size: 13px;
  }
}

.academy-title {
  font-size: 34px;
  font-weight: 800;
  color: #9b00ff;
  line-height: 1.2;
}

.academy-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.academy-banner img {
  border: 1px solid #f9b033c5;
}

.academy-cta-link {
  background: #fff7e8;
  border: 1px solid #9b00ff;
  color: #9b00ff;
  max-width: 950px;
  transition: all 0.25s ease;
}

.academy-cta-link:hover {
  background: #f9b033;
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .academy-title {
    font-size: 26px;
  }

  .academy-text {
    font-size: 14px;
  }
}





/* ===========================
   ACADEMY CATEGORIAS
=========================== */
.academy-card-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #9b00ff;
  border-bottom: 1px solid #9b00ff;
  transition: all 0.2s ease;
}

.academy-card-cta:hover {
  color: #f9b233;
  border-color: #f9b233;
}

.bg-academy{
  background-color: #fff7e8;
}

.font-color-academy{
  color: #f9b233;
}

.academy-ref-card {
  border: 1px solid rgba(155, 0, 255, 0.10);
  transition: all 0.22s ease;
}

.academy-ref-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(155, 0, 255, 0.10) !important;
}

.academy-ref-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 2px solid #f9b033c5;
}

.academy-ref-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.academy-ref-link {
  color: #6c757d;
  transition: all 0.2s ease;
  word-break: break-word;
}

.academy-ref-link:hover {
  color: #9b00ff;
}

.academy-ref-link i {
  color: #f9b233;
  font-size: 15px;
  min-width: 16px;
}

.academy-video-thumb {
  transition: all 0.2s ease;
}

.academy-video-thumb:hover {
  border-color: #9b00ff !important;
}

.academy-video-thumb-row {
  display: flex;
  align-items: stretch;
  min-height: 84px;
}

.academy-video-thumb-img {
  width: 140px;
  height: 84px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.academy-video-thumb-title {
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  text-align: left;
}

.academy-video-thumb .p-3 {
  padding: 10px !important;
  font-size: 13px;
  line-height: 1.3;
}

.academy-playlist-wrapper {
  max-height: 100%;
}

@media (min-width: 992px) {
  .academy-video-layout {
    align-items: stretch;
  }

  .academy-video-main,
  .academy-video-side {
    display: flex;
    flex-direction: column;
  }

  .academy-playlist-wrapper {
    flex: 1;
    overflow-y: auto;
    max-height: 540px;
    padding-right: 4px;
  }
}

@media (max-width: 575.98px) {
  .academy-video-thumb-img {
    width: 120px;
    height: 72px;
  }

  .academy-video-thumb-title {
    font-size: 12px;
    padding: 8px 10px;
  }
}

.academy-card-thumb-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f8f9fa;
}

.academy-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
















/* ===========================
   CONTATO
=========================== */
.contato-page-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.contato-page-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.40) 38%, rgba(0,0,0,0.28) 100%);
    pointer-events: none;
}

.contato-page-bg > section,
.contato-page-bg > div,
.contato-page-bg > .container {
    position: relative;
    z-index: 2;
}

.contato-hero {
    position: relative;
}

.contato-hero-box {
    background: rgba(20, 20, 20, 0.28);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
}

.contato-kicker {
    display: inline-block;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #f9b033;
    margin-bottom: 1rem;
}

.contato-btn-whatsapp {
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.contato-form-section {
    background: transparent;
}

.contato-info-box,
.contato-form-box {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contato-form-box .form-control {
    min-height: 48px;
    border-radius: 8px;
}

.contato-form-box textarea.form-control {
    min-height: 160px;
}

.contato-hero .lead p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .contato-hero {
        min-height: 480px;
    }

    .contato-hero-box {
        backdrop-filter: none;
    }
}








/* =========================================================
   Landing Page Ativação, Revoluz
   ========================================================= */

.landing-ativacao {
  background: #080010;
  color: #ffffff;
  overflow: hidden;
}

.landing-ativacao section {
  position: relative;
}

.landing-ativacao .container-xxl {
  position: relative;
  z-index: 2;
}

/* =========================================================
   Base
   ========================================================= */

.min-vh-75 {
  min-height: 75vh;
}

.landing-ativacao-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(249, 176, 51, 0.45);
  border-radius: 999px;
  background: rgba(249, 176, 51, 0.12);
  color: #f9b033;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-ativacao-title {
  max-width: 860px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 4vw, 5.8rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.landing-ativacao-text {
  max-width: 720px;
  margin-top: 1.6rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.65;
}

.landing-ativacao-section-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.landing-ativacao-section-text {
  max-width: 900px;
  margin: 1.2rem auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* =========================================================
   Botões
   ========================================================= */

.landing-ativacao .btn {
  border-width: 1px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: none;
}

.landing-ativacao .btn-primary {
  border-color: #f9b033 !important;
  background: #f9b033 !important;
  color: #190026 !important;
  box-shadow: 0 18px 45px rgba(249, 176, 51, 0.26);
}

.landing-ativacao .btn-primary:hover {
  border-color: #ffffff !important;
  background: #ffffff !important;
  color: #190026 !important;
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(255, 255, 255, 0.22);
}

.landing-ativacao .btn-outline-primary {
  border-color: rgba(255, 255, 255, 0.38) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  backdrop-filter: blur(12px);
}

.landing-ativacao .btn-outline-primary:hover {
  border-color: #9b00ff !important;
  background: #9b00ff !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* =========================================================
   Hero
   ========================================================= */

.landing-ativacao-hero {
  min-height: 90vh;
  padding: 4rem 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(155, 0, 255, 0.55), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(249, 176, 51, 0.35), transparent 30%),
    linear-gradient(135deg, #160024 0%, #080010 55%, #1f0033 100%);
}

.landing-ativacao-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
  opacity: 0.45;
}

.landing-ativacao-hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -160px;
  bottom: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 0, 255, 0.42), transparent 68%);
  filter: blur(10px);
}

.landing-ativacao-visual {
  position: relative;
  min-height: 430px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.035)),
    radial-gradient(circle at top right, rgba(249, 176, 51, 0.22), transparent 45%);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.landing-ativacao-visual-img {
  min-height: 520px;
  padding: 0;
  overflow: hidden;
}

.landing-ativacao-hero-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.15) contrast(1.08);
}

.landing-ativacao-img-overlay {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1.35rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(
    135deg,
    rgba(8, 0, 16, 0.82),
    rgba(155, 0, 255, 0.58)
  );
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

.landing-ativacao-img-overlay span {
  display: block;
  margin-bottom: 0.35rem;
  color: #f9b033;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-ativacao-img-overlay strong {
  display: block;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.landing-ativacao-card {
  position: relative;
  margin-bottom: 1rem;
  padding: 1.4rem;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(10, 0, 18, 0.72);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.landing-ativacao-card:nth-child(2) {
  margin-left: 2.2rem;
  background: linear-gradient(135deg, rgba(155,0,255,0.85), rgba(70,0,115,0.78));
}

.landing-ativacao-card:nth-child(3) {
  margin-left: 4.4rem;
  background: linear-gradient(135deg, rgba(249,176,51,0.96), rgba(255,220,130,0.86));
  color: #190026;
}

.landing-ativacao-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: inherit;
  opacity: 0.72;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-ativacao-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

/* =========================================================
   Dor e contexto
   ========================================================= */

.landing-ativacao-dor {
  background:
    linear-gradient(180deg, #080010 0%, #130020 100%);
}

.landing-ativacao-benefit {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.055);
  transition: all 0.22s ease;
}

.landing-ativacao-benefit:hover {
  border-color: rgba(249,176,51,0.48);
  background: rgba(249,176,51,0.11);
  transform: translateY(-3px);
}

.landing-ativacao-benefit i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(155,0,255,0.22);
  color: #f9b033;
  font-size: 1.25rem;
}

.landing-ativacao-benefit span {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.35;
}

/* =========================================================
   Antes vs Depois
   ========================================================= */

.landing-ativacao-antes-depois {
  background:
    radial-gradient(circle at 18% 50%, rgba(155,0,255,0.28), transparent 32%),
    radial-gradient(circle at 85% 30%, rgba(249,176,51,0.18), transparent 30%),
    #130020;
}

.landing-ativacao-comparativo {
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.055);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.landing-ativacao-comparativo-antes {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 38%);
}

.landing-ativacao-comparativo-depois {
  border-color: rgba(249,176,51,0.42);
  background:
    linear-gradient(145deg, rgba(155,0,255,0.36), rgba(40,0,60,0.9)),
    radial-gradient(circle at top right, rgba(249,176,51,0.26), transparent 42%);
}

.landing-ativacao-comparativo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.landing-ativacao-comparativo-header span {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.landing-ativacao-comparativo-header i {
  color: #f9b033;
  font-size: 1.8rem;
}

.landing-ativacao-comparativo h3 {
  margin: 0 0 0.8rem;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.landing-ativacao-comparativo p {
  color: rgba(255,255,255,0.72);
  font-size: 1.04rem;
  line-height: 1.65;
}

.landing-ativacao-comparativo ul {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.landing-ativacao-comparativo li {
  position: relative;
  margin-bottom: 0.85rem;
  padding-left: 1.7rem;
  color: rgba(255,255,255,0.84);
  line-height: 1.45;
}

.landing-ativacao-comparativo li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f9b033;
}

.landing-ativacao-comparativo-img-wrap {
  position: relative;
  height: 260px;
  margin: -0.6rem -0.6rem 1.6rem;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
}

.landing-ativacao-comparativo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.08);
  transition: all 0.28s ease;
}

.landing-ativacao-comparativo:hover .landing-ativacao-comparativo-img {
  transform: scale(1.04);
}

.landing-ativacao-comparativo-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  background: red;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.landing-ativacao-comparativo-depois .landing-ativacao-comparativo-badge {
  background: greenyellow;
  color: #190026;
}

.landing-ativacao-comparativo-content {
  position: relative;
  z-index: 2;
}

/* =========================================================
   Demonstração
   ========================================================= */

.landing-ativacao-demo {
  background:
    linear-gradient(180deg, #130020 0%, #080010 100%);
}

.landing-ativacao-demo-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.landing-ativacao-demo-step span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f9b033;
  color: #190026;
  font-weight: 900;
}

.landing-ativacao-demo-step p {
  margin: 0;
  padding-top: 0.4rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.landing-ativacao-video-placeholder {
  padding: 1rem;
  border-radius: 36px;
  border: 1px solid rgba(249,176,51,0.28);
  background:
    radial-gradient(circle at center, rgba(155,0,255,0.42), transparent 62%),
    rgba(255,255,255,0.06);
  box-shadow: 0 28px 90px rgba(0,0,0,0.36);
}

.landing-ativacao-video-box {
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.35), rgba(0,0,0,0.72)),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.landing-ativacao-video-box i {
  margin-bottom: 1rem;
  color: #f9b033;
  font-size: 4.6rem;
  filter: drop-shadow(0 12px 35px rgba(249,176,51,0.35));
}

.landing-ativacao-video-box span {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.landing-ativacao-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
}

.landing-ativacao-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* =========================================================
   Recursos principais
   ========================================================= */

.landing-ativacao-recursos {
  background:
    radial-gradient(circle at top center, rgba(249,176,51,0.16), transparent 32%),
    #080010;
}

.landing-ativacao-recurso-card {
  padding: 1.45rem;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.055);
  transition: all 0.24s ease;
}

.landing-ativacao-recurso-card:hover {
  border-color: rgba(249,176,51,0.5);
  background:
    linear-gradient(145deg, rgba(155,0,255,0.35), rgba(255,255,255,0.06));
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
}

.landing-ativacao-recurso-card i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border-radius: 18px;
  background: #f9b033;
  color: #190026;
  font-size: 1.35rem;
}

.landing-ativacao-recurso-card h3 {
  margin: 0 0 0.65rem;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.landing-ativacao-recurso-card p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* =========================================================
   CTA final
   ========================================================= */

.landing-ativacao-cta-final {
  background:
    radial-gradient(circle at 50% 0%, rgba(155,0,255,0.36), transparent 38%),
    linear-gradient(180deg, #080010 0%, #190026 100%);
}

.landing-ativacao-cta-box {
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 42px;
  border: 1px solid rgba(249,176,51,0.35);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    radial-gradient(circle at top right, rgba(249,176,51,0.28), transparent 38%),
    radial-gradient(circle at bottom left, rgba(155,0,255,0.34), transparent 42%);
  box-shadow: 0 32px 100px rgba(0,0,0,0.42);
}

/* =========================================================
   Responsivo
   ========================================================= */

@media (max-width: 991px) {
  .landing-ativacao-hero {
    min-height: auto;
    padding: 2.5rem 0;
  }

  .landing-ativacao-title {
    max-width: 100%;
  }

  .landing-ativacao-visual {
    min-height: auto;
  }

  .landing-ativacao-visual-img,
  .landing-ativacao-hero-img {
    min-height: 360px;
  }

  .landing-ativacao-card:nth-child(2),
  .landing-ativacao-card:nth-child(3) {
    margin-left: 0;
  }

  .landing-ativacao-video-box {
    min-height: 280px;
  }
}

@media (max-width: 575px) {
  .landing-ativacao-title {
    font-size: 2.55rem;
    line-height: 1;
  }

  .landing-ativacao-section-title {
    font-size: 2rem;
  }

  .landing-ativacao-text,
  .landing-ativacao-section-text {
    font-size: 1rem;
  }

  .landing-ativacao-card strong {
    font-size: 1.12rem;
  }

  .landing-ativacao-comparativo,
  .landing-ativacao-recurso-card,
  .landing-ativacao-cta-box {
    border-radius: 24px;
  }
}