/*
  Bar café - Modernizado
  https://www.wonderstores.pt
*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #BC6C25;
  --secondary-color:              #DDA15E;
  --section-bg-color:             #b78752;
  --custom-btn-bg-color:          #BC6C25;
  --custom-btn-bg-hover-color:    #DDA15E;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #E76F51;

  --body-font-family: 'DM Sans', system-ui, sans-serif;

  --h1-font-size:                 68px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --btn-font-size:                16px;
  --form-btn-font-size:           18px;
  --menu-font-size:               16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-thin:             200;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;

  /* Novas variáveis adicionadas */
  --primary-glow:                 rgba(188, 108, 37, 0.15);
  --secondary-glow:               rgba(221, 161, 94, 0.15);
  --transition-smooth:            cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-subtle:                0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-medium:                0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-strong:                0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
  position: relative;
  display: inline-block;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

h2 {
  font-size: var(--h2-font-size);
  background: linear-gradient(90deg, var(--dark-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s var(--transition-smooth);
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
}

a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s var(--transition-smooth);
}

a:hover {
  color: var(--link-hover-color);
}

a:hover::before {
  width: 100%;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
  position: relative;
  overflow: hidden;
}

.section-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--secondary-color) 0%, transparent 50%);
  opacity: 0.05;
  pointer-events: none;
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.section-overlay + .container {
  position: relative;
  z-index: 22;
}

.back-top-icon {
  font-size: var(--h2-font-size);
}


/*---------------------------------------
  TIMELINE               
-----------------------------------------*/
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 5px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  box-shadow: 0 0 15px var(--primary-glow);
}

.timeline-container {
  padding: 10px 40px;
  padding-top: 0;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: var(--white-color);
  border: 5px solid #7c5c52;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.timeline-container-left {
  left: 0;
}

.timeline-container-right {
  left: 50%;
}

.timeline-container-left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 9px;
  width: 0;
  z-index: 1;
  right: 25px;
  border: medium solid white;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent white;
}

.timeline-container-right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 9px;
  width: 0;
  z-index: 1;
  left: 25px;
  border: medium solid white;
  border-width: 20px 20px 20px 0;
  border-color: transparent white transparent transparent;
}

.timeline-container-right::after {
  left: -13px;
}

.timeline-content {
  padding: 5px;
  background-color: var(--white-color);
  position: relative;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-subtle);
  transition: transform 0.3s var(--transition-smooth);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

@media screen and (max-width: 991px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-container::before {
    left: 58px;
    border: medium solid white;
    border-width: 20px 20px 20px 0;
    border-color: transparent white transparent transparent;
  }

  .timeline-container-left::after, .timeline-container-right::after {
    left: 6px;
  }

  .timeline-container-right {
    left: 0%;
  }
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: linear-gradient(135deg, var(--custom-btn-bg-color), var(--custom-btn-bg-hover-color));
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s var(--transition-smooth);
  padding: 12px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.custom-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s var(--transition-smooth);
}

.custom-btn:hover {
  background: linear-gradient(135deg, var(--custom-btn-bg-hover-color), var(--custom-btn-bg-color));
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.custom-btn:hover::before {
  left: 100%;
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.custom-border-btn:hover {
  background: var(--white-color);
  color: var(--secondary-color);
  border-color: transparent;
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-italic {
  font-style: italic;
}


/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  z-index: 999999;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .container {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-medium);
  padding: 15px 30px;
  box-shadow: var(--shadow-medium);
  animation: slideDown 0.3s var(--transition-smooth);
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.navbar {
  background: transparent;
  z-index: 999999;
  padding-top: 30px;
  padding-bottom: 30px;
}

.navbar .container {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius-medium);
  padding: 15px 30px;
  transition: all 0.3s var(--transition-smooth);
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--white-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar .navbar-brand-image {
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s var(--transition-smooth);
}

.navbar-brand:hover .navbar-brand-image {
  transform: rotate(15deg) scale(1.1);
}

.navbar-brand-image {
  width: 48px;
  height: auto;
  margin-right: 10px;
}

.navbar .custom-btn {
  padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.navbar-expand-lg .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s var(--transition-smooth);
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-bold);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-nav .nav-link.active::before,
.navbar-nav .nav-link:hover::before {
  width: 80%;
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: var(--shadow-strong);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s var(--transition-smooth);
  pointer-events: none;
  border-radius: var(--border-radius-medium);
  transform: translateY(-10px);
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  transition: all 0.2s var(--transition-smooth);
  padding: 8px 20px;
}

.navbar .dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  transition: height 0.2s var(--transition-smooth);
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--link-hover-color);
  padding-left: 25px;
}

.navbar .dropdown-item:hover::before {
  height: 70%;
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--menu-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
  transition: transform 0.3s var(--transition-smooth);
}

.navbar .dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 10px;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
/*---------------------------------------
  HERO - MODERNIZADO & DINÂMICO        
-----------------------------------------*/
.hero-section {
  background: linear-gradient(135deg, 
    var(--dark-color) 0%, 
    #1a1a1a 30%, 
    #2a1f17 70%, 
    var(--dark-color) 100%);
  position: relative;
  overflow: hidden;
  min-height: 620px;
  text-align: center;
  isolation: isolate;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 30% 30%, 
    var(--primary-color) 0%, 
    var(--secondary-color) 30%, 
    transparent 70%);
  opacity: 0.25;
  border-radius: 50%;
  animation: float 20s infinite linear, 
             pulse 8s infinite ease-in-out;
  filter: blur(40px);
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 10%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 70% 70%, 
    var(--secondary-color) 0%, 
    var(--primary-color) 40%, 
    transparent 80%);
  opacity: 0.15;
  border-radius: 50%;
  animation: floatReverse 25s infinite linear alternate;
  filter: blur(50px);
  z-index: 1;
}

