/* === CHECKPOINT: BASE === */
:root {
  --primary: #FFA500;
  --primary-light: #ffb347;
  --primary-muted: rgba(255, 165, 0, 0.12);
  --secondary: #FF2E2E;
  --accent: #FFD700;
  --dark: #0f0f0f;
  --dark-alt: #121212;
  --surface: #151515;
  --surface-alt: #1b1b1b;
  --text: #ffffff;
  --text-body: #dcdcdc;
  --text-muted: #bdbdbd;
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-orange: rgba(255, 165, 0, 0.2);
  --transition-fast: 0.22s ease-out;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-card: 14px;
  --radius-md: 16px;
  --radius-xl: 20px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.55);
  --shadow-orange: 0 8px 24px rgba(255, 165, 0, 0.22);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  background-color: var(--dark);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
}

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

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0.6rem 1rem;
  background: #111;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius-xs);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
  z-index: 2000;
}

.skip-link:focus {
  transform: translateY(0);
}

/* === CHECKPOINT: HEADER === */
.header-minimal {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to bottom, #111 0%, #0f0f0f 100%);
  color: white;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 165, 0, 0.07);
  padding: 0.7rem 0;
  transition: border-bottom-color 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
}

.header-minimal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #FFA500, #FF2E2E);
  z-index: 1;
}

.header-minimal.header-scrolled {
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
  border-bottom-color: rgba(255, 165, 0, 0.14);
}

