/* 
   TEKKON BOLD & BALANCED
   Focus: High Impact, Authority, and Perfect Proportions
*/

:root {
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-glow: rgba(30, 64, 175, 0.2);
  --primary-soft: rgba(30, 64, 175, 0.1);
  --text-main: #0f172a;
  --text-muted: #475569;
  --bg-body: #ffffff;
  --border-color: rgba(0, 0, 0, 0.08);
  
  --shadow-premium: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  --transition-base: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
}

/* NAVBAR - Defined & Clean */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.logo img {
  height: 26px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 999;
  flex-direction: column;
  padding: 1.5rem 5%;
  gap: 1.5rem;
  max-height: calc(100vh - 65px);
  overflow-y: auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--primary);
}

/* BUTTONS - More Impactful */
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-base);
  box-shadow: 0 6px 15px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--primary-glow);
}

.nav-actions .btn-primary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  box-shadow: none;
  padding: 0.6rem 1.4rem;
}

.nav-actions .btn-primary:hover {
  background: var(--primary);
  color: #fff;
}

/* HERO SECTION - Balanced Impact */
.hero-section {
  padding: 120px 5% 40px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: #f1f5f9;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.hero h1 {
  font-size: clamp(1.95rem, 2.8vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #0a0f2c;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.6;
}

/* HERO VISUAL */
.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
}

/* PARTNERS SECTION - Bold Logos */
.partners {
  padding: 50px 0;
  background: #fff;
  border-top: 1px solid var(--border-color);
  width: 100%;
  max-width: 100vw;
  overflow: hidden; /* Trava absoluta */
  position: relative;
  box-sizing: border-box;
}

.partners-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.logos-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
  will-change: transform;
  pointer-events: none; /* Evita interferência no toque */
}

.logos {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
  flex-shrink: 0;
}

/* Ajuste específico para mobile para garantir que nada vaze */
@media (max-width: 1100px) {
  .partners {
    display: block;
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  
  .logos-track {
    display: flex;
    width: fit-content;
  }
}

.logos img {
  height: 32px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition-base);
}

.logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

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

/* RESPONSIVE */
/* Removido para evitar conflito com o novo breakpoint mobile de 1100px */

/* MAIN FOOTER */
.main-footer {
  background: #f8fafc;
  padding: 80px 5% 40px;
  border-top: 1px solid var(--border-color);
  color: var(--text-main);
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  width: 100%;
  box-sizing: border-box;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  height: 24px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  transition: var(--transition-base);
}

.social-links a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* RESPONSIVE FOOTER */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .footer-brand {
    margin: 0 auto;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* PROBLEM SECTION */
.problem-section {
  padding: 100px 5%;
  background-color: #ffffff;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.problem-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.problem-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.problem-header h2 span {
  color: var(--primary);
}

.problem-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.quote-box {
  background: #f8fafc;
  padding: 40px;
  border-radius: 20px;
  border-left: 4px solid var(--primary);
  margin-bottom: 60px;
  text-align: center;
}

.quote-box blockquote {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-main);
  font-style: italic;
}

.quote-box strong {
  color: var(--primary);
}

.agitation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.agitation-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: var(--transition-base);
}

.agitation-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary-soft);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.agitation-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.agitation-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.problem-footer {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: #f1f5f9;
  border-radius: 20px;
}

.problem-footer p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-main);
}

/* RESPONSIVE PROBLEM SECTION */
@media (max-width: 1100px) {
  .agitation-grid {
    grid-template-columns: 1fr;
  }
  
  .problem-section {
    padding: 60px 5%;
  }
}

/* COMPARISON SECTION */
.comparison-section {
  padding: 100px 5%;
  background-color: #f8fafc;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.comparison-header {
  text-align: center;
  margin-bottom: 60px;
}

.comparison-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.comparison-header h2 span {
  color: var(--primary);
}

.comparison-table {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row.header {
  background: var(--text-main);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.comparison-col {
  padding: 30px 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.comparison-col.before {
  background: rgba(241, 245, 249, 0.5);
  border-right: 1px solid var(--border-color);
}

.comparison-col.after {
  background: #fff;
}

.status-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.status-icon.negative {
  background: #fee2e2;
  color: #ef4444;
}

.status-icon.positive {
  background: #dcfce7;
  color: #22c55e;
}

.comparison-col p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-main);
}

.comparison-col.before p {
  color: var(--text-muted);
}

.comparison-col strong {
  color: var(--text-main);
}

.comparison-col.after strong {
  color: var(--primary);
}

/* RESPONSIVE COMPARISON */
@media (max-width: 1100px) {
  .comparison-row {
    grid-template-columns: 1fr;
  }
  
  .comparison-col.before {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  
  .comparison-row.header {
    display: none;
  }
}

/* SOLUTIONS SECTION */
.solutions-section {
  padding: 100px 5%;
  background-color: #ffffff;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.solutions-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.solutions-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.solutions-header h2 span {
  color: var(--primary);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.solution-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-premium);
  transform: translateY(-5px);
}

.solution-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  width: fit-content;
  text-transform: uppercase;
}

.solution-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.pain-point {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px dashed var(--border-color);
}

