html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px;
}

/* .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
} */

/* HEADER M10 */
/* .header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
} */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

/* Opcional: links claros no topo */
.header a {
  color: #ffffff;
}

.header.scrolled {
  background: rgba(24, 24, 24, 0.85); /* #181818 com transparência */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 200px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.logo a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

/* BOTÃO MOBILE */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* MAIN HERO */
/* .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #0a0a0a;
  color: #fff;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 32px;
  color: #cccccc;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-visual {
  height: 420px;
  background: linear-gradient(135deg, #7200ff, #000);
  border-radius: 16px;
} */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  background: linear-gradient(180deg, #0b0b0b, #111);
  /* background-color: red; */
  color: #fff;
  overflow: hidden;
  position: relative;
  /* background-attachment: fixed; */
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(114, 0, 255, 0.22),
      transparent 60%
    ),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 0, 0.18), transparent 65%);
  animation: gradientMove 28s ease-in-out infinite;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
}

@keyframes gradientMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-4%, -3%) scale(1.05);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* TEXTO */
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-title {
  color: #ffffff;
}

.hero-title .highlight {
  background: linear-gradient(90deg, #7200ff, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* .highlight {
  background: linear-gradient(90deg, #7200ff, #ff6b00, #7200ff);
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
} */

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons a {
  opacity: 0;
  transform: translateY(15px);
}

/* VISUAL */
.hero-visual {
  position: relative;
  height: 420px;
}

.hero-text {
  color: #ffffff;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: #ff6b00;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

/* .hero-text h1 span {
  color: #7200ff;
} */

.hero-text p {
  max-width: 520px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d0d0d0;
  margin-bottom: 24px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.hero-points li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  color: #e0e0e0;
}

.hero-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff6b00;
}

/* CARDS */
/* .floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 24px;
  width: 220px;
  animation: float 6s ease-in-out infinite;
} */

.floating-card {
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 22px 26px;
  width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: default;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  animation: float 6s ease-in-out infinite;
}

.floating-card:hover {
  transform: translateY(-14px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.08);
}

.floating-card span {
  font-size: 1.1rem;
  font-weight: 600;
}

.floating-card small {
  display: block;
  margin-top: 6px;
  opacity: 0.7;
  font-size: 0.85rem;
}

.tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  width: 260px;
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: center;

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* SETINHA */
.tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: rgba(20, 20, 20, 0.95) transparent transparent;
}

/* HOVER */
.floating-card:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* POSIÇÕES */
.card-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.card-1 {
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #7200ff, #ff6b00);
  padding: 20px 26px;
  color: #ffffff;
  border: none;
}

.card-2 {
  top: 60px;
  right: 0;
  animation-delay: 1s;
}

.card-3 {
  bottom: 80px;
  left: 40px;
  animation-delay: 2s;
}

.card-4 {
  bottom: 0;
  right: 40px;
  animation-delay: 3s;
}

/* ANIMAÇÃO */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

.about {
  padding: 120px 0;
  background: #181818;
  color: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-tag {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text p {
  color: #cfcfcf;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  background-color: #181818;
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.about-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.about-card p {
  color: #bfbfbf;
  font-size: 0.95rem;
}

.methodology {
  padding: 120px 0;
  background: #181818;
  color: #fff;
}

.methodology-header {
  max-width: 720px;
  margin-bottom: 80px;
}

.methodology-header h2 {
  font-size: 2.8rem;
  margin: 20px 0;
  line-height: 1.2;
}

.methodology-header p {
  color: #cfcfcf;
  font-size: 1.05rem;
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step {
  background: #181818;
  padding: 40px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.step-number {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 1px;
}

.step h3 {
  margin: 16px 0 12px;
  font-size: 1.4rem;
}

.step p {
  color: #bfbfbf;
  font-size: 0.95rem;
  line-height: 1.6;
}

.services {
  padding: 120px 0;
  background: #181818;
  color: #fff;
}

.services-header {
  max-width: 720px;
  margin-bottom: 80px;
}

.services-header h2 {
  font-size: 2.6rem;
  margin: 20px 0;
  line-height: 1.2;
}

.services-header p {
  color: #cfcfcf;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.service-card {
  background: #181818;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.service-card p {
  color: #bfbfbf;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 8px;
}

.service-card.highlight {
  border: 1px solid var(--color-primary);
  background: linear-gradient(180deg, #181818, #0f0f0f);
}

.services-cta {
  margin-top: 100px;
  padding: 60px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--color-primary), #6c4eff);
  text-align: center;
}

.services-cta h3 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.services-cta .btn-primary {
  background: #000;
  color: #fff;
}

.social-proof {
  padding: 120px 0;
  background: #181818;
  color: #fff;
}

.social-header {
  max-width: 720px;
  margin-bottom: 80px;
}

.social-header h2 {
  font-size: 2.6rem;
  margin: 20px 0;
  line-height: 1.2;
}

.social-header p {
  color: #cfcfcf;
  font-size: 1.05rem;
}

.social-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 100px;
}

.number-card {
  background: #181818;
  padding: 40px 24px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.number-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.number-card p {
  font-size: 0.95rem;
  color: #bfbfbf;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: #181818;
  padding: 36px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 24px;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #bfbfbf;
}

.social-cta {
  margin-top: 100px;
  text-align: center;
}

.social-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.social-cta .btn-secondary {
  border: 1px solid #fff;
  padding: 14px 32px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
}

.clients {
  padding: 100px 0;
  background: #181818;
  overflow: hidden;
}

.clients h2 {
  margin-bottom: 40px;
}

.clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.clients-track {
  display: flex;
  width: max-content;
  animation: scrollClients 30s linear infinite;
}

.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

.client-logo {
  min-width: 200px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-height: 60px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.client-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.differentials {
  padding: 120px 0;
  background: #181818;
  color: #fff;
}

.differentials-header {
  max-width: 720px;
  margin-bottom: 80px;
}

.differentials-header h2 {
  font-size: 2.6rem;
  margin: 20px 0;
}

.differentials-header p {
  font-size: 1.05rem;
  color: #cfcfcf;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.differential-card {
  background: #181818;
  padding: 36px 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.differential-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.differential-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.differential-card p {
  font-size: 0.95rem;
  color: #bfbfbf;
  line-height: 1.6;
}

.differentials-cta {
  margin-top: 100px;
  text-align: center;
}

.differentials-cta p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.differentials-cta .btn-primary {
  padding: 16px 36px;
  border-radius: 40px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.final-cta {
  padding: 96px 0;
  background: linear-gradient(180deg, #0b0b0b, #000);
  color: #fff;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-text h2 {
  font-size: 2.8rem;
  margin: 20px 0;
}

.cta-text p {
  font-size: 1.05rem;
  color: #cfcfcf;
  margin-bottom: 30px;
}

.cta-benefits {
  list-style: none;
  padding: 0;
}

.cta-benefits li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #e0e0e0;
}

.cta-form form {
  width: 100%;
}

.cta-form {
  background: #141414;
  padding: 48px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-group {
  margin-bottom: 20px;
  margin-right: 25px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 6px;
  color: #bfbfbf;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: #0f0f0f;
  color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #777;
}

.cta-form .btn-primary {
  width: 100%;
  padding: 16px;
  border-radius: 40px;
  background: var(--color-primary);
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.form-note {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  margin-top: 14px;
}

#form-feedback {
  margin-top: 12px;
  font-size: 14px;
}

#form-feedback.sucesso {
  color: #1db954;
}

#form-feedback.erro {
  color: #ff4d4f;
}

.footer {
  background: #000;
  color: #fff;
  padding: 100px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #bfbfbf;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bfbfbf;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p {
  font-size: 0.9rem;
  color: #bfbfbf;
  margin-bottom: 10px;
}

.social-icons a {
  display: block;
  font-size: 0.9rem;
  color: #bfbfbf;
  text-decoration: none;
  margin-bottom: 10px;
}

.social-icons a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  font-size: 0.8rem;
  color: #888;
}

.number-wpp {
  text-decoration: none;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7200ff, #ff6b00);
  color: #fff;
  font-size: 20px;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

.cases {
  padding: 120px 20px;
  background: #181818;
}

.cases h2 {
  font-size: 36px;
  margin-bottom: 8px;
  color: #fff;
}

.section-description {
  color: #aaa;
  max-width: 520px;
  margin-bottom: 48px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.case-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  text-decoration: none;
  display: block;
  height: 100%;
}

.case-image img {
  width: 100%;
  height: auto;
  /* max-height: 280px; */
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.case-overlay h3 {
  color: #fff;
  margin-bottom: 4px;
}

.case-overlay span {
  color: #ccc;
  font-size: 14px;
}

.case-cta {
  margin-top: 12px;
  color: #ff6b00;
  font-weight: 600;
}

.case-card:hover .case-overlay {
  opacity: 1;
}

.case-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .methodology-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-numbers {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .cta-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-text {
    text-align: center;
  }

  .cta-benefits {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #181818;
    transition: right 0.3s ease;
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 24px;
    padding: 40px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-visual {
    display: none;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    margin-top: 40px;
    height: 360px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .floating-card {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 12px auto;
    animation: none;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 150px;
    max-width: 140px;
  }

  .cases-grid {
    grid-template-columns: 1fr; /* 1 coluna no mobile */
    gap: 16px;
  }

  .case-card {
    min-height: 200px; /* altura mínima para exibir bem a imagem */
  }

  .case-image img {
    max-height: 250px;
  }

  .case-overlay {
    padding: 16px; /* menos padding no mobile */
  }

  .case-overlay h3 {
    font-size: 18px;
  }

  .case-overlay span {
    font-size: 12px;
  }

  .case-cta {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .methodology-steps {
    grid-template-columns: 1fr;
  }

  .methodology-header h2 {
    font-size: 2.2rem;
    color: #fff;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 2.2rem;
  }

  .services-cta {
    padding: 40px 24px;
  }

  .services-cta h3 {
    font-size: 1.6rem;
  }

  .social-header h2 {
    font-size: 2.2rem;
  }

  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .differentials-header h2 {
    font-size: 2.2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
