/* BLP Gerencial - Landing Page Alta Conversão | CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #333;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* CORES */
:root {
  --primary-dark: #15253E;
  --gold: #E0A26F;
  --orange: #E16F3D;
  --white: #FFFFFF;
  --light-gray: #f8f9fa;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(21, 37, 62, 0.98);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-content {
  width: 100%;
  margin: 0;
  padding: 0 20px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.navbar-logo .logo-link:hover {
  opacity: 0.8;
}

.navbar-logo-img {
  max-width: 120px;
  height: auto;
  max-height: 40px;
}

/* HERO SECTION - Alta Conversão */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a5f 100%);
  color: var(--white);
  padding: 80px 0 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  min-height: 400px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(224, 162, 111, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 600px;
  margin: 0;
  padding: 0;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

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

.hero-mobile-image {
  display: none;
  text-align: center;
  margin-bottom: 2rem;
}

.hero-mobile-img {
  max-width: 100%;
  height: auto;
  max-height: 250px;
}

.hero-title-mobile {
  animation: fadeInUp 1s ease;
}

.hero-logo {
  text-align: left;
  margin-bottom: 1rem;
  margin-top: -2rem;
  animation: fadeInDown 1s ease;
}

.logo-img {
  max-width: 220px;
  height: auto;
  max-height: 120px;
}

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

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
  color: var(--white);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 700px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
  margin-bottom: 2rem;
}

.btn-primary {
  background: var(--orange);
  color: white;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(225, 111, 61, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::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;
}

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

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(225, 111, 61, 0.6);
}

.btn-whatsapp {
  background: #25D366;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  box-shadow: 0 25px 60px rgba(37, 211, 102, 0.6);
}

/* SEÇÃO PROBLEMAS */
.problemas {
  background: var(--light-gray);
  padding: 80px 0;
}

.problemas h2 {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.problemas-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.problemas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.problema-item {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.4s ease;
  border-top: 6px solid transparent;
  position: relative;
  overflow: hidden;
}

.problema-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.problema-item:hover::before {
  transform: scaleX(1);
}

.problema-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
  border-top-color: var(--orange);
}

