.roundedBorder {
  border-radius: 15px !important;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 60px;
}

p {
  text-align: justify !important;
}

.btn:focus {
  box-shadow: 0 0 0 0 rgba(0, 123, 255, 0) !important;
}

.btn-link {
  color: black !important;
}

.bebas-neue-regular-sub {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
}

.descDir {
  border-radius: 15px;
  border: black solid 1px;
}

.txtBold {
  font-weight: 700;
}

.navbar-brand {
  font-size: 12px !important;
}

.menuStyle {
  background-color: white;
  max-width: 75%;
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.txtLight {
  font-weight: 400;
}

html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
}

.zoom {
  transition: transform .2s !important;
  /* Animation */
}

.zoom:hover {
  transform: scale(1.1) !important;
  /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.bgGray {
  background-color: gray;
}

.bgGreen {
  background-color: #40542a;
}

.bgBlacked {
  background-color: black;
}

.video-full {
  width: 100%;
  height: auto;
  display: block;
  /* remove espaços indesejados */
}

html {
  scroll-behavior: smooth;
}

.pointer {
  cursor: pointer;
}

/* 360 VIEWER */

#drone-container {
  position: relative;
  overflow: hidden;
  /* Garante que a imagem não saia do container */
  cursor: grab;
  /* Indica que é arrastável */
  user-select: none;
  /* Impede a seleção de texto ao arrastar */
}

#drone-container.dragging {
  cursor: grabbing;
}

#drone-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Ajusta a imagem dentro do contêiner sem cortar */
  display: block;
  /* Remove espaços extras abaixo da imagem */
}

/* Opcional: Estilo para um texto de instrução */
.instruction-text {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9em;
  pointer-events: none;
  /* Permite interagir com o elemento abaixo */
}

/* 360 VIEWER - FIM*/


/* EFEITO SANFONA */

:root {
  --radius: 18px;
  --transition: 350ms ease;
  --height: 58vh;
  /* ajuste conforme sua página */
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
}


.accordion-gallery {
  display: flex;
  align-items: stretch;
  gap: 10px;
  height: var(--height);
  padding: 10px;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: calc(var(--radius) + 4px);
}


.panel {
  position: relative;
  flex: 1 1 0;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  transition: flex var(--transition), transform var(--transition), box-shadow var(--transition);
  outline: none;
  /* vamos mostrar foco personalizado */
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  isolation: isolate;
  /* para sobreposições */
}


/* Estado base da imagem */
.panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform var(--transition), filter var(--transition), opacity var(--transition);
  filter: saturate(.9) contrast(1.05);
}


/* Escurecer levemente e mostrar título */
.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 20%, rgba(0, 0, 0, 0.45) 100%);
  transition: opacity var(--transition);
  opacity: .55;
  z-index: 1;
}


.panel h3 {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .2px;
  z-index: 2;
  opacity: .95;
}


/* Efeito sanfona no hover: reduz todas... */
.accordion-gallery:hover .panel {
  flex: .85 1 0;
}


/* ... e expande a que está sob o mouse */
.accordion-gallery .panel:hover {
  flex: 3 1 0;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
}


.accordion-gallery .panel:hover img {
  transform: scale(1.02);
  filter: none;
}

.accordion-gallery .panel:hover::after {
  opacity: .25;
}


/* Acessibilidade: teclado (focus) age como hover */
.panel:focus-visible {
  box-shadow: 0 0 0 3px #98c1ff, 0 10px 24px rgba(0, 0, 0, .35);
}

.accordion-gallery:has(.panel:focus) .panel {
  flex: .85 1 0;
}

.panel:focus {
  flex: 3 1 0;
}


/* Responsivo: em telas muito estreitas, vira carrossel horizontal com arraste natural */
@media (max-width: 700px) {}

/* EFEITO SANFONA - FIM */