/* Estilos Globais */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --amarelo-ouro: #F2B705;
  --laranja-medio: #F29D35;
  --bege-claro: #F2E6D8;
  --laranja-fogo: #F24B0F;
  --preto-profundo: #0D0D0D;
  --branco-puro: #FFFFFF;
  --cinza-neutro: #9E9E9E;
  --sombra-suave: 0 4px 6px rgba(0, 0, 0, 0.1);
  --sombra-media: 0 8px 16px rgba(0, 0, 0, 0.12);
  --sombra-hover: 0 12px 24px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  position: relative;
  padding-bottom: 0.5rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--amarelo-ouro), var(--laranja-fogo));
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 50%, #1a1a1a 100%);
  overflow: hidden;
  padding: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(242, 183, 5, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(242, 75, 15, 0.1) 0%, transparent 50%);
  animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(242, 183, 5, 0.03) 2px,
      rgba(242, 183, 5, 0.03) 4px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  text-align: center;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(242, 183, 5, 0.2), rgba(242, 75, 15, 0.2));
  border: 2px solid rgba(242, 183, 5, 0.3);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  color: var(--amarelo-ouro);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-badge i {
  font-size: 1.2rem;
  color: var(--laranja-fogo);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 1s ease 0.4s both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--amarelo-ouro), var(--laranja-fogo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.8s both;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: var(--sombra-media);
}

.btn-primary {
  background: linear-gradient(135deg, var(--amarelo-ouro), var(--laranja-medio));
  color: var(--preto-profundo);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(242, 183, 5, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--laranja-fogo);
  transform: translateY(-5px);
}

.hero-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--amarelo-ouro);
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--amarelo-ouro);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-scroll a:hover {
  background: linear-gradient(135deg, var(--amarelo-ouro), var(--laranja-fogo));
  border-color: transparent;
  transform: scale(1.1);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.btn-chamados {
  background: linear-gradient(135deg, var(--laranja-fogo), var(--laranja-medio)) !important;
  color: white !important;
  padding: 0.8rem 1.5rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  box-shadow: var(--sombra-suave) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.btn-chamados:hover {
  background: linear-gradient(135deg, var(--amarelo-ouro), var(--laranja-medio)) !important;
  transform: translateY(-3px) !important;
  box-shadow: var(--sombra-media) !important;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

a {
  text-decoration: none;
  color: var(--laranja-fogo);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--amarelo-ouro);
  transform: translateY(-2px);
}

/* Estilos para a Navbar */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(26, 26, 26, 0.95);
  padding: 1rem 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(242, 183, 5, 0.2);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.98);
  padding: 0.7rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar .logo {
  color: var(--branco-puro);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar .logo:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.navbar .logo img {
  height: 55px;
  width: 55px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--amarelo-ouro), var(--laranja-fogo)) border-box;
  box-shadow: 0 0 20px rgba(242, 183, 5, 0.6);
  transition: all 0.3s ease;
}

.navbar .logo img:hover {
  box-shadow: 0 0 30px rgba(242, 75, 15, 0.8);
  transform: rotate(5deg) scale(1.1);
}

.navbar .menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 0.3rem;
  align-items: center;
}

.navbar .menu li {
  position: relative;
}

.navbar .menu a {
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.2rem;
  display: block;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.navbar .menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amarelo-ouro), var(--laranja-fogo));
  transition: width 0.3s ease;
}

.navbar .menu a:hover::before {
  width: 100%;
}

.navbar .menu a:hover {
  background: rgba(242, 183, 5, 0.1);
  transform: translateY(-2px);
}

.navbar .menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar .menu-toggle:hover {
  background: rgba(242, 183, 5, 0.2);
}

.sanduiche {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sanduiche-line {
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--amarelo-ouro), var(--laranja-fogo));
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active .sanduiche-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .sanduiche-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .sanduiche-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Estilos para o Dropdown */

.dropdown {
  display: none;
  position: absolute;
  background: linear-gradient(135deg, #2d3436 0%, #1a1a1a 100%);
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  z-index: 1;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: var(--sombra-media);
  top: 100%;
  margin-top: 0.5rem;
}

.dropdown li {
  width: 100%;
}

.dropdown a {
  padding: 0.8rem 1.5rem !important;
  border-radius: 0 !important;
}

.dropdown a:hover {
  background: linear-gradient(90deg, var(--amarelo-ouro), var(--laranja-fogo)) !important;
}

.navbar .menu li:hover .dropdown {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilos para a Header */

.header {
  width: 100%;
  height: 100px;
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
}

.header h1 {
  font-size: 24px;
  margin: 0;
}

/* Estilos para a Main */

.main {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
  gap: 2rem;
}

/* Estilos para a Section */

section {
  background: white;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--sombra-suave);
  border-radius: 16px;
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease;
}

section:hover {
  box-shadow: var(--sombra-hover);
  transform: translateY(-5px);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilos para a Slideshow */
.servicos {
  width: 100%;
  min-height: 600px;
}

.slideshow {
  position: relative;
  height: 70vh;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--sombra-media);
}

.slide {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transition: all 0.5s ease;
}

.slide:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

.texto {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: var(--branco-puro);
  backdrop-filter: blur(5px);
}

.texto h3 {
  color: var(--branco-puro);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.texto p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--amarelo-ouro), var(--laranja-fogo));
  color: var(--preto-profundo);
  padding: 1rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--sombra-suave);
}