.problema-icon {
  font-size: 4rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.problema-titulo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.problema-desc {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* SEÇÃO SOLUÇÃO */
.solucion {
  padding: 80px 0;
  background: white;
}

.solucion h2 {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.solucion-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.solucion-highlight {
  background: linear-gradient(135deg, var(--primary-dark), #1e3a5f);
  color: white;
  padding: 5rem 3rem;
  border-radius: 24px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 5rem;
  box-shadow: var(--shadow);
  position: relative;
}

.solucion-highlight h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.solucion-highlight p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.solucion-highlight a {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* SERVIÇOS EXPANDIDOS */
.servicos {
  padding: 80px 0 100px 0;
  background: var(--light-gray);
}

.servicos h2 {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}

.servico-card {
  background: white;
  padding: 3.5rem 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border-left: 6px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.servico-card:hover::before {
  transform: scaleX(1);
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.servico-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.servico-titulo {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.servico-desc {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
}

.servicos-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  grid-column: 2;
}

.servicos-cta .btn-primary {
  padding: 1rem 3.5rem;
  font-size: 1rem;
}

/* COMO FUNCIONA */
.como-funciona {
  background: var(--primary-dark);
  color: white;
  padding: 80px 0;
}

.como-funciona h2 {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: white;
}

.como-subtitle {
  text-align: center;
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 3rem;
}

.step-item {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 2rem;
  box-shadow: 0 15px 40px rgba(225, 111, 61, 0.4);
}

.step-titulo {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.step-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* AUTORIDADE */
.autoridade {
  padding: 80px 0;
  background: white;
}

.autoridade h2 {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.autoridade-stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
  text-align: center;
  margin: 4rem 0 6rem;
  flex-wrap: wrap;
}

.stat-item {
  min-width: 180px;
  flex: 1;
  max-width: 220px;
}

.stat-item h3 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--orange);
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.testimonials {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 24px;
  margin-bottom: 3rem;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.testimonial-texto {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

.testimonial-autor {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--orange);
}

/* OBJEÇÕES */
.objeções {
  padding: 80px 0;
  background: var(--light-gray);
}

.objeções h2 {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

.faq-item {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: var(--light-gray);
}

.faq-question:hover {
  background: white;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--orange);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 2.5rem 2rem;
}

.faq-answer p {
  line-height: 1.6;
  color: #666;
  font-size: 0.95rem;
}

.objeção-item {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.objeção-pergunta {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.objeção-resposta {
  color: #666;
  line-height: 1.7;
}

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-final h2 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.cta-final p {
  font-size: 1.4rem;
  margin-bottom: 4rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 3.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.3rem 1.5rem;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  color: var(--primary-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  background: white;
}

.form-group label {
  position: absolute;
  left: 1.5rem;
  top: 1.3rem;
  font-size: 1rem;
  color: #666;
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -0.8rem;
  font-size: 0.85rem;
  color: var(--orange);
  background: white;
  padding: 0 0.3rem;
}

.btn-submit {
  width: 100%;
  background: var(--primary-dark);
  color: var(--white);
  padding: 1.5rem;
  border: none;
  border-radius: 16px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 20px 50px rgba(224, 162, 111, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(224, 162, 111, 0.6);
}

/* MENU HAMBÚRGUER */
.hamburger-btn {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 999;
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  padding: 0;
}

.hamburger-btn:hover span {
  background: var(--gold);
}

.hamburger-btn span {
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger-btn:hover span {
  background: var(--orange);
}

.hamburger-btn.active span {
  background: var(--gold);
}

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

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

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

/* MENU LATERAL */
.menu-lateral {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 100px 0 40px 0;
  transition: right 0.4s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.menu-lateral.active {
  right: 0;
}

.menu-link {
  width: 100%;
  padding: 1.2rem 2rem;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.menu-link:hover {
  background: rgba(224, 162, 111, 0.1);
  color: var(--gold);
  padding-left: 2.5rem;
}

.menu-whatsapp {
  color: #25D366;
  background: rgba(37, 211, 102, 0.1);
  margin-top: auto;
}

.menu-whatsapp:hover {
  color: #25D366;
  background: rgba(37, 211, 102, 0.2);
}

/* OVERLAY DO MENU */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.menu-overlay.active {
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  pointer-events: all;
}


/* ANIMAÇÕES */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVO - TABLET */
@media (max-width: 1070px) and (min-width: 769px) {
  .hero {
    padding: 120px 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .hero-wrapper {
    flex-direction: row;
    gap: 2rem;
    padding: 0 20px;
    flex: 1;
    margin: 0;
    align-items: center;
  }

  .hero-content {
    flex: 1;
  }

  .hero-mobile-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin-bottom: 0;
    order: 2;
  }

  .hero-image {
    display: none;
  }

  .hero-mobile-img {
    max-height: 300px;
  }
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
    text-align: center;
  }

  .hero-wrapper {
    flex-direction: column;
    padding: 0 20px;
  }

  .hero-logo {
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .hero-mobile-image {
    display: block;
    padding-top: 80px;
  }

  .hero-title-mobile {
    animation: none;
    font-size: 1.6rem;
  }

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

  .section,
  .como-funciona,
  .autoridade,
  .objeções,
  .cta-final {
    padding: 80px 0;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    max-width: 100%;
  }

  .form-container {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
  }

  .btn-submit {
    background: var(--primary-dark);
    color: var(--white);
  }

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

  .servicos-cta {
    display: flex;
    margin-top: 2rem;
    grid-column: auto;
  }

  .objeções-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .step-item {
    padding: 1.5rem 1rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .step-titulo {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .step-desc {
    font-size: 0.9rem;
  }

  .solucion-highlight a {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }

  .menu-lateral {
    width: 280px;
    right: -280px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h2 {
    font-size: 1.6rem !important;
  }

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

  .cta-final p {
    font-size: 1rem;
  }

  .como-subtitle {
    font-size: 0.95rem;
  }

  .problemas-subtitle {
    font-size: 0.95rem;
  }

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

  .form-container p {
    font-size: 0.7rem !important;
  }


  .hamburger-btn {
    width: 45px;
    height: 45px;
    top: 20px;
    right: 20px;
  }

  .hamburger-btn span {
    width: 20px;
    height: 2px;
    gap: 4px;
  }

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

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

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

  .menu-lateral {
    width: 280px;
    right: -280px;
    padding-top: 80px;
  }

  .menu-link {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .menu-link:hover {
    padding-left: 2rem;
  }
}