/* ============================================
   GEANE MOURA - ESTÚDIO DE BELEZA
   Modern Elegant Landing Page Styles
   ============================================ */

/* CSS Variables */
:root {
  --primary: #422000;
  --secondary: #ffbe83;
  --base: #010101;
  --accent: #e2ac55;
  --white: #ffffff;
  --footer: #0E0701;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #26292e;

  --font-poppins: "Poppins", sans-serif;
  --font-montserrat: "Montserrat", sans-serif;
  --font-abhaya: "Abhaya Libre", serif;
  --font-alex: "Alex Brush", cursive;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-secondary: 0 10px 40px -10px rgba(255, 190, 131, 0.3);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-poppins);
  background-color: var(--base);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
.logo-text {
  font-family: var(--font-alex);
  font-size: 1.875rem;
  color: var(--secondary);
}

.text-gradient {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Icons */
.icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Buttons */
.btn-section {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--primary);
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-secondary);
  width: 250px;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-secondary);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 20px 40px -10px rgba(255, 190, 131, 0.4);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: auto;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-xlarge {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-weight: 500;
  transition: all var(--transition-normal);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-icon {
  transition: transform var(--transition-normal);
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navigation */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  transition: all var(--transition-normal);
  background: transparent;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(1, 1, 1, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-montserrat);
  font-weight: 300;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--secondary);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(1, 1, 1, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
}

.mobile-menu.hidden {
  display: none;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem;
  gap: 1rem;
}

.mobile-nav-link {
  font-family: var(--font-montserrat);
  font-weight: 300;
  font-size: 1.2rem;
  text-align: center;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--secondary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 190, 131, 0.1) 0%,
      transparent 70%);
  pointer-events: none;
}

.circle-1 {
  width: 24rem;
  height: 24rem;
  top: 5rem;
  left: -12rem;
  opacity: 0.5;
}

.circle-2 {
  width: 500px;
  height: 500px;
  bottom: 0;
  right: 0;
  opacity: 0.3;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  order: 2;
  animation: fadeInUp 0.8s ease-out forwards;
}

.tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 190, 131, 0.3);
  background: rgba(255, 190, 131, 0.1);
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
}

.tag-text {
  color: var(--secondary);
  font-size: 0.75rem;
  font-family: var(--font-montserrat);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-abhaya);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-family: var(--font-montserrat);
  font-weight: 300;
  color: var(--gray-300);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-family: var(--font-abhaya);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--secondary);
}

.stat-label {
  font-family: var(--font-montserrat);
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Image */
.hero-image {
  order: 1;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.image-wrapper {
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--base), transparent 90%);
  border-radius: 1.5rem;
  z-index: 10;
}

.decorative-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 190, 131, 0.2);
  pointer-events: none;
}

