@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@600;700;800;900&family=Nunito:wght@400;500;600;700&display=swap');

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

html {
  margin: 0;
  scroll-behavior: smooth;
}

:root {
  --brand: #f96800;
  --brand-dark: #d95500;
  --white: #ffffff;
  --dark-text: #1a0a00;
}

/* Navbar */
body {

  margin: 0;
}

.navbar-logo {
  height: 44px;
  width: auto;
  display: block;
}

.navbar {
  background-color: var(--brand) !important;
}

#mainNav {
  background-color: var(--brand) !important;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
  border: none !important;
  outline: none !important;
  top: 0 !important;
}

.navbar {
  margin-top: 0 !important;
  border-top: none !important;
}

#mainNav.scrolled {
  background-color: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-brand {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  color: white !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
}

.nav-link:hover {
  color: white !important;
}

.btn-nav-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: white;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
}

.btn-nav-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.btn-nav-solid {
  background: white;
  color: var(--brand);
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
}

.btn-nav-solid:hover {
  background: #fff3ec;
  color: var(--brand-dark);
}

/* Navbar scrolled — textos e botões no fundo claro */
#mainNav.scrolled .nav-link {
  color: #333c43 !important;
}

#mainNav.scrolled .nav-link:hover {
  color: var(--brand) !important;
}

#mainNav.scrolled .btn-nav-ghost {
  border-color: rgba(249, 104, 0, 0.4);
  color: var(--brand);
}

#mainNav.scrolled .btn-nav-ghost:hover {
  background: rgba(249, 104, 0, 0.06);
  color: var(--brand);
}

#mainNav.scrolled .btn-nav-solid {
  background: var(--brand);
  color: #ffffff;
}

#mainNav.scrolled .btn-nav-solid:hover {
  background: var(--brand-dark);
  color: #ffffff;
}

#mainNav.scrolled .navbar-toggler svg {
  stroke: #333c43;
}

/* Hero */
.hero-section {
  background: var(--brand);
  padding-top: 2rem;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-title .line-normal {
  display: block;
  color: #ffffff;
}

.hero-title .line-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2.5px #ffffff;
}

.hero-title .line-accent {
  display: block;
  color: #333c43;
}

.hero-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}

.cta-primary {
  background: white;
  color: var(--brand);
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  border-radius: 12px;
  padding: 0.8rem 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  color: var(--brand);
}

.cta-secondary {
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 1px;
  opacity: 0.85;
}

.cta-secondary:hover {
  opacity: 1;
  color: white;
}

.hero-content {
  padding-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.hero-bg-circle {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  top: -80px;
  right: -60px;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-dots {
  position: absolute;
  bottom: 80px;
  left: 3%;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.mockup-stack {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  padding-top: 2rem;
}

.mockup-monitor {
  width: 78%;
  max-width: 560px;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.3));
  border-radius: 14px;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.mockup-phone {
  width: 22%;
  max-width: 150px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  margin-right: -40px;
  margin-bottom: 10px;
  transform: rotate(-5deg);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
}

.mockup-phone:hover {
  transform: rotate(-2deg) translateY(-8px);
}

/* ── Seção clientes ── */
#clientes{
  scroll-margin-top: 70px;
}

.clients-section {
  background: #ffffff;
  padding: 2.5rem 0;
  overflow: hidden;
}

.clients-track-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  will-change: transform;
}

.clients-section:hover .clients-track {
  animation-play-state: paused;
}

.client-logo {
  flex-shrink: 0;
  min-width: calc(100vw / 7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}

.client-logo img {
  height: 100px;
  width: auto;
  filter: grayscale(100%) opacity(0.4);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

@media (max-width: 576px) {
  .client-logo {
    min-width: calc(100vw / 3);
  }

  .client-logo img {
    height: 56px;
  }
}

/* Navbar mobile */
.navbar-collapse {
  margin-top: 0.5rem;
}

.nav-actions-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

/* Mobile */
@media (max-width: 991px) {
  .hero-content {
    text-align: center;
    padding-bottom: 2rem;
  }

  .hero-eyebrow {
    margin: 0 auto;
  }

  .hero-ctas {
    justify-content: center !important;
  }

  .mockup-stack {
    padding-top: 1rem;
    justify-content: center;
  }

  .mockup-monitor {
    width: 72%;
  }

  .mockup-phone {
    width: 24%;
    margin-right: -30px;
    margin-bottom: 6px;
  }

  .after-hero-section {
    padding-top: 40px;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

/* ══ FEATURES SECTION ══ */
#beneficios{
  scroll-margin-top: 70px;
}

.features-section {
  background: #ffffff;
  padding: 6rem 0;
}

.section-tag {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(249, 104, 0, 0.08);
  border: 1px solid rgba(249, 104, 0, 0.2);
  border-radius: 100px;
  padding: 4px 14px;
}

.section-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-title .title-accent {
  color: var(--brand);
}

.section-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-top: 0.75rem;
}

/* grid principal: 3 colunas */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 480px 1fr;
  gap: 2rem;
  align-items: center;
}

/* colunas laterais */
.features-col--left,
.features-col--right {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* item individual */
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  transition: background 0.2s ease;
  cursor: default;
}

.feat-item:hover {
  background: rgba(249, 104, 0, 0.05);
}

.feat-item--right {
  flex-direction: row-reverse;
  text-align: right;
}

.feat-item strong {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a1a1a;
  line-height: 1.3;
}

.feat-item span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 1px;
}

