/* ============================================================
   UV Audio System — Estilos das Seções
   Arquivo: home/css/home.css
   ============================================================ */

/* ---------- Variáveis de layout ---------- */
:root {
  --uv-top-offset: 180px;
  --uv-bottom-offset: 60px;
  --uv-vh: 100vh;
}

@supports (height: 100dvh) {
  :root {
    --uv-vh: 100dvh;
  }
}

/* ---------- Scroll snap no documento inteiro ---------- */
html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}



/* ---------- Container principal ---------- */
.snap-container {
  position: relative;
  width: 100%;
}

.snap-section {
  width: 100%;
  min-height: var(--uv-vh);
  height: var(--uv-vh);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--uv-top-offset) 40px var(--uv-bottom-offset);
  box-sizing: border-box;
}

/* Contato: snapa no topo, mas permite scrollar para baixo até o footer */
.snap-section.contact {
  scroll-snap-stop: normal;
  height: auto;
  min-height: var(--uv-vh);
}



.section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  max-height: calc(var(--uv-vh) - var(--uv-top-offset) - var(--uv-bottom-offset));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}

/* ---------- Vídeo de fundo ---------- */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* ============================================================
   SEÇÃO 1 — HERO
   ============================================================ */
.hero {
  background: var(--preto);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-box {
  padding: clamp(32px, 5vw, 64px);
  max-width: 700px;
  text-align: center;
}

.hero-box h1 {
  margin-bottom: 0.4em;
}

.hero-box p {
  margin-bottom: 1.5em;
  opacity: 0.9;
  font-size: var(--uv-fs-lg);
}



/* ============================================================
   SEÇÃO 2 — FAQ
   ============================================================ */

.snap-section.faq {
	background-color: #000000;
}

.faq .section-inner {
  align-items: center;
}
.faq p {
  color: var(--branco);
}
.faq-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
  transition: opacity 300ms ease;
  filter: brightness(0.3);
  -webkit-filter: brightness(0.3);
}
.faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  justify-items: flex-end;
  /* Altura automática: o painel fica compacto (limitado abaixo) e a
     textura de fundo aparece ao redor dele no desktop. */
  height: auto;
  max-height: 500px;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-content.dark-glassbox {
  box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.1);
}
.faq-content > .screw {
	opacity: 0.1;
}

.faq-info {
  align-self: center;
  margin-left: 20px;
  width: 100%;
}

.faq-info p {
  margin-bottom: 1.5em;
  opacity: 0.95;
  font-size: var(--uv-fs-lg);
}

.faq .btn-neon:hover {
  background-color: var(--branco);
  color: var(--preto);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.faq-list {
  position: relative;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  max-width: 500px;
  align-self: center;
  margin: clamp(25px, 5vw, 50px) 25px 50px;
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
  gap: 10px;
}

/* Desktop: teto próprio da lista, mantendo a leitura e a rolagem
   interna com o painel em altura automática. */
@media (min-width: 768px) {
  .faq-list {
    height: auto;
    max-height: clamp(340px, 45vh, 420px);
  }
}

.faq-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 20%;
  width: 100%;
  box-shadow: inset 0px 20px 10px -14px rgba(245, 132, 53, 0.6),
    inset 0px 10px 15px -18px rgba(244, 244, 244, 0.6);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-in-out,
    transform 0.6s ease-in-out;
  z-index: 2;
}

.faq-list::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 20%;
  width: 100%;
  box-shadow: inset 0px -20px 10px -14px rgba(245, 132, 53, 0.6),
    inset 0px -10px 15px -18px rgba(244, 244, 244, 0.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.6s ease-in-out,
    transform 0.6s ease-in-out;
  z-index: 2;
}

.faq-list.top-overflow::before {
  transform: translateY(0);
  opacity: 1;
}

.faq-list.bottom-overflow::after {
  transform: translateY(0);
  opacity: 1;
}