.header-minimal .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.main-content {
  padding-top: 76px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(to right, #FFA500, #FF2E2E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
  line-height: 1.2;
}

.tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1.3;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 165, 0, 0.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.nav-toggle__line {
  width: 22px;
  height: 2px;
  background: linear-gradient(to right, #FFA500, #FF2E2E);
  border-radius: var(--radius-pill);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.nav-toggle.is-active .nav-toggle__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-minimal {
  display: block;
}

.nav-minimal ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-minimal .nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  position: relative;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding-block: 0.15rem;
  transition: color 0.22s ease-out, transform 0.22s ease-out;
}

.nav-minimal .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #FFA500, #FF2E2E);
  border-radius: var(--radius-pill);
  transform-origin: left;
  transition: width 0.24s ease-out;
}

.nav-minimal .nav-link:hover::after,
.nav-minimal .nav-link.active::after {
  width: 100%;
}

.nav-minimal .nav-link:hover,
.nav-minimal .nav-link.active {
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-minimal .nav-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.nav-cta-item {
  display: flex;
  align-items: center;
  margin-left: 0.75rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.btn.nav-cta {
  padding: 0.62rem 1.35rem;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
  gap: 0.45rem;
}

/* Elements that only exist in the mobile drawer — hidden on desktop */
.nav-drawer-header {
  display: none;
}

.nav-overlay {
  display: none;
}

/* === CHECKPOINT: SEÇÕES === */
.section-minimal {
  padding: 5rem 1.25rem;
  background-color: var(--dark);
  color: var(--text);
}

.section--alt {
  background: linear-gradient(180deg, #101010 0%, #0c0c0c 100%);
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 640px;
  margin: -1rem auto 2.5rem;
  color: var(--text-muted);
  text-align: center;
}

/* === CHECKPOINT: HERO === */
.hero {
  padding: 1.5rem 0;
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  display: grid;
  place-content: center;
  background: radial-gradient(circle at top, rgba(255, 165, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #0f0f0f 0%, #0b0b0b 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.hero-content h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.hero-content p {
  font-size: 1.05rem;
  color: #e5e5e5;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: #ffb156;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.75rem 0 1rem;
}

.hero-tags span {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 165, 0, 0.3);
  font-size: 0.85rem;
  color: #f6d39c;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.hero-highlights div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-card);
  padding: 0.75rem;
  text-align: center;
}

.hero-highlights strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary);
}

.hero-card {
  background: linear-gradient(160deg, #1a1a1a 0%, #121212 100%);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(255, 165, 0, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 1rem;
  text-align: center;
}

.hero-card img {
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: clamp(200px, 38vh, 340px);
}

.hero-card-info .hero-instagram {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--primary);
}

.hero-card-info p {
  color: #d8d8d8;
  font-size: 0.98rem;
}

/* === CHECKPOINT: BOTÕES === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  background: transparent;
  color: var(--text);
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition:
    transform 0.22s cubic-bezier(.2,.9,.2,1),
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    filter 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #FFA500, #FF2E2E);
  color: #fff;
  border: none;
  box-shadow: 0 8px 22px rgba(255, 165, 0, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 14px 32px rgba(255, 165, 0, 0.38);
}

.btn-primary:active {
  transform: translateY(-1px);
  filter: brightness(0.97);
}

.btn-outline {
  position: relative;
  isolation: isolate;
  color: var(--primary);
  border-color: color-mix(in srgb, var(--primary) 70%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    120% 140% at 20% 10%,
    rgba(255, 215, 0, 0.14),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: -1;
}

.btn-outline:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  border-color: color-mix(in srgb, var(--primary) 92%, transparent);
  box-shadow:
    0 14px 32px rgba(255, 165, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-outline:hover::before {
  opacity: 1;
}

.btn-outline:active {
  transform: translateY(-1px);
  filter: brightness(0.98);
  box-shadow:
    0 10px 22px rgba(255, 165, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--accent) 55%, transparent),
    0 12px 26px rgba(0, 0, 0, 0.25);
}

.btn-whatsapp {
  --w1: #0b5a48;
  --w2: #1fe27a;
  --border: rgba(255, 255, 255, 0.18);
  --border-strong: rgba(255, 255, 255, 0.34);
  --glow: rgba(31, 226, 122, 0.45);
  position: relative;
  isolation: isolate;
  border: 0;
  border-radius: var(--radius-md);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.2px;
  background:
    radial-gradient(120% 140% at 20% 10%, rgba(255,255,255,0.18), transparent 55%),
    linear-gradient(135deg, var(--w1), var(--w2));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 0 14px rgba(255,255,255,0.06),
    0 10px 25px rgba(31, 226, 122, 0.22);
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  transition:
    transform 0.22s cubic-bezier(.2,.9,.2,1),
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.btn-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, var(--border-strong), var(--border));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.btn-whatsapp::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: radial-gradient(60% 70% at 50% 50%, var(--glow), transparent 65%);
  opacity: 0;
  filter: blur(16px);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.25s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.06) saturate(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 0 18px rgba(255,255,255,0.08),
    0 14px 34px rgba(31, 226, 122, 0.32);
}

.btn-whatsapp:hover::after {
  opacity: 1;
}

.btn-whatsapp:active {
  transform: translateY(-1px) scale(0.99);
  filter: brightness(0.98);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 0 10px rgba(255,255,255,0.05),
    0 10px 22px rgba(31, 226, 122, 0.22);
}

.btn-whatsapp:focus-visible {
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 0 14px rgba(255,255,255,0.06),
    0 10px 25px rgba(31, 226, 122, 0.22),
    0 0 0 4px rgba(31, 226, 122, 0.32);
}

/* === CHECKPOINT: SOBRE === */
.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.about-profile {
  display: grid;
  gap: 1.5rem;
}

.about-profile img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-profile-card {
  background: linear-gradient(140deg, rgba(27, 27, 27, 0.95), rgba(16, 16, 16, 0.95));
  border: 1px solid rgba(255, 165, 0, 0.15);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.about-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  font-weight: 600;
}

.about-profile-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  margin: 0;
}

.about-profile-card p {
  color: #d6d6d6;
  line-height: 1.7;
}

.about-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.about-profile-tags span {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 165, 0, 0.12);
  color: #ffd39a;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 165, 0, 0.2);
}

.about-details {
  display: grid;
  gap: 2rem;
}

.about-intro h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.about-intro p {
  color: #dcdcdc;
  max-width: 620px;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.about-value-card {
  background: #141414;
  border-radius: var(--radius-md);
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-card h4 {
  font-family: 'Poppins', sans-serif;
  color: #ffb347;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.about-value-card p {
  color: #d1d1d1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(255, 165, 0, 0.12);
}

/* === CHECKPOINT: CONSULTORIA === */
.consultoria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.consultoria-info {
  background: linear-gradient(145deg, #1a1a1a, #121212);
  padding: 2rem 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 165, 0, 0.3);
  color: #eaeaea;
  line-height: 1.8;
  font-size: 1.05rem;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: fadeInUp 0.8s ease-out both;
}

.consultoria-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 165, 0, 0.15);
}

.consultoria-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.consultoria-info p {
  margin-bottom: 1rem;
}

.consultoria-info strong {
  color: #ffae42;
  font-weight: 600;
}

.consultoria-info .btn {
  margin-top: 1rem;
}

.consultoria-steps {
  margin-top: 2.5rem;
  text-align: center;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  display: grid;
  gap: 0.75rem;
}

.steps-list li {
  background: #151515;
  border: 1px solid rgba(255, 165, 0, 0.2);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  color: #e4e4e4;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.skills-container {
  margin-top: 2rem;
  text-align: center;
}

.skills-title {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
  animation: fadeInUp 0.6s ease-out both;
}

.skills-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.skills-list li {
  background: linear-gradient(145deg, #1f1f1f, #292929);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid #ff5c57;
  box-shadow: inset 0 0 4px rgba(255, 165, 0, 0.3);
  transition: all 0.5s ease;
  cursor: default;
  user-select: none;
  animation: fadeInSkill 0.8s ease-in-out forwards;
}

.skills-list li:hover {
  background: linear-gradient(to right, #ff5c57, #ffa500);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 8px rgba(255, 92, 87, 0.4);
  transform: scale(1.05);
}

/* === CHECKPOINT: SERVIÇOS === */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service-item {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: var(--radius-card);
  padding: 2rem;
  width: 300px;
  max-width: 100%;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(255, 165, 0, 0.4);
}

.service-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #FF5C57;
  margin-bottom: 1rem;
}

.service-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
  text-align: left;
  color: #d7d7d7;
}

.service-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFA500, #FF2E2E);
  box-shadow: 0 0 6px rgba(255, 165, 0, 0.4);
}