.feat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(249, 104, 0, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  transition: background 0.2s, color 0.2s;
}

.feat-item:hover .feat-icon {
  background: var(--brand);
  color: #ffffff;
}

/* ══ MOCKUP CENTRAL — imagem real ══ */
.features-col--center {
  display: flex;
  justify-content: center;
  align-items: center;
}


.features-img {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  display: block;
  position: relative;
  z-index: 2;
}

.features-col--center {
  padding: 0 1rem;
}

/* SVG das linhas — posicionado sobre o grid inteiro */
.lines-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}

.features-grid {
  position: relative;
}

/* Linhas animadas tracejadas */
@keyframes dash-flow {
  to {
    stroke-dashoffset: -20;
  }
}

.feat-line {
  fill: none;
  stroke-width: 1.5;
  stroke-dasharray: 5 5;
  animation: dash-flow 2s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feat-line.visible {
  opacity: 1;
}

.feat-line--orange {
  stroke: #f96800;
}

.feat-line--gray {
  stroke: #d1d5db;
}

.feat-line:nth-child(odd) {
  animation-duration: 1.8s;
}

.feat-line:nth-child(even) {
  animation-duration: 2.4s;
}

.feat-line:nth-child(3n) {
  animation-duration: 2.8s;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: 1fr 380px 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-col--center {
    order: -1;
    margin-bottom: 1rem;
  }

  .features-col--left,
  .features-col--right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
  }

  .feat-item--right {
    flex-direction: row;
    text-align: left;
  }

  .lines-svg {
    display: none;
  }
}

@media (max-width: 576px) {
  .features-section {
    padding: 3.5rem 0;
  }

  .features-col--left,
  .features-col--right {
    grid-template-columns: 1fr;
  }
}

/* ══ SEÇÃO SALÃO ══ */
.salon-section {
  background: var(--brand);
  padding-top: 5rem;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

/* decorativos */
.salon-blob-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  top: -100px;
  left: -80px;
  pointer-events: none;
  z-index: 0;
}

.salon-blob-2 {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.06) 0%, transparent 70%);
  bottom: 60px;
  right: 5%;
  pointer-events: none;
  z-index: 0;
}

.salon-dots {
  position: absolute;
  top: 60px;
  right: 4%;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* conteúdo esquerda */
.salon-content {
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
}

.salon-tag {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 4px 14px;
}

.salon-outline {
  color: transparent;
  -webkit-text-stroke: 2.5px #ffffff;
}

.salon-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 400px;
}

/* lista de benefícios */
.salon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.salon-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.salon-list svg {
  flex-shrink: 0;
}

/* CTAs */
.salon-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.salon-btn-primary {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--brand);
  background: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 0.8rem 1.75rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.salon-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  color: var(--brand);
}

.salon-btn-secondary {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 1px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.salon-btn-secondary:hover {
  opacity: 1;
  color: #fff;
}

/* ══ MOCKUP saindo pelo bottom ══ */
.salon-mockup-col {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 0;
}

.salon-mockup {
  width: 100%;
  display: block;
  border-radius: 16px 16px 0 0;
  filter: drop-shadow(-8px 0 40px rgba(0, 0, 0, 0.2));
  margin-bottom: 0;
  position: relative;
  bottom: 0;
}

/* ══ SEÇÃO BRANCA APÓS ══ */
.after-salon-section {
  background: #ffffff;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.after-salon-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(249, 104, 0, 0.05), transparent);
  pointer-events: none;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 991px) {
  .salon-content {
    text-align: center;
    padding-bottom: 2.5rem;
  }

  .salon-sub {
    margin: 0 auto;
  }

  .salon-list {
    align-items: center;
  }

  .salon-ctas {
    justify-content: center;
  }

  .salon-mockup-col {
    justify-content: center;
  }

  .salon-mockup {
    border-radius: 12px 12px 0 0;
  }

  .after-salon-section {
    padding-top: 3rem;
  }
}

@media (max-width: 576px) {
  .salon-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .salon-mockup {
    width: 95%;
  }
}

/* ══ INTEGRAÇÕES ══ */
.integrations-section {
  background: #ffffff;
  padding: 5rem 0 4rem;
  /* border-top: 1px solid #f0f0f0;*/
}

.integ-card {
  background: #fafafa;
  border: 1px solid #f0eeea;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.integ-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  border-color: rgba(249, 104, 0, 0.2);
}

.integ-card--api {
  border: 1.5px dashed rgba(249, 104, 0, 0.3);
  background: rgba(249, 104, 0, 0.02);
}

.integ-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.integ-name {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #1a1a1a;
  margin: 0 0 0.3rem;
}

.integ-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1.4;
  margin: 0;
}