.ring-1 {
  width: 10rem;
  height: 10rem;
  top: -2.5rem;
  right: -2.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.decorative-blur {
  position: absolute;
  bottom: -2.5rem;
  left: -2.5rem;
  width: 15rem;
  height: 15rem;
  background: rgba(255, 190, 131, 0.05);
  border-radius: 50%;
  filter: blur(3rem);
  pointer-events: none;
}

/* Sections */
.section {
  padding: 4rem 0;
  position: relative;
}

.section-dark {
  background: rgba(66, 32, 0, 0.05);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.section-grid.reverse {
  direction: rtl;
}

.section-grid.reverse>* {
  direction: ltr;
}

.section-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(66, 32, 0, 0.2);
}

.section-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.image-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(66, 32, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.section-image-wrapper:hover .image-hover-overlay {
  opacity: 1;
}

.overlay-text {
  font-family: var(--font-alex);
  font-size: 1.875rem;
  color: var(--secondary);
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 5rem;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-line {
  width: 3rem;
  height: 1px;
  background-color: var(--secondary);
}

.section-tag {
  color: var(--secondary);
  font-family: var(--font-montserrat);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-abhaya);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--white);
  line-height: 1;
}

.section-text {
  font-family: var(--font-montserrat);
  font-weight: 300;
  color: var(--gray-300);
  font-size: 1.125rem;
  line-height: 1.75;
}

.section-bg {
  background-image: url(/image/geane-moura-estudio-de-beleza.webp);
  background-position: top;
  background-size: cover;
  height: 500px;
  background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 782px) {
  .section-bg {
    background-image: url(/image/geane-moura-estudio-de-beleza.webp);
    background-position: right;
    background-size: cover;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .itens-end {
    align-content: end;
  }

  .fill {
    background-image: rgba(0, 0, 0, 0.5);
    /* 50% de opacidade */
  }
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1rem;
}

.feature-card {
  padding: 1rem;
  border-radius: 0.75rem;
}

.feature-icon {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-title {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.feature-desc {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* Tags Container */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
}

.tag-item {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 190, 131, 0.3);
  color: var(--secondary);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.tag-item:hover {
  background: rgba(255, 190, 131, 0.1);
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 190, 131, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon .icon {
  color: var(--secondary);
  width: 1.5rem;
  height: 1.5rem;
}

.benefit-title {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.benefit-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* About Section */

.about-2 {
  display: flex;
  width: auto;
  padding: 4rem;
  background-image: url(/image/geane-moura-estudio-de-beleza.webp);
  background-position: top;
  background-size: cover;
  justify-content: center;
}

.about-2-div {
  width: 100%;
  flex-direction: column;
  height: 800px;

}

.about-section {
  padding-bottom: 10rem;
  background: linear-gradient(to bottom, rgba(66, 32, 0, 0.1), var(--base));
  text-align: center;
  display: flex;
  grid-template-columns: repeat(2fr, 1fr);
  height: 800px;

}

@media (max-width: 782px) {
  .about-2 {
    background-position: right;
    padding: 1rem;
    width: 100%;
    height: 600px;
  }

  .about-section {
    display: flex wrap;
    width: 100%;
    gap: 0;
    height: 800px;

  }

  .about-2-div {
    flex-wrap: wrap;
    width: 100%;
    align-items: end;
    padding: auto;
    margin: auto;
    height: 800px;

  }
}

.about-container {
  max-width: 80rem;
}

.about-header {
  margin-bottom: 3rem;
}

.about-name {
  display: block;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-title {
  font-family: var(--font-abhaya);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-text {
  font-family: var(--font-montserrat);
  font-weight: 300;
  color: var(--gray-300);
  font-size: 1.25rem;
  line-height: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-card {
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card-title {
  font-family: var(--font-abhaya);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.card-text {
  font-family: var(--font-montserrat);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--gray-400);
}

.about-cta {
  margin-top: 3rem;
}

/* Footer */
.footer {
  background: rgba(66, 32, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: block;
  margin-bottom: 1rem;
}

.footer-text {
  font-family: var(--font-montserrat);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.75;
}

.footer-title {
  font-family: var(--font-abhaya);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-family: var(--font-montserrat);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--secondary);
}

.footer-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-cta:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.copyright {
  font-family: var(--font-montserrat);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-200 {
  animation-delay: 0.2s;
}

/* Hover Effects */
.hover-lift {
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(66, 32, 0, 0.3);
}

.img-zoom {
  overflow: hidden;
}

.img-zoom:hover .section-image {
  transform: scale(1.1);
}

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

::-webkit-scrollbar-track {
  background: var(--base);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Utility Classes */
.hidden {
  display: none;
}

.italic {
  font-style: italic;
}

/* Responsive Design */
@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }

  .desktop-nav {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

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

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

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

  .hero-buttons {
    flex-direction: row;
  }

  .section-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    font-size: 3rem;
  }

  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .btn-hidden {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .section-title {
    font-size: 3.5rem;
  }
}

/* Print Styles */
@media print {

  .navbar,
  .mobile-menu,
  .hero-buttons,
  .btn-primary {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}

/* LOCALIZAÇÃO */
.mapa {
  justify-self: center;
  width: 80%;
  padding: 3rem;
  margin: 3rem 0;
  border-radius: 16px;
}

.mapa h2 {
  text-align: center;
  padding-bottom: 2rem;
}

@media (max-width: 782px) {
  .mapa {
    width: 100%;
    padding: 1rem;
    border-radius: 16px;
  }

}

/* FAQ */
.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Item da FAQ */
.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 2px solid var(--footer);
  overflow: hidden;
  color: var(--base);
  background: var(--gray-100);
}

.faq label {
  background: var(--base);
   border: 1px solid var(--gray-600);
  color: var(--gray-300);
}

/* Container centralizado */
.container-faq {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
}

/* Esconde o checkbox */
.faq-item input {
  display: none;
}

/* Pergunta */
.faq-question {
  display: block;
  padding: 18px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}

/* Ícone + */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: 0.3s;
}

/* Resposta */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Quando estiver marcado */
.faq-item input:checked~.faq-answer {
  max-height: 200px;
  padding: 18px;
}

/* Troca + por - */
.faq-item input:checked+.faq-question::after {
  content: "-";
}

.sobre {
  display: flex;
  width: 100%;
  height: 600px;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 1)
    ),
    url("/image/geane-moura-estudio-de-beleza.webp");
  background-position: top;
  background-repeat: no-repeat;
  align-items: center;
  gap: 0;
}

.sobre-div {
  position: relative;
  width: 50%;
  padding: 6rem;
}

.sobre-span {
  color: var(--secondary);
  font-family: var(--font-montserrat);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sobre-line {
  width: 3rem;
  max-height: 2px;
  background-color: var(--secondary);

}

.sobre-h2 {
  font-family: var(--font-abhaya);
  font-weight: 700;
  font-size: 3.8rem;
  color: var(--accent);
  line-height: 1;
}

.sobre-text {
  font-family: var(--font-montserrat);
  font-weight: 300;
  color: var(--gray-200);
  font-size: 1rem;
  line-height: 1.8;

}

@media (max-width: 782px) {
  .sobre {
    display: flex;
    width: 100%;
    height: 700px;
    gap: 0;
    background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 1)
    ),
    url("/image/geane-moura-estudio-de-beleza.webp");
    background-position: center right;
    align-items: flex-end;
  }

  .sobre-div {
    width: 100%;
    padding: 6rem 2rem 2rem 2rem;
    height: auto;
  }
  .div-reverse{
    display: flex;
    flex-direction: column-reverse;
  }
}


/* SLIDE DE MARCAS */

.brands {
  overflow: hidden;
  padding: 10px 0;
  background: var(--footer);
  margin-bottom: 3rem;
}

.brands-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.brands img {
  height: 60px;
  object-fit: contain;
  opacity: 0.7;
  transition: 0.3s ease;
}

.brands img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* FADE NAS LATERAIS */

.brands {
  position: relative;
}

.brands::before,
.brands::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.brands::before {
  left: 0;
  background: linear-gradient(to right, var(--base), transparent);
}

.brands::after {
  right: 0;
  background: linear-gradient(to left, var(--base), transparent);
}

@media (max-width: 768px) {
  .brands-track {
    gap: 30px;
    animation-duration: 12s;
  }

  .brands img {
    height: 60px;
  }
}