/* Elemento decorativo adicional - partículas */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(221, 161, 94, 0.1) 2px, transparent 3px),
    radial-gradient(circle at 40% 20%, rgba(188, 108, 37, 0.15) 3px, transparent 4px),
    radial-gradient(circle at 60% 50%, rgba(221, 161, 94, 0.1) 1px, transparent 2px),
    radial-gradient(circle at 80% 90%, rgba(188, 108, 37, 0.15) 2px, transparent 3px),
    radial-gradient(circle at 90% 10%, rgba(221, 161, 94, 0.1) 3px, transparent 4px);
  background-size: 300px 300px, 250px 250px, 200px 200px, 350px 350px, 400px 400px;
  animation: particlesMove 40s infinite linear;
  z-index: 1;
  pointer-events: none;
}

/* Elemento geométrico dinâmico */
.hero-section .container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: min(80vw, 500px);
  height: min(80vw, 500px);
  background: linear-gradient(135deg, 
    transparent 30%, 
    rgba(188, 108, 37, 0.1) 50%, 
    transparent 70%);
  border-radius: var(--border-radius-medium);
  box-shadow: 
    0 0 100px var(--primary-glow),
    inset 0 0 60px rgba(188, 108, 37, 0.2);
  animation: rotateSlow 30s infinite linear, 
             glowPulse 4s infinite ease-in-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes float {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.25;
  }
  25% { 
    transform: translate(40px, 40px) rotate(90deg) scale(1.1);
    opacity: 0.35;
  }
  50% { 
    transform: translate(-30px, 60px) rotate(180deg) scale(1.05);
    opacity: 0.2;
  }
  75% { 
    transform: translate(60px, -20px) rotate(270deg) scale(1.15);
    opacity: 0.3;
  }
}

@keyframes floatReverse {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg);
  }
  50% { 
    transform: translate(-60px, 40px) rotate(180deg);
  }
}

@keyframes pulse {
  0%, 100% { 
    filter: blur(40px) brightness(1);
  }
  50% { 
    filter: blur(50px) brightness(1.3);
  }
}

@keyframes particlesMove {
  0% { 
    background-position: 0px 0px, 100px 100px, 200px 200px, 300px 300px, 400px 400px;
  }
  100% { 
    background-position: 300px 300px, 400px 400px, 500px 500px, 600px 600px, 700px 700px;
  }
}