/* === CHECKPOINT: PLANOS === */

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

/* Wrapper com gradiente (igual .card) */
.plan-card {
  --background: linear-gradient(to left, #f7ba2b 0%, #ea5358 100%);

  position: relative;
  z-index: 1;

  /* MAIS RESPIRO */
  padding: 2.4rem;                 /* era 2rem */
  border-radius: 1rem;
  overflow: visible;

  background: var(--background);
  transition: transform 0.5s ease;

  /* ORGANIZAÇÃO INTERNA */
  display: flex;
  flex-direction: column;
  gap: 1.1rem;                     /* espaçamento entre blocos */
}

/* Forro interno escuro (simula .card-info SEM mexer no HTML) */
.plan-card::before {
  content: "";
  position: absolute;
  inset: 6px;                      /* era 5px (borda mais suave) */
  border-radius: calc(1rem - 6px);
  background: #181818;
  z-index: 0;
}

/* Glow atrás (igual exemplo) */
.plan-card::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  z-index: -1;

  width: 100%;
  height: 100%;

  transform: scale(0.8);
  filter: blur(25px);
  background: var(--background);
  transition: opacity 0.5s;
}

/* Garante que o conteúdo fique acima do ::before */
.plan-card > * {
  position: relative;
  z-index: 1;
}

/* Hover igual */
.plan-card:hover {
  transform: translateY(-6px);
}

.plan-card:hover::after {
  opacity: 0;
}

/* Tipografia / cores (mais ajeitado) */
.plan-card h3 {
  font-size: 1.45rem;              /* levemente menor pra caber melhor */
  margin: 0;
  line-height: 1.2;
  color: #fff;
  transition: color 0.5s;
}