.scroll-box {
  height: 100%;
  min-height: 0;
  width: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-around;
  padding: 10px 10px 10px;
}

.faq-item {
  height: auto;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

details.faq-item {
  flex-shrink: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

details.faq-item p {
  flex-shrink: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 clamp(12px, 2vw, 15px);
  margin: 0;
  font-size: var(--uv-fs-sm);
  transition: max-height 0.35s ease-out, opacity 0.3s ease-out, padding 0.35s ease-out;
}

details.faq-item[open] p {
  max-height: 300px;
  opacity: 0.95;
  padding: 10px clamp(12px, 2vw, 15px) clamp(14px, 2vw, 20px);
  font-size: var(--uv-fs-sm);
}

details.faq-item.is-closing p {
  max-height: 0;
  opacity: 0;
  padding: 0 clamp(12px, 2vw, 15px);
}

.faq-item summary {
  padding: clamp(14px, 2vw, 20px);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
  font-size: var(--uv-fs-base);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: rgba(0, 0, 0, 0.15);
}




/* ============================================================
   SEÇÃO 3 — PRODUTOS
   ============================================================ */
.product {
  background: var(--preto);
  position: relative;
}

.product-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://placehold.co/1920x1080/292929/555555?text=Background+Produto');
  background-size: cover;
  background-position: center;
  opacity: 1;
  filter: brightness(0.3);
  -webkit-filter: brightness(0.3);	
  z-index: 0;
  transition: opacity 300ms ease;
}

.product-bg-active {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  transition: opacity 300ms ease;
}
.product-blur-box {
  position: absolute;
  inset: 0;
  opacity: 1;
  z-index: 1;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.product-bg-active.is-visible {
  opacity: 0.5;
}

.product-bg-image.is-faded {
  opacity: 0;
}

.product-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.product-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(16px, 3vw, 32px);
  width: 100%;
  max-width: 900px;
  height: 100%;
  max-height: calc(var(--uv-vh) * 0.7);
  padding: clamp(16px, 3vw, 32px);
}

.product-card {
  -webkit-perspective: 1200px;
  perspective: 1200px;
  cursor: pointer;
  position: relative;
}

.product-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: transform 400ms ease;
}

.product-card-front,
.product-card-back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: var(--radius);
  overflow: hidden;
}

.product-card-front {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(246, 246, 246, 0.25);
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.3),
    inset -1px -1px 2px rgba(29, 29, 29, 0.45),
    1px 1px 6px rgba(19, 19, 19, 0.75);

}

.product-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-back {
  transform: rotateY(180deg);
  background: var(--preto);
  box-shadow:
    0 0 10px 7px rgba(245, 132, 53, 0.3),
    0 0 10px 4px rgba(255, 255, 255, 0.2);
  transition: box-shadow 400ms ease;
  border: 1px ridge var(--branco);
}

.product-card-back-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: clamp(16px, 2vw, 24px);
  text-align: center;
  background: var(--preto);
}

.product-card-back-content p {
  color: var(--branco);
  font-size: var(--uv-fs-xs);
  margin-bottom: 1em;
}

.product-card-back-content .btn-neon {
  background: var(--preto);
  color: var(--branco);
  border-color: var(--branco);
  font-size: var(--uv-fs-2xs);
  padding: clamp(8px, 1vw, 12px) clamp(16px, 2vw, 24px);
  border-radius: 5px;
  min-height: 30px;
}

/* Estado ativo (desktop e mobile) */
.product-card.is-active .product-card-inner {
  transform: rotateY(180deg);
}

.product-card.is-active .product-card-back {
  box-shadow:
    0 0 25px 7px rgba(245, 132, 53, 0.3),
    0 0 30px 4px rgba(255, 255, 255, 0.2);
}

/* ============================================================
   SEÇÃO 4 — BRAND / SERVIÇOS
   ============================================================ */
.brand {
  background: var(--preto);
}

.brand-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.brand-box {
  text-align: center;
  padding: clamp(32px, 5vw, 64px);
  max-width: 800px;
}