.pain-point strong {
  color: #ef4444;
}

.benefit-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.benefit-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.roi-callout {
  text-align: center;
  padding: 30px;
  background: var(--primary-soft);
  border-radius: 16px;
  border: 1px solid rgba(30, 64, 175, 0.1);
}

.roi-callout p {
  font-size: 1.1rem;
  color: var(--text-main);
}

.roi-callout strong {
  color: var(--primary);
}

/* RESPONSIVE SOLUTIONS */
@media (max-width: 1100px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* WHY TEKKON SECTION */
.why-tekkon {
  padding: 100px 5%;
  background-color: #f8fafc;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.why-header h2 span {
  color: var(--primary);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.diff-item {
  position: relative;
}

.diff-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-soft);
  line-height: 1;
  margin-bottom: 1rem;
}

.diff-item h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.diff-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.ia-features {
  list-style: none;
  margin-top: 1.5rem;
}

.ia-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  padding-left: 20px;
  position: relative;
}

.ia-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 80px;
}

.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  color: var(--primary-soft);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.client-info strong {
  display: block;
  font-size: 1rem;
  color: var(--text-main);
}

.client-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  background: var(--text-main);
  color: #fff;
  padding: 80px 40px;
  border-radius: 32px;
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.3);
}

.final-cta h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.final-cta p {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 12px;
}

/* RESPONSIVE WHY TEKKON */
@media (max-width: 1100px) {
  .differentials-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .final-cta h3 {
    font-size: 2rem;
  }
}

/* ==========================================================================
   MOBILE OPTIMIZATIONS - TRÊS ALTERAÇÕES SOLICITADAS
   ========================================================================== */

@media (max-width: 1100px) {
  /* Navbar Fix */
  .navbar {
    padding: 0.75rem 5%;
    height: 65px;
  }

  /* Forçar ocultação de links e botões na navbar */
  #navLinks,
  .nav-links, 
  header.navbar .nav-links,
  #navActions,
  .nav-actions {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  .logo img {
    height: 18px !important;
  }

  /* Forçar exibição do Hamburger Menu */
  #hamburger,
  .hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* ALTERAÇÃO 1: Esconder botão "Agendar" na navbar mobile */
  header.navbar .nav-actions .btn-primary {
    display: none !important;
  }

  /* Hero Fix */
  section.hero-section {
    padding-top: 100px !important;
    text-align: center !important;
    min-height: auto !important;
    padding-bottom: 30px !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  section.hero-section .hero-wrapper {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    width: 100% !important;
    padding: 0 5% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* ALTERAÇÃO 2: Esconder imagem principal (mockup) no mobile */
  .hero-visual, 
  .hero-visual img,
  section.hero-section .hero-visual {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero h1,
  .hero-section h1 {
    font-size: 1.5rem !important;
    margin: 0 auto !important;
    line-height: 1.2 !important;
    word-wrap: break-word !important;
  }

  .hero p,
  .hero-section p {
    margin: 0 auto 2.5rem !important;
    max-width: 100% !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }

  .hero,
  .hero-content {
    width: 100% !important;
  }

  /* Grid Fixes */
  .agitation-grid, .solutions-grid, .differentials-grid, .testimonials-grid, .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .section-container {
    width: 100%;
    padding: 0;
  }

  /* Comparison Table Fix */
  .comparison-row { grid-template-columns: 1fr; }
  .comparison-row.header { display: none; }
  .comparison-col.before { border-right: none; border-bottom: 1px solid var(--border-color); }

  /* Spacing */
  .problem-section, .comparison-section, .solutions-section, .why-tekkon {
    padding: 50px 5%;
    width: 100%;
  }

  .problem-header {
    max-width: 100%;
    padding: 0;
  }

  .solutions-header {
    max-width: 100%;
    padding: 0;
  }

  .why-header {
    max-width: 100%;
    padding: 0;
  }

  .final-cta {
    padding: 40px 20px;
    border-radius: 0;
    margin: 40px -5% 0;
  }

  .footer-brand, .footer-column { text-align: center; }
  .social-links { justify-content: center; }

  /* Garantir que nenhum elemento ultrapasse a largura da tela */
  main {
    width: 100%;
    overflow-x: hidden;
  }

  footer {
    width: 100%;
    overflow-x: hidden;
  }

  .partners {
    overflow: hidden;
    width: 100%;
    position: relative;
  }

  .logos-track {
    width: max-content;
    display: flex;
  }
}

@media (max-width: 480px) {
  html, body {
    width: 100%;
    overflow-x: hidden !important;
  }

  .logo img {
    height: 16px;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .btn-primary {
    width: 100%;
  }

  .mobile-menu {
    padding: 1rem 5%;
    gap: 1rem;
    width: 100%;
  }

  .mobile-menu a {
    padding: 0.6rem 0;
  }

  .logos-track {
    overflow: hidden;
    width: 100%;
  }

  .partners {
    overflow: hidden;
    width: 100%;
  }

  main {
    width: 100%;
    overflow-x: hidden;
  }

  footer {
    width: 100%;
    overflow-x: hidden;
  }
}
