:root {
  --rosé: #c9a6a6;
  --mauve: #9e8b9e;
  --mauve-dark: #6e5f7a;
  --blush: #e8d5d5;
  --blush-light: #f2e8e8;
  --stone: #b8a89a;
  --stone-dark: #8c7b72;
  --bg: #f5eeeb;
  --bg-card: #ffffff;
  --text-dark: #2c2426;
  --text-mid: #5a4a4e;
  --text-soft: #8a7070;
  --mocha: #6b4f45;
  --warm-white: #faf6f4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 238, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 166, 166, 0.2);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--rosé);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--rosé);
}

.nav-cta {
  background: var(--mocha);
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
}

.nav-cta:hover {
  background: var(--stone-dark);
  color: #fff !important;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -10%;
  width: 65%;
  height: 85%;
  background: var(--blush);
  border-radius: 40% 0 0 60%;
  opacity: 0.5;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 5%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--rosé);
  opacity: 0.15;
}

.hero-text {
  position: relative;
  z-index: 1;
  animation: fadeUp 1s ease forwards;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rosé);
  margin-bottom: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--rosé);
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

h1 em {
  font-style: italic;
  color: var(--mauve);
  font-weight: 300;
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--stone);
  margin: 1.5rem 0;
  max-width: 420px;
  line-height: 1.5;
}

.hero-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 400px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--mocha);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--text-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--rosé);
  color: var(--text-mid);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--blush);
  border-color: var(--mauve);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease forwards;
}

.hero-portrait {
  width: 420px;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(44, 36, 38, 0.12);
}

.hero-portrait-placeholder {
  width: 420px;
  height: 520px;
  background: linear-gradient(145deg, var(--blush) 0%, var(--rosé) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 60px rgba(44, 36, 38, 0.12);
  position: relative;
  overflow: hidden;
}

.portrait-circles {
  position: absolute;
  bottom: -30px;
  right: -30px;
  display: flex;
  gap: -10px;
}

.circle-deco {
  border-radius: 50%;
  opacity: 0.6;
}

.floating-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -1.5rem;
  background: var(--warm-white);
  border: 1px solid rgba(201, 166, 166, 0.3);
  padding: 1rem 1.3rem;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(44, 36, 38, 0.1);
  animation: float 3s ease-in-out infinite;
}

.floating-badge .badge-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.2rem;
  font-weight: 400;
}

.floating-badge .badge-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
}

/* SECTION COMMONS */
section {
  padding: 6rem 4rem;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rosé);
  margin-bottom: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--rosé);
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

h2 em {
  font-style: italic;
  color: var(--mauve);
}

/* PROPOSITO */
.proposito {
  background: var(--mauve-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.proposito::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.proposito::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.proposito .section-label {
  color: var(--blush);
}

.proposito .section-label::before {
  background: var(--blush);
}

.proposito h2 {
  color: #fff;
}

.proposito h2 em {
  color: var(--blush);
}

.proposito-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.proposito-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

.proposito-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--blush);
  padding-left: 2rem;
  border-left: 2px solid var(--rosé);
}

/* DESAFIO */
.desafio {
  background: var(--warm-white);
}

.desafio-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.desafio-intro {
  position: sticky;
  top: 8rem;
}

.desafio-intro p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-top: 1rem;
}

.desafio-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.desafio-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 166, 166, 0.25);
  padding: 1.8rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.desafio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--rosé);
  transition: height 0.3s ease;
}

.desafio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 36, 38, 0.08);
}

.desafio-card:hover::before {
  height: 100%;
}

.desafio-card-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.desafio-card h3 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}

.desafio-card p {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* METODOLOGIA */
.metodologia {
  background: var(--bg);
  position: relative;
}

.metodologia-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.metodologia-header p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: var(--rosé);
  opacity: 0.4;
  z-index: 0;
}

.step {
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--rosé);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mauve-dark);
  transition: all 0.3s;
}

.step:hover .step-num {
  background: var(--rosé);
  color: #fff;
  border-color: var(--rosé);
}

.step h3 {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.7rem;
}

.step p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* SERVIÇOS */
.servicos {
  background: var(--blush-light);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.servico-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 166, 166, 0.2);
  padding: 2.2rem;
  border-radius: 4px;
  transition: all 0.4s ease;
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(44, 36, 38, 0.1);
  border-color: var(--rosé);
}

.servico-icon {
  width: 50px;
  height: 50px;
  background: var(--blush);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servico-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--mauve-dark);
  fill: none;
  stroke-width: 1.5;
}

.servico-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.servico-card p {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* DIFERENCIAIS */
.diferenciais {
  background: var(--bg-card);
}

.dif-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.dif-intro p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-top: 1rem;
}

.dif-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dif-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 166, 166, 0.2);
}

.dif-item:last-child {
  border-bottom: none;
}

.dif-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--blush);
  line-height: 0.9;
}

.dif-item h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.dif-item p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* CWO */
.cwo {
  background: var(--stone);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cwo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(158, 139, 158, 0.3) 0%,
    transparent 60%
  );
}

.cwo-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cwo .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.cwo .section-label::before {
  background: rgba(255, 255, 255, 0.6);
}

.cwo h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.cwo h2 em {
  color: rgba(255, 255, 255, 0.7);
}

.cwo-desc {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  margin-top: 1rem;
}

.cwo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  transition: all 0.3s;
}

.pill:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.cwo-visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cwo-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.cwo-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.cwo-stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  line-height: 1.3;
}

/* RESULTADOS */
.resultados {
  background: var(--bg);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.result-card {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 2px solid var(--rosé);
  background: var(--bg-card);
  transition: all 0.3s;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(44, 36, 38, 0.07);
}

.result-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.result-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* CONTATO */
.contato {
  background: var(--text-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contato::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201, 166, 166, 0.05);
}

.contato-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.contato .section-label {
  color: var(--rosé);
}

.contato .section-label::before {
  background: var(--rosé);
}

.contato h2 {
  color: #fff;
}

.contato h2 em {
  color: var(--rosé);
}

.contato-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-weight: 300;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: all 0.3s;
  text-decoration: none;
  color: #fff;
}

.contact-item:hover {
  background: rgba(201, 166, 166, 0.1);
  border-color: rgba(201, 166, 166, 0.3);
  transform: translateX(6px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 166, 166, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--rosé);
  fill: none;
  stroke-width: 1.5;
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  margin-bottom: 0.15rem;
}

.contact-value {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* FOOTER */
footer {
  background: var(--text-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-logo span {
  color: var(--rosé);
}

footer p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

/* DECO CIRCLES (matching PDF) */
.deco-circles {
  display: flex;
  gap: -8px;
  position: absolute;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Scroll reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* SVG BRAIN DECORATION */
.brain-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8%;
  opacity: 0.07;
  width: 300px;
}

/* NR TAG */
.nr-tag {
  display: inline-block;
  background: var(--rosé);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  margin-top: 1rem;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.2s;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

/* HAMBURGER mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all 0.3s;
}

@media (max-width: 900px) {
  nav {
    padding: 1.2rem 2rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 4rem 2rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 6rem 2rem 4rem;
    text-align: center;
  }

  .hero::before {
    display: none;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-subtitle,
  .hero-desc {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    margin-top: 3rem;
  }

  .hero-portrait-placeholder {
    width: 100%;
    max-width: 340px;
    height: 400px;
  }

  .floating-badge {
    left: 0;
    bottom: 1rem;
  }

  .proposito-grid,
  .desafio-grid,
  .dif-grid,
  .cwo-inner,
  .contato-inner,
  .metodologia-header {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .desafio-items {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps::before {
    display: none;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .result-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
  }
}