.integ-footer {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  color: #9ca3af;
}

@media (max-width: 576px) {
  .integrations-section {
    padding: 3.5rem 0;
  }

  .integ-card {
    padding: 1.25rem 0.75rem;
  }
}

/* ══ SUPORTE ══ */
.support-section {
  background: #1a1a1a;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.support-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 104, 0, 0.08) 0%, transparent 65%);
  top: -150px;
  left: -100px;
  pointer-events: none;
}

.support-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 104, 0, 0.06) 0%, transparent 65%);
  bottom: -100px;
  right: -80px;
  pointer-events: none;
}

.support-tag {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(249, 104, 0, 0.12);
  border: 1px solid rgba(249, 104, 0, 0.25);
  border-radius: 100px;
  padding: 4px 14px;
}

.support-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 5rem);
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.support-accent {
  color: var(--brand);
}

.support-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

.support-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.support-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
}

.support-stat-number {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.support-stat-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.35rem;
}

.support-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
}

.support-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #1a1a1a;
  background: var(--brand);
  border-radius: 12px;
  padding: 0.9rem 2rem;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(249, 104, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.support-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249, 104, 0, 0.45);
  background: var(--brand-dark);
  color: #fff;
}

@media (max-width: 768px) {
  .support-section {
    padding: 5rem 0;
  }

  .support-stat {
    padding: 1rem 1.5rem;
  }

  .support-stat-divider {
    display: none;
  }

  .support-stats {
    gap: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .support-stat-number {
    font-size: 2.2rem;
  }
}

/* ══ PLANOS ══ */
#planos{
  scroll-margin-top: 70px;
}

.plans-section {
  background: #ffffff;
  padding: 6rem 0 5rem;
  border-top: 1px solid #f0f0f0;
}

.plan-card {
  background: #fafafa;
  border: 1px solid #f0eeea;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
}

.plan-card--featured {
  background: #1a1a1a;
  border-color: #1a1a1a;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.plan-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  border-radius: 100px;
  padding: 5px 18px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(249, 104, 0, 0.4);
}

.plan-header {
  margin-bottom: 1.5rem;
}

.plan-name {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #1a1a1a;
  margin: 0 0 0.4rem;
}

.plan-card--featured .plan-name {
  color: #ffffff;
}

.plan-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  color: #9ca3af;
  line-height: 1.55;
  margin: 0;
}

.plan-card--featured .plan-desc {
  color: rgba(255, 255, 255, 0.45);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #f0eeea;
}

.plan-card--featured .plan-price {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.plan-currency {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #6b7280;
  align-self: flex-start;
  margin-top: 6px;
}

.plan-card--featured .plan-currency {
  color: rgba(255, 255, 255, 0.45);
}

.plan-amount {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: #1a1a1a;
  letter-spacing: -0.04em;
  line-height: 1;
}

.plan-card--featured .plan-amount {
  color: #ffffff;
}

.plan-cents {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #6b7280;
  align-self: flex-start;
  margin-top: 10px;
}

.plan-card--featured .plan-cents {
  color: rgba(255, 255, 255, 0.5);
}

.plan-period {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: #9ca3af;
  margin-left: 4px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.plan-features li {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.plan-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%2322c55e' fill-opacity='0.15'/%3E%3Cpath d='M5.5 9l2.5 2.5 5-5' stroke='%2322c55e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C%2Fsvg%3E");
  background-size: cover;
}

.feat-yes {
  color: #374151;
}

.feat-no {
  color: #d1d5db;
}

.plan-card--featured .feat-yes {
  color: rgba(255, 255, 255, 0.85);
}

.plan-card--featured .feat-no {
  color: rgba(255, 255, 255, 0.2);
}

.feat-no::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23e5e7eb'/%3E%3Cpath d='M6 12l6-6M12 12L6 6' stroke='%23d1d5db' stroke-width='1.5' stroke-linecap='round'/%3E%3C%2Fsvg%3E");
}

.plan-btn {
  display: block;
  text-align: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 12px;
  padding: 0.85rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  margin-top: auto;
}

.plan-btn--outline {
  color: var(--brand);
  background: transparent;
  border: 1.5px solid rgba(249, 104, 0, 0.3);
}

.plan-btn--outline:hover {
  background: rgba(249, 104, 0, 0.05);
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}

.plan-btn--solid {
  color: #1a1a1a;
  background: var(--brand);
  border: none;
  box-shadow: 0 4px 20px rgba(249, 104, 0, 0.35);
}

.plan-btn--solid:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249, 104, 0, 0.45);
}

.plans-footer {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  color: #9ca3af;
}

.plans-footer a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}

.plans-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .plans-section {
    padding: 4rem 0;
  }

  .plan-card {
    padding: 2rem 1.5rem;
  }

  .plan-amount {
    font-size: 3.2rem;
  }
}

/* ══ FOOTER ══ */
.site-footer {
  background: #111111;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.site-footer strong {
  color: rgba(255,255,255,0.6);
  font-weight: 700;
}

.site-footer a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.site-footer a:hover {
  opacity: 0.75;
}