.prev:hover, .next:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--sombra-media);
}

.prev {
  left: 1rem;
}

.next {
  right: 1rem;
}

/* Estilos para a Projeto Container */

.projetos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

.projetos {
  background: white;
  padding: 0;
  box-shadow: var(--sombra-suave);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
}

.projetos:hover {
  transform: translateY(-10px);
  box-shadow: var(--sombra-hover);
}

.projetos img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.projetos:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.projetos h3 {
  padding: 1rem 1.5rem 0.5rem;
  color: #2c3e50;
}

.projetos p {
  padding: 0 1.5rem 1rem;
  color: #7f8c8d;
}

.projetos a {
  display: inline-block;
  margin: 0 1.5rem 1.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--amarelo-ouro), var(--laranja-fogo));
  color: var(--preto-profundo);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--sombra-suave);
}

.projetos a:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-media);
}

.sobre {
  width: 90%;
  max-width: 1200px;
}

.sobre h3 {
  color: var(--laranja-fogo);
  margin-top: 2rem;
}

.sobre p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}
/* Estilos para a Contato Form */
.contato {
  width: 90%;
  max-width: 1200px;
}

.contato-form {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contato-form label {
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight: 600;
}

.contato-form input, .contato-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.contato-form input:focus, .contato-form textarea:focus {
  outline: none;
  border-color: var(--laranja-fogo);
  box-shadow: 0 0 0 3px rgba(242, 75, 15, 0.1);
  transform: translateY(-2px);
}

.contato-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contato-form button {
  background: linear-gradient(135deg, var(--amarelo-ouro), var(--laranja-fogo));
  color: var(--preto-profundo);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: var(--sombra-suave);
  align-self: flex-start;
}

.contato-form button:hover {
  transform: translateY(-3px);
  box-shadow: var(--sombra-media);
}

.contato-form button:active {
  transform: translateY(-1px);
}

/* Estilos para a Contato Info */

.contato-info {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1rem;
}

.contato-info p {
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contato-info strong {
  color: var(--laranja-fogo);
  font-weight: 700;
}

.contato-info a {
  color: var(--amarelo-ouro);
  font-weight: 600;
}

.contato-info a:hover {
  text-decoration: underline;
}

.contato iframe {
  border-radius: 12px;
  box-shadow: var(--sombra-media);
  margin-top: 2rem;
}

/* Estilos para a Footer */

.footer {
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
  color: var(--branco-puro);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.footer p {
  margin: 0;
  opacity: 0.9;
}

.footer a {
  color: var(--amarelo-ouro);
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--laranja-fogo);
  text-decoration: underline;
}

/* Media Queries */

@media (max-width: 700px) {
  .hero {
    min-height: 90vh;
    padding: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .feature-item {
    width: 100%;
    justify-content: center;
  }

  .navbar .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
    padding: 1rem;
    border-radius: 0 0 12px 12px;
    box-shadow: var(--sombra-media);
  }

  .navbar .menu-toggle {
    display: block;
  }

  .navbar .menu.active {
    display: flex;
  }

  .servicos {
    width: 100%;
  }

  .contato {
    width: 100%;
  }

  .sobre {
    width: 100%;
  }

  .projetos {
    width: 100%;
  }

  .slideshow {
    height: 50vh;
  }

  .projetos-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .hero-buttons {
    gap: 1rem;
  }

  .btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .header {
    height: 80px;
  }

  .nav {
    display: block;
    width: 100%;
  }

  .navbar {
    flex-wrap: wrap;
    padding: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .main {
    padding: 1rem;
  }

  .footer {
    padding: 1.5rem;
  }

  .projetos-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  h2::after {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 100vh;
    padding: 1rem 0.5rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .btn-primary, .btn-secondary {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }

  .feature-item {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .hero-scroll {
    bottom: 1rem;
  }

  .header {
    height: 60px;
  }

  .main {
    padding: 0.5rem;
  }

  section {
    padding: 2rem 1rem;
    border-radius: 12px;
  }

  .footer {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .projetos-container {
    grid-template-columns: 1fr;
  }

  .navbar .logo {
    font-size: 1rem;
  }

  .navbar .logo img {
    height: 40px;
    width: 40px;
  }

  .slideshow {
    height: 40vh;
  }

  .prev, .next {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .contato-form {
    padding: 1rem;
  }

  .contato-info {
    padding: 1rem;
  }
}

/* Animações adicionais */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.navbar .logo img:hover {
  animation: pulse 0.6s ease infinite;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--amarelo-ouro), var(--laranja-fogo));
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--laranja-fogo), var(--amarelo-ouro));
}