.brand-box h2 {
  margin-bottom: 0.5em;
}

.brand-box p {
  margin-bottom: 1.5em;
  font-size: var(--uv-fs-lg);
}

/* ============================================================
   SEÇÃO 5 — AMPLIFICADOR
   ============================================================ */
.services-amp {
  background: #000000;
}

.services-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: 0;
}

.services-content {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 32px);
  height: 100%;
  justify-content: center;
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}

.amp-top-row {
  display: flex;
  align-items: center;
  min-height: 80px;
  max-height: 100px;
  width: 100%;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
}

.amp-title-box {
  flex: 1;
  min-width: 200px;
  text-align: center;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.amp-title-box h2 {
  margin: 0;
}

.amp-knobs {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
  max-height: 80px;
}

.amp-knobs .knob-wrapper {
  height: clamp(70px, 10vw, 90px);
}

.amp-bottom-row {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: visible;
  padding: clamp(16px, 3vw, 32px);
}

.amp-grill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: var(--radius);
  box-shadow: 1px 1px 12px 4px rgba(0, 0, 0, 0.4);
  opacity: 100;
  z-index: 0;
  filter: brightness(0.4) saturate(120%);
  -webkit-filter: blur(0.4) saturate(120%);

}

.amp-services-box {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: clamp(16px, 3vw, 32px);
  width: 100%;
  height: 100%;
  max-width: 1200px;
}

.services-list {
  list-style: none;
  margin-left: 25px;
  max-height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: var(--uv-fs-base);
}

.services-list li {
  padding: clamp(10px, 1.5vw, 14px) clamp(14px, 2vw, 20px);
  background: rgba(0, 0, 0, 0.35);
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border-left: 3px solid transparent;
}

.services-list li:hover,
.services-list li.is-active {
  color: var(--laranja);
  border-left-color: var(--laranja);
  background: rgba(0, 0, 0, 0.5);
  text-shadow: 0 0 8px rgba(245, 132, 53, 0.4);
}

.service-display {
  display: flex;
  flex:1;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  overflow: hidden;
  margin: 15px;
  margin-right: 25px;
  position: relative;
  overflow: hidden;
}

.service-display img {
  width: 100%;
  flex: 1;
  border-radius: 16px;
  object-fit: cover;
  opacity: 0.3;
  margin: 0px;
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

.service-display p {
  position: absolute;
  top: 40%;
  left: 50%;
  width: calc(100% - 25px);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 10px;
  /* Proporcional à caixa: nunca maior que o texto da services-list */
  font-size: var(--uv-fs-base);
  font-weight: 500;
  text-align: center;
  opacity: 0.9;
}

.confira-seta {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  color: var(--laranja);
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  padding: 0 16px 16px;
  font-size: var(--uv-fs-sm);
}

.service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(10, 10, 12, 0.75) 100%
  );
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border-radius: calc(var(--radius) / 2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 20;
}

.service-display:hover .service-overlay,
.service-display.overlay-visible .service-overlay {
  opacity: 1;
  pointer-events: auto;
}

.service-link {
  z-index: 2;
}

.service-overlay .btn-neon {
  font-size: var(--uv-fs-xs);
}

/* ============================================================
   SEÇÃO 6 — CONTATO
   ============================================================ */
.snap-section.contact {
  overflow: visible;
}

.contact {
  background: var(--preto);
  height: auto;
  min-height: var(--uv-vh);
  max-height: none;
}

.contact .section-inner {
  height: auto;
  min-height: auto;
  max-height: none;
  overflow: visible;
  justify-content: center;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  height: auto;
  min-height: auto;
}

