/* ============================================= */
/* 🔹 CONFIGURAÇÕES GERAIS DO SITE */
/* ============================================= */

/**
 * Estilos base para o corpo do documento
 * - Define a fonte padrão
 * - Remove margens e paddings padrão
 * - Configura box-sizing para border-box
 * - Define cor de fundo e cor do texto
 */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f0f0f0;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden; /* Impede rolagem horizontal */
    width: 100%; /* Garante que a página não ultrapasse a tela */
}

/* Ativa rolagem suave para navegação por âncoras */
html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Impede rolagem horizontal */
    width: 100%; /* Garante que a página não ultrapasse a tela */
}

/* ============================================= */
/* 🔹 CABEÇALHO E NAVEGAÇÃO */
/* ============================================= */

/**
 * Estilo do cabeçalho fixo
 * - Layout flexível para alinhamento dos itens
 * - Posicionamento fixo no topo
 * - Fundo transparente inicial
 * - Transição suave para efeitos
 */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: rgba(228, 230, 250, 0);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  min-height: 50px;
}

/**
 * Estilo da logo
 * - Altura inicial de 150px
 * - Transição suave para efeito de redução
 * - Margem à esquerda para espaçamento
 */
.logo img {
  height: 150px;
  width: auto;
  transition: height 0.3s;
  margin-left: 20px;
}

/**
 * Estilo da lista de navegação (desktop)
 * - Remove marcadores de lista
 * - Layout flexível para itens lado a lado
 */
nav {
  display: none;
}
nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

/**
 * Estilo dos links de navegação
 * - Efeito gradiente no fundo
 * - Bordas arredondadas
 * - Transição para efeito hover
 */
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  background: linear-gradient(30deg, #0004f1, #feb47b);
  border-radius: 25px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  margin: 0 5px;
}

/**
 * Efeito hover nos links
 * - Levanta ligeiramente o botão
 * - Adiciona sombra
 * - Aumenta ligeiramente o tamanho
 */
nav ul li a:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(12, 68, 250, 0.4);
  scale: 1.1;
}

/**
 * Botão do menu hambúrguer (inicialmente oculto)
 * - Estilo simples sem bordas
 * - Tamanho grande para fácil clique em mobile
 * - Posicionamento fixo no canto direito
 */
.menu-toggle {
  display: none;
  font-size: 32px;
  background: none;
  border: none;
  color: #ff9215;
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 40px;
  z-index: 1100;
  transition: transform 0.3s ease-in-out;
}

/* Efeito hover no botão do menu */
.menu-toggle:hover {
  transform: scale(1.1);
}

/* ============================================= */
/* 🔹 EFEITO DE REDUÇÃO DO CABEÇALHO AO ROLAR */
/* ============================================= */

/**
 * Classe aplicada via JavaScript quando a página é rolada
 * - Reduz a altura da logo
 * - Ajusta a altura do cabeçalho
 */
.header-small .logo img {
  height: 50px;
}

.header-small {
  height: 10px;
}

/* ============================================= */
/* 🔹 MENU MOBILE */
/* ============================================= */

@media (max-width: 1024px) {
  /**
   * Ajustes gerais para telas menores que 1024px
   * - Fundo do cabeçalho transparente
   * - Redução do tamanho da logo
   * - Oculta o menu desktop
   */
  #header {
    background-color: rgba(244, 245, 255, 0);
  }

  .logo img {
    height: 80px;
  }

  nav ul {
    display: none;
  }

  /* Exibe o botão do menu hambúrguer */
  .menu-toggle {
    display: block;
  }

  /**
   * Estilo do menu mobile
   * - Posicionamento fixo fora da tela inicialmente
   * - Largura de 80% com máximo de 300px
   * - Fundo semi-transparente
   * - Sombra para efeito de profundidade
   */
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(24, 30, 80, 0.95);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease-in-out;
    z-index: 1050;
  }

  /* Classe aplicada via JavaScript para abrir o menu */
  .menu.menu-open {
    right: 0;
  }

  /* Estilo da lista no menu mobile */
  .menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
  }

  /* Itens do menu mobile */
  .menu ul li {
    margin: 15px 0;
  }

  /* Links do menu mobile */
  .menu ul li a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    display: block;
    padding: 12px 0;
    width: 100%;
    transition: background 0.3s ease-in-out;
    background: none;
    border-radius: 0;
  }

  /* Efeito hover nos links do menu mobile */
  .menu ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transform: none;
    box-shadow: none;
    scale: 1;
  }
}

/* ============================================= */
/* 🔹 SLIDER PRINCIPAL */
/* ============================================= */

/**
 * Container do slider
 * - Altura responsiva entre 100vh e 800px
 * - Posicionamento relativo para elementos internos
 * - Padding para não sobrepor o cabeçalho
 */
.slider {
  width: 100%;
  min-height: 100vh;
  max-height: 800px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 30px;
  z-index: 1;
}

/* Container dos slides */
.slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Estilo individual de cada slide */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Overlay escuro sobre o slider para melhor legibilidade */
.slider::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 1;
}

