.color-box {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all .2s ease;
}

.color-box:hover {
  transform: scale(1.05);
}

.color-box input {
  display: none;
}

.color-box input:checked + *,
.color-box:has(input:checked) {
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0,0,0,.2);
}

.color-box:has(input:checked)::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.fw-extra-bold { font-weight: 800; }

.lista-colunas {
  column-count: 1; /* padrão no mobile */
  column-gap: 10px;
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;  
}


@media (min-width: 768px) { /* md */
  .lista-colunas {
    column-count: 2;
  }
}

.lista-colunas li {
  position: relative;
  padding-left: 28px;
  break-inside: avoid; /* evita quebrar li entre colunas */
  margin-bottom: 8px;
   list-style: none !important;
}

.lista-colunas li::before {
  content: "\2713"; /* check que aceita cor */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color3); 
  font-weight: bold;
  font-size: 16px;
}

h1,.h1,.h1-custom {
    font-weight:300 ;
    
}
h2,.h2,.h2-custom {
    font-weight:300 ;
}

h3,.h3,.h3-custom {
    font-weight:300 ;
 
}
h4,.h4,.h4-custom {
    font-weight:300;
    font-size:1.1em;
    line-height:1.42857143;
    color:var(--color1t);
    margin-left:30px;
    border-left:solid 5px var(--color1t);
    padding:12px 25px;
}
h5,.h5,.h5-custom {
    font-weight:300;
    font-size:1.1em;
    line-height:1.42857143;
    color:var(--color5);
    background-color:var(--color3);
    padding:12px 25px;
    border-radius:25px
}
h6,.h6,.h6-custom {
    font-weight:300;
    font-size:1.1em;
    line-height:1.42857143;
    color:var(--color5);
    background-color:var(--color2);
    padding:12px 25px;
    border-radius:25px
}

li::marker {
    color:var(--color3);
}
.btn-efeito{
  border: none;
  background-color: var(--color1); 
  cursor: pointer;
  color: #fff;
  position: relative;
  box-sizing: border-box;
  transition: all 400ms ease; 
  padding: 12px 15px;
    border-radius: 19px;

}

.btn-efeito:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5); 
  transition: all 1s ease;
    border-radius: 19px;

}

.btn-efeito:hover:before {
  width: 97%;
}

.foto-proporcao{
  aspect-ratio: 4 / 3; 
  object-fit: cover;
}


/* Estilizando todos os placeholders */
::placeholder {
    font-size: 0.8rem; /* Menor que o texto normal */
    color: #cccccc;     /* Cinza claro */
}

/* Politica de privacidade */
.termos {
    font-size:.8em;
    position:fixed;
    bottom:0;
    z-index:6;
    left:0;
    color:var(--color5);
    width:100%;
    background-color: rgba(0, 0, 0, 0.8);
    text-align:center;
    display:none
}

.nav-link.active {
  background-color: var(--color1) !important;
}

.text-primary{
  color: var(--color1) !important;
}

.border-primary{
  border-color: var(--color1) !important;
}

.bg-primary {
  background-color: var(--color1) !important;
}
.nav-link{
  color: var(--color2) !important;
}

.card h2 {
  color: var(--color1);
}

/* Galeria ambientes */

.swiper-slide {
  position: relative;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

.swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Overlay animado de baixo para cima */
.overlay {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 0%;
  background: rgba(0, 0, 0, 0.8) url("../adm/imagens/logo-estilizado.png") center center / cover no-repeat;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: height 0.4s ease;
  padding: 0 15px;
  font-size: 1.1rem;
  border-radius: 0 0 .5rem .5rem;
}

/* container que referencia o overlay */
.img-container {
  position: relative;
  overflow: hidden;
  border-radius: .5rem;
}

/* transição do overlay */
.img-container:hover .overlay {
  height: 100%;
}

/* animação do texto */
.overlay span {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.img-container:hover .overlay span {
  opacity: 1;
  transform: translateY(0);
}
/* Final */



/* Galeria detalhes */
.gallery-section {
  padding: 60px 0;
}

.gallery-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.gallery-text p { font-size: 1.2rem; margin-bottom: 20px; }
.btn-cta { padding: 10px 20px; font-size: 1rem; border-radius: 5px; border: none; background: #224028; color: #fff; cursor: pointer; }

/* Grid fotos */
.photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Fotos - todas do mesmo tamanho */
.photo-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  flex: 1 1 48%;         /* duas por linha (ajusta se quiser 4) */
  aspect-ratio: 1 / 1;   /* garante proporção quadrada */
  height: auto;          /* controlado pelo aspect-ratio */
}

.photo-item.large,
.photo-item.small {
  flex: 1 1 48%;         /* todas iguais */
  height: auto;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* corta e centraliza */
  display: block;
  transition: transform 0.5s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
}

/* Overlay animado */
.photo-item .overlay {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 0%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: height 0.4s ease;
  padding: 0 10px;
  font-size: 1rem;
}
.photo-item .overlay span {
  opacity: 0;
  transition: opacity 0.3s ease 0.2s;
}

/* Hover: overlay + expand horizontal */
.photo-item:hover .overlay,
.photo-item:active .overlay {
  height: 100%;
}
.photo-item:hover .overlay span,
.photo-item:active .overlay span {
  opacity: 1;
}
.photo-item:hover img,
.photo-item:active img {
  transform: scale(1.4); /* Expande a imagem 40% */
  z-index: 2;
}

/* Responsivo */
@media (max-width: 768px){
  .photo-item { flex: 1 1 48%; height: 150px; }
  .photo-item.large { height: 180px; }
  .photo-item.small { height: 120px; }
}
@media (max-width: 480px){
  .photo-item { flex: 1 1 100%; height: 150px; }
}

/* Final */


/* Galeria marcas */
.gallery-marquee {
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    height: 80px;
}

.gallery-track {
    display: flex;
    gap: 35px; /* espaçamento entre imagens */
    animation: scroll 25s linear infinite;
}

.gallery-marquee:hover .gallery-track {
    animation-play-state: paused; /* pausa ao passar o mouse */
}

.gallery-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.gallery-img {
    max-height: 80px;      /* altura máxima */
    max-width: 150px;      /* largura máxima */
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 575.98px) {
    .gallery-marquee {
        height: 60px;
    }
    .gallery-img {
        max-height: 60px;
    }
}

/* Final */

/* Navbar */
.navbar .nav-link {
  color: #fff !important;        /* texto branco */
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: var(--color2)  !important;;        /* mantém branco no hover e ativo */
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none;
}

.logo-topo{
  max-height: 100px;
  max-width: 180px;
}

/* Inicialmente escondido */
.navbar-scroll {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  transition: top 0.3s;
  z-index: 999;
}

/* Quando o usuário rola para baixo */
.navbar-scroll.show {
  top: 0;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* Final */

/* WhatsApp Rodape */
.btnwhatsapp {
    position:fixed;
    bottom:20px;
    right:10px;
    z-index:5;
    color:var(--color5);

}

#btnwhatsapp {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

#btnwhatsapp.show {
  opacity: 1;
  visibility: visible;
}

.displayblock {
    display:block
}
.displaynone {
    display:none
}


/* Final */

.cke_editable.cke_editable_themed.cke_contents_ltr.cke_show_borders{
  font-family: 'Roboto', sans-serif ;
  line-height: 1.4;
}