.plan-card p {
  color: #d2d2d2;                  /* um tico mais legível */
  font-size: 0.98rem;              /* levemente maior */
  line-height: 1.65;               /* mais respiro */
  margin: 0;
  max-width: 42ch;                 /* evita linhas longas demais */
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.plan-card ul li {
  display: grid;
  grid-template-columns: 12px 1fr; /* bolinha | texto */
  align-items: start;
  gap: 0.6rem;
  color: #d6d6d6;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Remove o absolute */
.plan-card ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa500, #ff2e2e);
  margin-top: 0.55rem;
}


/* Hover mudando a cor */
.plan-card:hover h3,
.plan-card.featured h3 {
  color: #f7ba2b;
}

/* Featured: levanta um pouco, igual card destacado */
.plan-card.featured {
  transform: translateY(-4px);
}

/* Badge */
.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffa500;
  color: #111;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}

/* BOTÃO: fica sempre no final do card e com respiro */
.plan-card .btn {
  margin-top: auto;                /* empurra pro final */
  padding: 0.9rem 1.6rem;          /* mais confortável */
  align-self: center;              /* centraliza no card */
}

/* Evita o badge esmagar o título no card destacado */
.plan-card.featured h3 {
  padding-right: 5rem;
}

/* Mobile: botão full e padding menor */
@media (max-width: 520px) {
  .plan-card {
    padding: 2rem;
  }

  .plan-card p {
    max-width: 100%;
  }

  .plan-card .btn {
    align-self: stretch;
    text-align: center;
  }
}

.what-i-do-animated {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 1rem;
  background-color: #121212;
}

/* === CHECKPOINT: DEPOIMENTOS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #141414;
  border-radius: var(--radius-md);
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  color: #dcdcdc;
  font-style: italic;
}

.testimonial-card span {
  display: block;
  margin-top: 1rem;
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
}

/* === CHECKPOINT: FAQ === */
.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: #141414;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 1.2rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-right: 0.25rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '›';
  font-size: 1.5rem;
  color: var(--primary);
  display: inline-block;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] > summary::after {
  transform: rotate(90deg);
}

.faq-item p {
  color: #d2d2d2;
  margin-top: 0.8rem;
  line-height: 1.65;
}

/* === CHECKPOINT: SECTION CTA === */
.section-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: rgba(255, 165, 0, 0.05);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  text-align: center;
}

.section-cta-block p {
  color: var(--text-body);
  font-size: 1.05rem;
  margin: 0;
}

/* === CHECKPOINT: CONTATO === */
#contato.section-minimal {
  background: #111;
  padding: 90px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contato.section-minimal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: linear-gradient(to right, #f7ba2b, #ea5358);
  border-radius: 4px;
  opacity: 0.9;
}

#contato .section-subtitle {
  margin: -1rem auto 3rem;
  font-size: 1.05rem;
  max-width: 600px;
  color: #bbb;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-highlight {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.contact-highlight h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.contact-highlight p {
  color: #cfcfcf;
  font-size: 0.95rem;
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.contact-card {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin: 0 auto;
  gap: 1rem;
  background: #111;
  border-radius: var(--radius-card);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.socialContainer {
  width: 60px;
  height: 60px;
  background-color: #2c2c2c;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    background-color 0.22s ease-out;
}

.socialContainer::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: scale(0.2);
  opacity: 0;
  z-index: -1;
  transition:
    transform 0.26s ease-out,
    opacity 0.26s ease-out;
}

.containerOne::before { background-color: #0072b1; }
.containerTwo::before { background-color: #d62976; }
.containerThree::before { background-color: #128C7E; }
.containerFour::before { background-color: #f44336; }

.socialContainer:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

.socialContainer:hover::before {
  transform: scale(1);
  opacity: 1;
}

.socialContainer:active {
  transform: translateY(-1px) scale(0.96);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.socialSvg {
  font-size: 20px;
  color: #fff;
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.22s ease-out,
    opacity 0.22s ease-out;
}

.socialContainer:hover .socialSvg {
  transform: translateY(-2px);
}

.socialContainer:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.4);
}

/* === CHECKPOINT: FOOTER === */
.footer-minimal {
  background:
    radial-gradient(circle at top right, rgba(255, 165, 0, 0.12), transparent 38%),
    #0f1116;
  color: #c8ced8;
  padding: 56px 20px 20px;
  font-family: 'Montserrat', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(260px, 1fr) minmax(260px, 1fr);
  gap: 2.25rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  align-items: start;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-logo img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--primary);
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.24);
}

.footer-brand-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #f8f9fb;
}

.footer-brand-role {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: #98a3b3;
}

.footer-brand-description {
  margin: 0;
  max-width: 34ch;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #b4bdca;
}

.footer-cta-link {
  align-self: flex-start;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 1.4rem;
}