.contact-box {
  position: relative;
  padding: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-inner {
  flex: 1;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-size: var(--uv-fs-sm);
  opacity: 0.9;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: var(--branco);
  font-family: var(--font-body);
  font-size: var(--uv-fs-md);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--laranja);
  box-shadow: 0 0 8px rgba(245, 132, 53, 0.3);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: calc(var(--radius) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* ============================================================
   BARRA DE NAVEGAÇÃO POR SEÇÕES
   ============================================================ */
.floating-bar {
  position: fixed;
  top: 135px;
  left: 50%;
  transform: translate(-50%, -20px);
  padding: 10px 30px 10px;
  z-index: 100;
  width: fit-content;
  max-width: 95vw;
  max-height: 50px;
  height: 50px;
  border-radius: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  transition: opacity 400ms cubic-bezier(0.25, 1, 0.5, 1),
    transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
  overflow: visible;
  opacity: 0.2;
  will-change: opacity transform;
}

.floating-bar:hover {
  transform: translate(-50%, 0);
  opacity: 1;
}

.floating-bar.product-active {
  opacity: 1;
  transform: translate(-50%, -15px);
  transition: opacity 400ms cubic-bezier(0.25, 1, 0.5, 1),
    transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.floating-bar.product-active .section-title {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: none;
}

.section-title {
  position: absolute;
  top: 100%;
  left: 50%;
  height: 50px;
  border-radius: 50px;
  width: auto;
  min-width: fit-content;
  transform: translateX(-50%) translateY(-50px);
  opacity: 0;
  pointer-events: none;
  border-top: none;
  padding: 8px 20px !important;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--uv-fs-title);
  filter: none;
  -webkit-filter: none;
  transition: width 300ms ease,
    opacity 400ms ease-in-out,
    transform 400ms ease-in-out,
    filter 0.3s ease,
    -webkit-filter 0.3s ease;
  will-change: width;
}

.section-title h6 {
  margin: 0;
}

.active-display {
  transform: translateY(5px) translateX(-50%);
  opacity: 1;
  transition: opacity 400ms cubic-bezier(0.25, 1, 0.5, 1),
    transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.floating-content {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.section-ref {
  background-color: var(--branco);
  overflow: hidden;
  width: 10px !important;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  max-height: 100%;
  height: 100%;
  transform: scale(100%, 100%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  flex-grow: 0;
  border: 0;
  will-change: box-shadow background-color transform;
  transition: transform 0.3s ease-in-out,
    box-shadow 0.4s ease-in,
    background-color 0.4s ease-in;
}

.section-ref:hover {
  transform: scale(120%, 120%);
}

.section-ref-dot {
  height: 100%;
  width: 100%;
  display: block;
  border-radius: 50%;
  background: inherit;
  transition: transform 0.3s ease-in-out;
}

.text-is-changing {
  filter: blur(5px);
  -webkit-filter: blur(5px);
}
.main-line {
  width: 20px;
  height: 2px;
  min-height: 2px;
  max-height: 2px;
  background-color: var(--branco);
  flex-shrink: 0;
  will-change: background-color;
  transition: background-color 0.3s ease-in-out;
}

.selected-item {
  background-color: var(--laranja);
  box-shadow: 0 0 15px 5px rgba(245, 132, 53, 0.5);
}

.selected-item .section-ref-dot {
  transform: scale(120%, 120%);
  transition: transform 0.3s ease-in-out;
}

/* Seta bounce para Hero */

/* Seta bounce para Hero */

.scrolldown {
  height: 50px;
  width: 100px;
  border-radius: 30px;
  position: absolute;
  bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.scrolldown:hover {
  box-shadow: inset 0 0 30px 10px rgba(255, 255, 255, 0.1);
}

.bounce-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: bounce 2s infinite;
  animation-timing-function: linear;
  color: var(--branco);
}

.scrolldown:hover > .bounce-arrow {
  animation: none;

}

.bounce-arrow svg {
  opacity: 0.4;
  box-shadow: transparent;
  transition: opacity 450ms ease-in-out,
    box-shadow 450ms ease-in-out;
}

.scrolldown:hover > .bounce-arrow svg {
  opacity: 1;
  filter: drop-shadow(0 15px 7px rgba(245, 132, 53, 0.5));
  -webkit-filter: drop-shadow(0 0 7px rgba(245, 132, 53, 0.5));
}

@keyframes bounce {
  0%, 50%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(8px);
  }
  75% {
    transform: translateY(-8px);
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100vw;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 767px) {
  :root {
    --uv-top-offset: 160px;
    --uv-bottom-offset: 40px;
  }

  .floating-bar {
    padding: 8px 20px;
    top: 95px;
    opacity: 0.1;
    max-width: 90vw;
  }

  .section-title {
    padding: 6px 16px !important;
  }

  .snap-section {
    padding: var(--uv-top-offset) 20px var(--uv-bottom-offset);
    height: var(--uv-vh);
    min-height: var(--uv-vh);
    max-height: var(--uv-vh);
  }

  .snap-section.contact {
    height: auto;
    min-height: var(--uv-vh);
    max-height: none;
  }

  .faq-content,
  .amp-services-box,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .faq-content {
    max-height: 100%;
    gap: 20px;
    display: flex;
    flex-direction: column;
    padding: 20px;
  }


  .faq-info {
    display: flex;
    align-self: flex-start;
    height: fit-content;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 0;
  }

  .faq-info h2 {
    font-size: clamp(30px, 7vw, 35px);
    line-height: normal;
    margin-bottom: 0;
  }

  .faq-info p {
    text-align: center;
    margin: 0 10px 0;
  }

  .faq-list {
    flex: 1;
    min-height: 0;
    align-self: center;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .scroll-box {
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    padding: 10px 12px;
  }

  details.faq-item {
    flex-shrink: 0;
  }

  .faq-item summary {
    padding: 12px;
  }

  .faq-item p {
    padding: 0 12px 12px;
  }

  .product-box {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: calc(var(--uv-vh) - var(--uv-top-offset) - var(--uv-bottom-offset));
    padding: 16px;
  }

  .product-card {
    flex: 1 1 0;
    min-height: 0;
    transition: flex 400ms ease;
  }

  .product-box.has-active .product-card {
    flex: 1 1 0;
  }

  .product-box.has-active .product-card.is-active {
    flex: 2 1 0;
  }

  .product-card-back-content .btn-neon {
    padding: 8px 16px;
  }

  .brand-box {
    padding: 24px;
    width: 100%;
  }

  .brand-box h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .services-content {
    gap: 12px;
  }

  .amp-title-box {
    padding: 12px;
  }

  .amp-title-box h2 {
    font-size: clamp(20px, 5vw, 24px);
  }

  .amp-bottom-row {
    flex-direction: column;
    gap: 12px;
    min-height: auto;
  }

  .amp-grill {
    order: 2;
    height: 90%;
    width: auto;
    object-fit: contain;
    position: absolute;
    opacity: 0.15;
    filter: blur(3px);
  }

  .amp-services-box {
    order: 1;
    flex: 1;
    gap: 8px;
    grid-template-rows: auto 1fr;
  }

  .services-list {
    gap: 5px;
    margin-bottom: 0;
    height: fit-content;
  }

  .services-list li {
    padding: 8px 10px;
  }

  .service-display {
    flex: 1;
    margin: 25px;
    margin-top: 0;
  }

  .service-display p {
    margin-bottom: 0;
    position: absolute;
    inset: 0;
    z-index: 10;
    top: 40%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
  }

  .confira-seta {
    bottom: 14px;
    text-align: center;
    z-index: 11;
    padding: 0;
  }

  .service-overlay .btn-neon {
    padding: 8px 14px;
  }

  .amp-top-row {
    flex-direction: column;
    align-items: center;
  }

  .amp-knobs {
    display: none;
  }

  .contact-content {
    min-height: fit-content;
  }

  .services-content {
    max-height: calc(var(--uv-vh) - var(--uv-top-offset) - var(--uv-bottom-offset));
    overflow: visible;
  }

  .hero-box {
    padding: 32px 24px;
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }
}