/* ============================================= */
/* 🔹 CONTEÚDO DO SLIDER (TEXTO E FORMULÁRIO) */
/* ============================================= */

/**
 * Container do conteúdo
 * - Posicionamento relativo para z-index
 * - Layout flexível para dividir texto e formulário
 * - Largura de 90% com máximo de 1200px
 */
.content {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  z-index: 2;
  color: white;
  padding: 40px 0;
  margin-top: 50px;
}

/* Seção de texto */
.texto {
  width: 55%;
  padding-right: 20px;
}

/* Título com tamanho responsivo usando clamp() */
.texto h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 20px;
  font-weight: bold;
}

/* Parágrafo com tamanho responsivo */
.texto p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  text-align: justify;
}

/* Container do formulário */
.formulario {
  width: 40%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease-in-out;
}

/* Efeito hover no formulário */
.formulario:hover {
  transform: translateY(-10px);
}

/* Estilo do formulário */
form {
  display: flex;
  flex-direction: column;
}

/* Campos de entrada */
form input,
form textarea {
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Placeholders dos campos */
form input::placeholder,
form textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

/* Botão de envio */
form button {
  background: #ffcc00;
  color: #181e50;
  font-size: 18px;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease-in-out;
}

/* Efeito hover no botão */
form button:hover {
  background: #66ff00;
}

/* ============================================= */
/* 🔹 RESPONSIVIDADE PARA TABLETS E MOBILE */
/* ============================================= */

@media (max-width: 768px) {
  /**
   * Ajustes para telas menores que 768px
   * - Altura automática para o slider
   * - Padding ajustado
   */
  .slider {
    min-height: auto;
    padding: 100px 0 30px;
  }
  
  /* Conteúdo em coluna */
  .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
  }

  /* Texto e formulário ocupam 100% da largura */
  .texto, .formulario {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }

  /* Centraliza o texto */
  .texto {
    text-align: center;
  }

  /* Centraliza parágrafos */
  .texto p {
    text-align: center;
  }

  /* Formulário ocupa toda largura */
  .formulario {
    max-width: 80%;
    padding: 10px 10px;
  }
}

/* Ajustes para telas muito pequenas (menos de 480px) */
@media (max-width: 480px) {
  /* Reduz ainda mais a logo */
  .logo img {
    height: 60px;
    margin-left: 10px;
  }

  /* Ajusta largura do conteúdo */
  .content {
    width: 95%;
  }

  /* Reduz tamanho do título */
  .texto h2 {
    font-size: 24px;
  }

  /* Reduz tamanho do parágrafo */
  .texto p {
    font-size: 16px;
  }
}

/* ============================================= */
/* 🔹 SEÇÕES "SOBRE A EMPRESA" */
/* ============================================= */

/**
 * Estilo base das seções
 * - Padding vertical para espaçamento
 * - Layout flexível centralizado
 */
.sobre-empresa {
  position: relative;
  width: 100%;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
}

/* Container interno para alinhamento */
.sobre-empresa .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

/* Seção de texto */
.sobre-empresa .texto {
  width: 50%;
  padding-right: 30px;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Seção de imagem */
.sobre-empresa .imagem {
  width: 45%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Estilo da imagem */
.sobre-empresa .imagem img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Classes aplicadas via JavaScript quando a seção é visível */
.sobre-empresa.visible .texto,
.sobre-empresa.visible .imagem {
  opacity: 1;
  transform: translateX(0);
}

/* Título com tamanho responsivo */
.sobre-empresa h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 20px;
  color: #181e50;
}

/* Parágrafo com tamanho responsivo */
.sobre-empresa p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: #333;
}

/* ============================================= */
/* 🔹 AJUSTES PARA MOBILE (SOBRE A EMPRESA) */
/* ============================================= */

@media (max-width: 768px) {
  /* Reduz padding */
  .sobre-empresa {
    padding: 40px 0;
  }

  /* Layout em coluna */
  .sobre-empresa .container {
    flex-direction: column;
    text-align: center;
    width: 90%;
  }

  /* Texto e imagem ocupam 100% da largura */
  .sobre-empresa .texto,
  .sobre-empresa .imagem {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }

  /* Mantém texto visível */
  .sobre-empresa .texto {
    opacity: 1;
    transform: translateX(0);
  }

  /* Coloca a imagem antes do texto */
  .sobre-empresa .imagem {
    order: -1;
  }
}

/* ============================================= */
/* 🔹 SEÇÃO DE ESTATÍSTICAS */
/* ============================================= */