.footer-links-column h4,
.footer-contact-panel h4 {
  margin: 0 0 0.85rem;
  font-size: 0.96rem;
  color: #f8f9fb;
  letter-spacing: 0.03em;
}

.footer-links-column a {
  display: block;
  width: fit-content;
  margin-bottom: 0.5rem;
  color: #b4bdca;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links-column a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-contact-panel p {
  margin: 0 0 1rem;
  max-width: 34ch;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #9ea8b8;
}

.footer-contact-card {
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  justify-content: flex-start;
}

.footer-copyright {
  text-align: center;
  font-size: 0.8rem;
  color: #7e8897;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* === CHECKPOINT: ANIMAÇÕES === */
.animation-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animation-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#ig-typing {
  display: inline-block;
  white-space: nowrap;
}

#ig-typing.typing,
#ig-typing.done {
  border-right: 2px solid var(--primary);
  padding-right: 4px;
}

#ig-typing.typing {
  animation: blink-cursor 0.7s step-end infinite;
}

#ig-typing.done {
  animation: blink-cursor 1.2s step-end infinite;
}

@keyframes blink-cursor {
  0%, 100% { border-right-color: var(--primary); }
  50%       { border-right-color: transparent; }
}

@keyframes fadeInSkill {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === CHECKPOINT: RESPONSIVO === */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .btn:hover,
  .btn:active { transform: none; }
}

@media (max-width: 768px) {
  body {
    font-size: 0.98rem;
    -webkit-text-size-adjust: 100%;
  }

  .main-content {
    padding-top: 72px;
  }

  .header-minimal {
    padding: 0.55rem 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
  }

  html {
    scroll-padding-top: 72px;
  }

  /* ---- Overlay ---- */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* ---- Drawer header (close button + label) ---- */
  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
  }

  .nav-drawer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

  .nav-close:hover {
    background: rgba(255, 165, 0, 0.12);
    border-color: rgba(255, 165, 0, 0.4);
    color: #FFA500;
  }

  .nav-close:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }

  /* ---- Drawer nav ---- */
  .nav-minimal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 82vw);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    background: #111111;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.35s;
    margin-top: 0;
    padding: 0;
  }

  .nav-minimal.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0s;
  }

  .nav-minimal ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0;
    flex: 1;
  }

  .nav-minimal li {
    width: 100%;
  }

  .nav-minimal .nav-link {
    width: 100%;
    padding: 0.95rem 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.07em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
  }

  .nav-minimal .nav-link::after {
    display: none;
  }

  .nav-minimal .nav-link:hover,
  .nav-minimal .nav-link.active {
    background: rgba(255, 165, 0, 0.07);
    color: #FFA500;
    padding-left: 2rem;
    transform: none;
  }

  /* ---- CTA no drawer ---- */
  .nav-cta-item {
    width: 100%;
    margin: auto 0 0 0;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-left: none;
  }

  .btn.nav-cta {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-pill);
  }

  .header-minimal .container {
    flex-direction: row;
    align-items: center;
    padding: 0 1rem;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .logo-container {
    gap: 0.65rem;
  }

  .logo-img {
    height: 44px;
  }

  .logo {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .tagline {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }

  body.body--menu-open {
    overflow: hidden;
  }

  .section-minimal {
    padding: 60px 16px;
  }

  .section-title {
    font-size: 1.65rem;
    margin-bottom: 2.1rem;
    line-height: 1.25;
  }

  .hero {
    padding: 1.25rem 0;
    min-height: calc(100vh - 72px);
    min-height: calc(100svh - 72px);
  }

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

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-profile {
    justify-items: center;
  }

  .about-profile-card {
    text-align: left;
  }

  .about-intro h3 {
    font-size: 1.5rem;
  }

  .consultoria-info {
    padding: 1.5rem 1.25rem;
    font-size: 1rem;
    line-height: 1.65;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  }

  .consultoria-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
  }

  .skills-container {
    margin-top: 1.5rem;
  }

  .skills-title {
    font-size: 1.05rem;
  }

  .skills-list {
    gap: 0.55rem 0.7rem;
  }

  .skills-list li {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    box-shadow: inset 0 0 3px rgba(255, 165, 0, 0.25);
  }

  .services-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .service-item {
    width: 90%;
    max-width: 360px;
    padding: 1.35rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  }

  .service-item h3 {
    font-size: 1.25rem;
  }

  .service-item p {
    font-size: 0.95rem;
  }

  .what-i-do-animated {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 1rem 3rem;
  }

  .card {
    width: 100%;
    max-width: 360px;
    min-height: auto;
    padding: 3px;
    border-radius: 0.9rem;
  }

  .card::after {
    top: 18px;
    transform: scale(0.85);
    filter: blur(18px);
  }

  .card-info {
    padding: 1.6rem 1.3rem;
    gap: 0.75rem;
  }

  .card i {
    font-size: 2.1rem;
  }

  .card .title {
    font-size: 1.25rem;
  }

  .card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  #contato.section-minimal {
    padding: 70px 16px;
  }

  #contato .section-subtitle {
    font-size: 0.95rem;
    max-width: 90%;
  }

  .contact-highlight {
    text-align: center;
  }

  .contact-card {
    padding: 18px;
    gap: 0.65rem;
  }

  .socialContainer {
    width: 56px;
    height: 56px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.45);
  }

  .footer-minimal {
    padding: 32px 16px 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.4rem;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo span {
    font-size: 0.95rem;
  }

  .footer-links h4 {
    font-size: 0.95rem;
  }

  .footer-links a {
    font-size: 0.88rem;
  }

.footer-contact-card {
    justify-content: center;
  }
}