@keyframes rotateSlow {
  0% { 
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% { 
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes glowPulse {
  0%, 100% { 
    box-shadow: 
      0 0 80px var(--primary-glow),
      inset 0 0 40px rgba(188, 108, 37, 0.2);
  }
  50% { 
    box-shadow: 
      0 0 120px rgba(188, 108, 37, 0.5),
      inset 0 0 60px rgba(188, 108, 37, 0.3);
  }
}

@media screen and (min-width: 991px) {
  .hero-section {
    height: 100vh;
    min-height: 700px;
  }
}

.hero-section h1 {
  color: var(--white-color);
  text-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(188, 108, 37, 0.4);
  position: relative;
  z-index: 3;
  background: linear-gradient(to right, 
    #ffffff 0%, 
    var(--secondary-color) 30%, 
    var(--white-color) 70%, 
    var(--secondary-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 8s infinite linear;
  background-size: 200% auto;
}

@keyframes textShine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.small-text {
  color: var(--secondary-color);
  font-weight: var(--font-weight-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
  display: inline-block;
  padding: 8px 24px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-large);
  border: 1px solid rgba(221, 161, 94, 0.3);
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-section .custom-border-btn {
  border-color: transparent;
  background: linear-gradient(135deg, 
    rgba(188, 108, 37, 0.2), 
    rgba(221, 161, 94, 0.3));
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 3;
  overflow: hidden;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-section .custom-border-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.6s var(--transition-smooth);
}

.hero-section .custom-border-btn:hover {
  background: linear-gradient(135deg, 
    rgba(188, 108, 37, 0.4), 
    rgba(221, 161, 94, 0.5));
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 12px 40px rgba(188, 108, 37, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-section .custom-border-btn:hover::before {
  left: 100%;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  animation: containerFadeIn 1.2s ease-out 0.3s both;
}

@keyframes containerFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slides {
  width: 100%;
  height: 100%;
  position: absolute !important;
  z-index: 1;
  filter: brightness(0.6) contrast(1.1);
  animation: slidesFade 12s infinite ease-in-out;
}

@keyframes slidesFade {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.9; }
}

.opening-hours-list {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 3;
}

.opening-hours-list li {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1s ease-out calc(var(--i, 0) * 0.1s + 0.8s) both;
  padding: 6px 0;
}

.opening-hours-list li .underline {
  background: linear-gradient(90deg, 
    transparent, 
    var(--secondary-color) 30%, 
    var(--primary-color) 70%, 
    transparent);
  flex-grow: 1;
  height: 1px;
  max-width: 200px;
  opacity: 0.6;
  transition: all 0.3s var(--transition-smooth);
}

.opening-hours-list li:hover .underline {
  opacity: 1;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--secondary-color), 
    var(--primary-color), 
    transparent);
}

/* Efeito de partículas flutuantes */
.hero-section .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
  animation: particleFloat 8s infinite linear;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-100px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-color: var(--secondary-color);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0.1;
}

.about-section .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s var(--transition-smooth);
}

.about-section .ratio:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.custom-video {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.1);
}

.about-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

.about-video-info {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(188, 108, 37, 0.9));
  border-radius: var(--border-radius-medium);
  bottom: 0;
  height: auto;
  padding: 40px;
  backdrop-filter: blur(5px);
}

.about-video-info h4 {
  color: var(--white-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-section h6 {
  color: var(--secondary-color);
}

.team-block-wrap {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  max-height: 450px;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s var(--transition-smooth);
}

.team-block-wrap:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.team-block-wrap:hover .team-block-image {
  transform: scale(1.2) rotate(2deg);
}

.team-block-image-wrap {
  width: 100%;
  overflow: hidden;
}

.team-block-image {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.5s var(--transition-smooth);
}

.team-block-info {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(188, 108, 37, 0.95));
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.team-block-info .badge {
  margin: auto;
  top: 2px;
  bottom: 0;
  align-self: flex-start;
}


/*---------------------------------------
  OUR MENU              
-----------------------------------------*/
.menu-section {
  background-image: url('../images/happy-waitress-giving-coffee-customers-while-serving-them-coffee-shop.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(188, 108, 37, 0.7));
}

.menu-block-wrap {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-medium);
  padding: 45px;
  box-shadow: var(--shadow-strong);
  position: relative;
  z-index: 1;
}

.menu-block {
  transition: all 0.3s var(--transition-smooth);
}

.menu-block:hover {
  transform: translateX(10px);
}

.menu-block .border-top {
  border-top-color: rgba(255, 255, 255, 0.35) !important;
}

.menu-block h6 {
  color: var(--white-color);
}

.menu-block small {
  color: rgba(255, 255, 255, 0.35);
}

.menu-block strong {
  color: var(--secondary-color);
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu-block-image {
  border-radius: 100%;
  width: 350px;
  height: 350px;
  object-fit: cover;
  display: block;
  margin: auto;
  cursor: pointer;
  border: 5px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--primary-color), var(--secondary-color)) border-box;
  transition: all 0.3s var(--transition-smooth);
}

.menu-block-image:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 10px 30px rgba(188, 108, 37, 0.3);
}

.badge {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  font-size: 12px;
  position: relative;
  bottom: 4px;
  padding-bottom: 6px;
  color: white;
  box-shadow: var(--shadow-subtle);
}

.badge::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--primary-color);
}


/*---------------------------------------
  REVIEWS              
-----------------------------------------*/
.reviews-section {
  background-color: #7c5c52;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
  opacity: 0.1;
}