.stats-section {
  background-color: #181e50;
  padding: 60px 20px;
  text-align: center;
  margin-top: 10px;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  margin: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.stat-value {
  font-size: 36px;
  color: #181e50;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  color: #666;
}

/* ============================================= */
/* 🔹 SEÇÃO DE CLIENTES */
/* ============================================= */

.client-section {
  align-items: center;
  background-color: #181e50;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.client-section img {
  width: 40%;
  margin: 10px;
}

.imglogofone {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-content {
  display: flex;
  padding: 0 10px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.client-title {
  font-size: 36px;
  margin-bottom: 10px;
}

.client-description {
  font-size: 24px;
  margin-bottom: 20px;
}

.client-button {
  background-color: #ff9215;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.client-button:hover {
  background-color: #51b301;
  transform: translateY(-5px);
}

/* ============================================= */
/* 🔹 RODAPÉ */
/* ============================================= */

footer {
  position: relative;
  padding: 20px 0;
  background-color: #f0f0f0;
}

/* Botão do WhatsApp fixo */
.botaozap {
  width: 80px;
  position: fixed;
  right: 0;
  bottom: 0;
  margin: 10px;
  z-index: 2000;
  animation: pulsar 2s infinite;
  transition: transform 0.3s ease-in-out;
}

/* Efeito de pulsar */
@keyframes pulsar {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Efeito hover no botão do WhatsApp */
.botaozap:hover {
  animation: none;
  transform: scale(1.2);
}

/* Seção de redes sociais */
.redesocialsection {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

.redesocialsection img {
  height: 50px;
  margin: 0 15px;
}

.redesocialicon {
  display: flex;
  margin: 20px auto;
}

/* Texto de copyright */
.footercopy {
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

/* ============================================= */
/* 🔹 SEÇÃO DE VÍDEOS */
/* ============================================= */

.slider-container {
  text-align: center;
  padding: 20px;
  margin: 20px auto;
  max-width: 1200px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.titleiframe {
  font-weight: bold;
  margin: 20px;
  font-size: 25px;
}

.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 auto;
  max-width: 800px;
}

.video-frame {
  width: 100%;
  height: 400px;
  border: none;
}

.video-description {
  font-size: 16px;
  margin-top: 10px;
  font-weight: bold;
}

/* Controles de navegação */
.controls {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  background: linear-gradient(135deg, #181e50, #285275);
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(255, 75, 43, 0.3);
}

.btn:hover {
  background: linear-gradient(135deg, #181e50, red);
  transform: scale(1.05);
}

.btn:active {
  transform: scale(0.95);
}

/* ============================================= */
/* 🔹 BOTÃO "VEJA MAIS" */
/* ============================================= */

.section-readmore {
  justify-content: center;
  align-items: center;
  background-color: #181e50;
  color: #f0f0f0;
  padding: 20px 0;
}

.section-buttonreadmore {
  display: flex;
  justify-content: center;
  margin: auto;
}

.btn-11 {
  border: none;
  margin: 20px;
  border-radius: 5px;
  background: linear-gradient(0deg, rgba(251,33,117,1) 0%, rgba(234,76,137,1) 100%);
  color: #fff;
  overflow: hidden;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}

.btn-11:hover {
  opacity: .7;
}

.btn-11:active {
  box-shadow: 4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
              inset -4px -4px 6px 0 rgba(255,255,255,.2),
              inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}

/* Efeito brilhante ao passar o mouse */
.btn-11:before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-btn1 3s ease-in-out infinite;
}

@keyframes shiny-btn1 {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

/* ============================================= */
/* 🔹 MAPA */
/* ============================================= */

#ondeestamos {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

#ondeestamos h1 {
  margin: 20px;
  font-size: 32px;
  color: #181e50;
}

#ondeestamos iframe {
  width: 90%;
  max-width: 1000px;
  height: 400px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ============================================= */
/* 🔹 CARROSSEL DE IMAGENS */
/* ============================================= */

.carrossel-container {
  width: 100%;
  padding: 40px 0;
  background-color: #f9f9f9;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.carrossel-container h2 {
  font-size: clamp(28px, 3vw, 36px);
  color: #181e50;
  margin-bottom: 30px;
}

.carrossel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carrossel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.carrossel-slide {
  flex: 0 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.carrossel-slide img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.carrossel-slide img:hover {
  transform: scale(1.03);
}

.carrossel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.carrossel-prev,
.carrossel-next {
  pointer-events: all;
  background: rgba(24, 30, 80, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  margin: 0 15px;
}

.carrossel-prev:hover,
.carrossel-next:hover {
  background: rgba(24, 30, 80, 1);
  transform: scale(1.1);
}

.carrossel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.carrossel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carrossel-dot.active {
  background: #181e50;
  transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
  .carrossel-prev,
  .carrossel-next {
      width: 30px;
      height: 50px;
      font-size: 20px;
      margin: 0 5px;
  }
  
  .carrossel-slide {
      padding: 0 5px;
  }
  
  .carrossel-slide img {
      max-height: 300px;
  }
}

@media (max-width: 480px) {
  .carrossel-slide img {
      max-height: 250px;
  }
  
  .carrossel-dot {
      width: 10px;
      height: 10px;
  }
}

/* 🔹 Splash Screen Modal */
#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

#splash-content {
    position: relative;
    max-width: 90%;
    height: 90%;
    background: black;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

#splash-content video {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* Para telas landscape (computador) */
@media (orientation: landscape) {
    #splash-content {
        height: auto;
        max-height: 90%;
    }
    
    #splash-content video {
        width: auto;
        height: auto;
        max-height: 80vh;
    }
}

#close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

#close-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

#unmute-btn {
    position: absolute;
    top: 60px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

#unmute-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}