/* === MOBILE REFINEMENT PATCH === */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.container,
.section-minimal,
.hero,
.footer-minimal {
  width: 100%;
}

@media (max-width: 480px) {
  .container {
    padding-inline: 1rem;
  }

  .main-content {
    padding-top: 66px;
  }

  html {
    scroll-padding-top: 66px;
  }

  .header-minimal {
    z-index: 1400;
  }

  .header-minimal .container {
    gap: 0.5rem;
  }

  .logo-img {
    height: 40px;
  }

  .logo {
    font-size: 1.05rem;
  }

  .tagline {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
  }

  .nav-minimal {
    z-index: 1500;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.5rem 1rem 1rem;
  }

  .nav-minimal ul {
    gap: 0.35rem;
  }

  .nav-minimal .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.6rem 0;
  }

  .section-minimal {
    padding: 52px 0;
  }

  .section-title {
    font-size: 1.45rem;
    margin-bottom: 1.35rem;
  }

  .section-subtitle {
    margin: -0.2rem auto 1.75rem;
    font-size: 0.96rem;
    line-height: 1.72;
    max-width: 62ch;
  }

  .hero {
    padding: 1rem 0;
    min-height: calc(100vh - 66px);
    min-height: calc(100svh - 66px);
  }

  .hero-grid,
  .about-layout,
  .consultoria-grid,
  .plans-grid,
  .testimonials-grid,
  .contact-grid,
  .footer-content,
  .footer-links-group {
    grid-template-columns: 1fr;
  }

  .hero-content h2 {
    font-size: 1.68rem;
    line-height: 1.24;
  }

  .hero-content p,
  .about-intro p,
  .consultoria-info p,
  .plan-card p,
  .faq-item p,
  .contact-highlight p,
  .testimonial-card {
    line-height: 1.72;
  }

  .hero-tags,
  .about-profile-tags,
  .skills-list {
    gap: 0.5rem;
  }

  .hero-card,
  .about-profile-card,
  .consultoria-info,
  .service-item,
  .plan-card,
  .testimonial-card,
  .faq-item,
  .contact-highlight {
    padding: 1.25rem;
  }

  .service-item,
  .contact-card {
    width: 100%;
  }

  .service-list,
  .steps-list {
    gap: 0.5rem;
  }

  .service-list li,
  .steps-list li,
  .plan-card ul li {
    line-height: 1.62;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .hero-actions .btn,
  .contact-actions .btn,
  .plan-card .btn,
  .footer-cta-link {
    width: 100%;
    min-height: 44px;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }


  .footer-content {
    gap: 1.25rem;
    text-align: center;
  }

  .footer-brand-description,
  .footer-contact-panel p {
    max-width: 100%;
  }

  .footer-cta-link,
  .footer-links-column a,
  .footer-contact-card {
    justify-self: center;
    width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .container {
    padding-inline: 1.25rem;
  }

  .hero-grid,
  .about-layout,
  .consultoria-grid,
  .plans-grid,
  .contact-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .hero-actions .btn,
  .contact-actions .btn,
  .plan-card .btn {
    width: 100%;
    min-height: 44px;
  }
}

@media (min-width: 768px) {
  .nav-minimal {
    z-index: 1200;
  }

  .section-minimal {
    padding-block: 72px;
  }
}

@media (min-width: 1024px) {
  .section-minimal {
    padding-block: 84px;
  }
}

/* Landscape mobile: esconde card da foto para priorizar conteúdo */
@media (orientation: landscape) and (max-height: 520px) {
  .hero-card {
    display: none;
  }

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

@media (hover: none) {
  .btn-outline:active::before,
  .btn-whatsapp:active::after,
  .socialContainer:active::before {
    opacity: 1;
  }

  .btn-outline:active,
  .btn-whatsapp:active,
  .about-value-card:active,
  .consultoria-info:active,
  .plan-card:active,
  .socialContainer:active,
  .skills-list li:active {
    transform: translateY(-1px);
  }
}

/* === CHECKPOINT: HERO BADGE === */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.9rem;
  background: rgba(31, 226, 122, 0.1);
  border: 1px solid rgba(31, 226, 122, 0.28);
  border-radius: var(--radius-pill);
  color: #1fe27a;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1fe27a;
  flex-shrink: 0;
  animation: blink 1.2s ease-in-out infinite;
}

/* === CHECKPOINT: ABOUT CREDENTIAL === */
.about-credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: #9ea8b8;
  font-style: normal;
  margin-top: -0.5rem;
}