.reviews-block {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s var(--transition-smooth);
}

.reviews-block:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.reviews-block .border-top {
  border-top-color: rgba(255, 255, 255, 0.35) !important;
}

.reviews-block-image-wrap {
  background-image: url('../images/mid-section-waitress-wiping-espresso-machine-with-napkin-cafa-c.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px;
  position: relative;
}

.reviews-block-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(124, 92, 82, 0.9), rgba(124, 92, 82, 0.7));
}

.reviews-block-image {
  border-radius: var(--border-radius-large);
  width: 65px;
  height: 65px;
  object-fit: cover;
  margin-right: 10px;
  border: 3px solid white;
  box-shadow: var(--shadow-subtle);
  position: relative;
  z-index: 1;
}

.reviews-block-info {
  padding: 20px 30px;
}

.reviews-block-info p {
  font-size: var(--btn-font-size);
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding-left: 20px;
}

.reviews-block-info p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 40px;
  color: var(--primary-color);
  opacity: 0.5;
}

.reviews-group i {
  color: #FFD700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--transition-smooth);
}

.reviews-group i:hover {
  transform: scale(1.2);
}


/*---------------------------------------
  BOOKING SECTION              
-----------------------------------------*/
.booking-section {
  background-image: url('../images/young-female-barista-wear-face-mask-serving-take-away-hot-coffee-paper-cup-consumer-cafe.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(188, 108, 37, 0.6));
}

.booking-form-wrap {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-form {
  padding: 55px 65px;
}

.booking-form-image-wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.booking-form-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent);
  z-index: 1;
}

.booking-form-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition-smooth);
}

.booking-form-image-wrap:hover .booking-form-image {
  transform: scale(1.1);
}

.booking-form-text span {
  color: var(--white-color);
  font-size: var(--btn-font-size);
  display: inline-block;
  padding: 5px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-large);
  backdrop-filter: blur(5px);
}

.reservation-page .custom-border-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.05);
}

.reservation-page .custom-border-btn:hover {
  border-color: transparent;
  background: var(--secondary-color);
  color: var(--dark-color);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(188, 108, 37, 0.8)), url('../images/young-female-barista-wear-face-mask-serving-take-away-hot-coffee-paper-cup-consumer-cafe.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.google-map {
  border-radius: var(--border-radius-medium);
  filter: grayscale(100) contrast(1.2);
  transition: filter 0.3s var(--transition-smooth);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.google-map:hover {
  filter: grayscale(0) contrast(1.1);
}

.contact-block-wrap {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius-medium);
  padding: 0;
  min-height: 200px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s var(--transition-smooth);
}

.contact-block-wrap:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.contact-block {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
  border-radius: var(--border-radius-medium);
  transform: rotate(8deg);
  height: 100%;
  padding: 20px 40px;
  box-shadow: var(--shadow-subtle);
}

.contact-block h6 {
  transform: rotate(-8deg);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-block .custom-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius-large);
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s var(--transition-smooth);
}

.contact-block .custom-icon:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: var(--shadow-medium);
}

.contact-block strong {
  display: block;
  color: var(--dark-color);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  border-radius: var(--border-radius-small);
  margin-bottom: 30px;
  padding-top: 13px;
  padding-bottom: 13px;
  box-shadow: none;
  outline: none;
  transition: all 0.3s var(--transition-smooth);
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.9);
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: var(--white-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-glow);
  transform: translateY(-2px);
}

.custom-form .form-label {
  color: var(--white-color);
  font-style: italic;
  margin-bottom: 15px;
  font-weight: var(--font-weight-light);
}

.custom-form button[type="submit"] {
  background: linear-gradient(135deg, var(--custom-btn-bg-color), var(--custom-btn-bg-hover-color));
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--form-btn-font-size);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s var(--transition-smooth);
  margin-bottom: 0;
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: linear-gradient(135deg, var(--custom-btn-bg-hover-color), var(--custom-btn-bg-color));
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  color: var(--white-color);
}

.contact-form .form-control,
.booking-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white-color);
}

.booking-form .form-control {
  color: var(--white-color);
}

.booking-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
}

.custom-form input::-webkit-input-placeholder,
.custom-form textarea::-webkit-input-placeholder {
   color: rgba(255, 255, 255, 0.7);
}

.booking-form input:-moz-placeholder,
.booking-form textarea:-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}