.about-credential i {
  color: var(--primary);
  font-size: 0.85rem;
}

/* === CHECKPOINT: SPECIALTIES WITH ICONS === */
.skills-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.skills-list li i {
  font-size: 0.88rem;
  flex-shrink: 0;
  opacity: 0.85;
}

/* === CHECKPOINT: TESTIMONIALS IMPROVED === */
.testimonial-stars {
  color: #FFD700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFA500, #FF2E2E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author span {
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
}

/* === CHECKPOINT: STAGGERED ANIMATIONS === */
.stagger-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item:nth-child(1) { transition-delay: 0.05s; }
.stagger-item:nth-child(2) { transition-delay: 0.15s; }
.stagger-item:nth-child(3) { transition-delay: 0.25s; }
.stagger-item:nth-child(4) { transition-delay: 0.35s; }
.stagger-item:nth-child(5) { transition-delay: 0.45s; }
.stagger-item:nth-child(6) { transition-delay: 0.55s; }
.stagger-item:nth-child(7) { transition-delay: 0.65s; }
.stagger-item:nth-child(8) { transition-delay: 0.75s; }

/* === CHECKPOINT: FLOATING WHATSAPP === */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0b5a48, #1fe27a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(31, 226, 122, 0.4);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
  pointer-events: none;
  text-decoration: none;
}

.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 32px rgba(31, 226, 122, 0.55);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(31, 226, 122, 0.28);
  animation: pulse-wpp 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes pulse-wpp {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* === CHECKPOINT: COOKIE BANNER (LGPD) === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1c1c1c;
  border-top: 1px solid rgba(255, 165, 0, 0.18);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  z-index: 1300;
  font-size: 0.88rem;
  color: #c0c0c0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
}

.cookie-link {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-btn {
  padding: 0.5rem 1.4rem;
  background: linear-gradient(135deg, #FFA500, #FF2E2E);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.cookie-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* === CHECKPOINT: FOOTER LEGAL === */
.footer-legal {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: #5e6878;
}

.footer-legal-link {
  color: #6e7888;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* === RESPONSIVE ADDITIONS === */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .cookie-banner {
    padding: 0.9rem 1rem;
    gap: 0.75rem;
    text-align: center;
  }

  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stagger-item {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .whatsapp-float::before {
    animation: none;
  }

  .hero-badge::before {
    animation: none;
  }
}