/*---------------------------------------
  SITE FOOTER - LAYOUT FIXO DEFINITIVO
-----------------------------------------*/
/*---------------------------------------
  SITE FOOTER - LAYOUT COMPLETO CORRIGIDO
-----------------------------------------*/
.site-footer {
  background: linear-gradient(135deg, 
    var(--primary-color) 0%, 
    #b3591a 25%, 
    var(--secondary-color) 50%, 
    #a55a1f 75%, 
    var(--primary-color) 100%);
  padding: 80px 0 50px;
  position: relative;
  overflow: hidden;
  background-size: 300% 300%;
  animation: gradientShift 15s ease infinite;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Container principal */
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ===== LAYOUT PRINCIPAL ===== */
.footer-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr; /* Três colunas */
  gap: 40px;
  margin-bottom: 40px;
}

/* Coluna dos Ícones */
.footer-social-col {
  display: flex;
  flex-direction: column;
}

/* Coluna de Contacto */
.footer-contact-col {
  display: flex;
  flex-direction: column;
}

/* Coluna de Horários */
.footer-hours-col {
  display: flex;
  flex-direction: column;
}

/* ===== ÍCONES SOCIAIS ===== */
.social-icons-wrapper {
  margin-bottom: 0;
}

.social-icons-list {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icon-item {
  display: block;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20px;
}

.social-icon-link:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
}

.social-icon-link.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.social-icon-link.twitter:hover {
  background: #1DA1F2;
  border-color: #1DA1F2;
}

.social-icon-link.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}

/* ===== TÍTULOS ===== */
.footer-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 12px;
  position: relative;
  display: block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, white, rgba(255, 255, 255, 0.5));
  border-radius: 2px;
}

/* ===== CONTACTO ===== */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.contact-label {
  color: var(--secondary-color, #D2691E);
  font-weight: 600;
  min-width: 70px;
  margin-right: 10px;
}

.contact-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  flex: 1;
}

.contact-link:hover {
  color: white;
  text-decoration: underline;
}

/* ===== HORÁRIOS ===== */
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-day {
  flex: 1;
}

.hours-time {
  color: var(--secondary-color, #D2691E);
  font-weight: 600;
  min-width: 120px;
  text-align: right;
}

/* ===== COPYRIGHT ===== */
.footer-copyright {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.copyright-link {
  color: var(--secondary-color, #D2691E);
  text-decoration: none;
}

.copyright-link:hover {
  color: white;
  text-decoration: underline;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
  .footer-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .social-icons-list {
    justify-content: center;
  }
  
  .footer-social-col,
  .footer-contact-col,
  .footer-hours-col {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-item {
    justify-content: center;
    text-align: center;
  }
  
  .hours-item {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .hours-time {
    text-align: center;
    min-width: auto;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding: 60px 0 40px;
  }
  
  .social-icon-link {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  
  .footer-copyright {
    padding-top: 30px;
    margin-top: 30px;
  }
}

/* Animações */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Fallback para variáveis */
:root {
  --primary-color: #8B4513;
  --secondary-color: #D2691E;
}
/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-section {
    padding-top: 148px;
    padding-bottom: 100px;
  }

  .navbar-brand,
  .navbar-brand:hover {
    font-size: var(--h5-font-size);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    margin-bottom: 0;
  }

  .navbar .custom-btn {
    margin-bottom: 10px;
  }

  .booking-form {
    padding: 45px;
  }

  .contact-section .container {
    width: auto;
    margin-right: 10px;
    margin-left: 10px;
    padding: 35px;
  }

  .site-footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .menu-block-wrap,
  .reviews-block-image-wrap,
  .reviews-block-info {
    padding: 20px;
  }

  .menu-block-image {
    width: 250px;
    height: 250px;
  }
}


@media screen and (max-width: 578px) {
  .navbar .container,
  .sticky-wrapper.is-sticky .container {
    margin-right: 10px;
    margin-left: 10px;
  }

  .booking-form {
    padding: 30px;
  }
}


@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .hero-section::after {
    width: 200px;
    height: 200px;
  }

  .booking-form {
    padding: 25px;
  }

  .opening-hours-list li {
    font-size: 12px;
  }

  .reviews-block-image-wrap {
    flex-direction: column;
  }

  .reviews-block-image {
    margin-bottom: 15px;
  }

  .timeline-container {
    padding-left: 55px;
  }

  .timeline-container::before {
    left: 44px;
    border: medium solid white;
    border-width: 15px 15px 15px 0;
    border-color: transparent white transparent transparent;
  }

  .timeline-container-left::before,
  .timeline-container-right::before {
    top: 13px;
  }
}

/*---------------------------------------
  ANIMAÇÕES ADICIONAIS (SEM ALTERAR ARQUITETURA)
-----------------------------------------*/
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--section-bg-color);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius-large);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
}