/* ============================================
   ROCKFY - CSS OTIMIZADO
   ============================================ */

/* ========== VARIÁVEIS (só o essencial) ========== */
:root {
  /* Cores - mantém pra consistência de marca */
  --primary: #6fffce;
  --primary-hover: #49c49b;
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --text: #ffffff;
  --text-2: #a0a0a0;
  --text-3: #6b6b6b;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);

  /* Tipografia */
  --font-heading: 'Bai Jamjuree', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'DM Mono', monospace;

  /* Layout */
  --container: 1200px;

  /* Z-index */
  --z-fixed: 300;
}

/* ========== RESET (compacto) ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: none;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  text-wrap: balance;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: currentColor;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

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

/* ========== FONTES ========== */
@font-face {
  font-family: 'Bai Jamjuree';
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/bai-jamjuree/BaiJamjuree-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Bai Jamjuree';
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/bai-jamjuree/BaiJamjuree-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Bai Jamjuree';
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/bai-jamjuree/BaiJamjuree-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Bai Jamjuree';
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/bai-jamjuree/BaiJamjuree-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'DM Sans';
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dm-sans/DMSans-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'DM Sans';
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/dm-sans/DMSans-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'DM Sans';
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/dm-sans/DMSans-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'DM Mono';
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dm-mono/DMMono-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'DM Mono';
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/dm-mono/DMMono-Medium.ttf') format('truetype');
}

/* ========== BASE ========== */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
h3 {
  font-size: 1.25rem;
}

p {
  color: var(--text-2);
  line-height: 1.65;
}
strong {
  font-weight: 600;
  color: var(--text);
}
a {
  font-family: var(--font-mono);
  transition: color 0.15s;
}
a:hover {
  color: var(--primary);
}

::selection {
  background: var(--primary);
  color: var(--bg);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-2);
}
::-webkit-scrollbar-thumb {
  background: var(--text-3);
  border-radius: 99px;
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--text-3) var(--bg-2);
}

/* ========== LAYOUT ========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

/* ========== UTILITIES ========== */
.flex {
  display: flex;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-between {
  justify-content: space-between;
}
.justify-end {
  justify-content: flex-end;
}

.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-10 {
  gap: 4rem;
}
.text-center {
  text-align: center;
}
.text-primary {
  color: var(--primary);
}
.text-muted {
  color: var(--text-2);
}

.mb-4 {
  margin-bottom: 1rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mt-auto {
  margin-top: auto;
}
.mt-12 {
  margin-top: 3rem;
}

.mx-auto {
  margin-inline: auto;
}
.max-w-narrow {
  max-width: 900px;
}
.max-w-sm {
  max-width: 600px;
}

.rounded {
  border-radius: 12px;
}
.rounded-lg {
  border-radius: 16px;
}
.rounded-xl {
  border-radius: 24px;
}
.rounded-full {
  border-radius: 9999px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .grid-2,
  .grid-3:not(:has(.blog-card)),
  .grid-4 {
    display: flex;
    flex-direction: column;
  }

  /* Templates section - imagem primeiro no mobile */
  .grid-2 .flex-center:has(img[alt*='templates']),
  .grid-2 .flex-center:has(img[alt*='Biblioteca']) {
    order: -1;
  }
}

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

  /* Segunda sessão centralizada no mobile */
  .grid-2 .flex-col {
    text-align: center;
  }

  .grid-2 .section-title,
  .grid-2 .section-subtitle {
    text-align: center;
  }
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: 1.5rem 0;
  background: var(--bg);
}

.header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header__menu a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.header__menu a:hover {
  color: var(--text);
}

.header__login {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.header__login:hover {
  opacity: 0.8;
}

.header__menu-btn {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__menu-btn:hover {
  opacity: 0.8;
}

/* Menu Mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu[aria-hidden='false'] {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.mobile-menu__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 400px;
  background: var(--bg);
  border-left: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu[aria-hidden='false'] .mobile-menu__content {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-2);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}

.mobile-menu__close:hover {
  background: var(--bg-2);
  color: var(--text);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

.mobile-menu__links a {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.mobile-menu__links a:hover {
  background: var(--bg-2);
  color: var(--text);
}

.mobile-menu__login {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

@media (max-width: 768px) {
  .header__menu,
  .header__login {
    display: none;
  }

  .header__menu-btn {
    display: block;
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 210, 106, 0.3);
}

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

.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: transform 0.15s;
}

.btn:hover .btn__arrow {
  transform: translateX(2px);
}

/* ========== CARDS (base unificada) ========== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.25s;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
}

/* ========== SECTION TITLE ========== */
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-2);
}

/* ========== HERO ========== */
.hero {
  padding-top: 140px;
  padding-bottom: 4rem;
}

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

.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: left;
}

.hero__text {
  font-size: 1.125rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 480px;
  text-align: left;
}

.hero__badges {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__badge-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__badge-icon--bolt {
  color: #00e5a0;
}

.hero__badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
}

.hero__image {
  width: 100%;
  max-width: 620px;
}

@media (max-width: 1024px) {
  .hero .grid-2 {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero .flex-col {
    display: flex;
    flex-direction: column;
  }

  .hero .flex-center {
    order: -1; /* Imagem vai primeiro */
  }

  .hero__title {
    order: 0; /* Título em segundo */
  }

  .hero__text {
    order: 1; /* Texto em terceiro */
    max-width: 100%;
  }

  .hero__badges {
    order: 2; /* Badges por último */
    justify-content: left;
    flex-wrap: wrap;
  }

  .hero__image {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 50px;
  }

  .hero .grid-2 {
    gap: 2rem;
  }

  .hero__image {
    max-width: 100%;
  }

  .hero__badges {
    align-items: center;
    gap: 1rem;
  }
}

/* ========== PERSONA CARDS ========== */
.persona-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.25s;
}

.persona-card:hover {
  transform: translateY(-4px);
}

.persona-card__bg {
  position: relative;
  height: 360px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.persona-card__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.persona-card__content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  width: 100%;
}

.persona-card__title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.persona-card__text {
  font-size: 0.875rem;
  color: var(--text-2);
}

@media (max-width: 1024px) {
  .persona-card__bg {
    height: 320px;
  }
}

@media (max-width: 768px) {
  /* Efeito sticky de empilhamento */
  .grid-4:has(.persona-card) {
    gap: 1rem;
  }

  .persona-card {
    position: sticky;
    top: 80px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
  }

  .persona-card:nth-child(1) {
    z-index: 1;
  }
  .persona-card:nth-child(2) {
    z-index: 2;
  }
  .persona-card:nth-child(3) {
    z-index: 3;
  }
  .persona-card:nth-child(4) {
    z-index: 4;
  }

  .persona-card__bg {
    height: 420px;
  }
}

/* ========== TESTIMONIAL CARDS ========== */
.testimonials-carousel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow: hidden;
  touch-action: pan-y;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s ease;
  will-change: transform;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 0 calc(50% - 1rem);
  min-width: 0;
}

.testimonial-card__image {
  position: relative;
  width: fit-content;
}

.testimonial-card__image img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
}

.testimonial-card__badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: var(--primary);
  border-radius: 0px 6px;
}

.testimonial-card__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-2);
}

.testimonial-card__author {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-3);
  font-style: normal;
}

/* Navegação do carousel */
.testimonials-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.testimonials-nav__text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.testimonials-nav__arrows {
  display: flex;
  gap: 0.5rem;
}

.testimonials-nav__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.testimonials-nav__btn:hover {
  background: var(--primary);
  color: var(--bg);
}

.testimonials-nav__btn--next {
  background: var(--primary);
  color: var(--bg);
}

.testimonials-nav__btn--next:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

@media (max-width: 768px) {
  .testimonials-track {
    gap: 1.5rem;
  }

  .testimonial-card__image img {
    width: 100px;
    height: 100px;
  }

  .testimonials-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* ========== RENDA SECTION ========== */
.renda__highlight {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
}

.renda__benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.renda__benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-2);
}

.renda__benefit-icon {
  color: var(--primary);
}

.renda__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

/* ========== RECURSOS ========== */
.recursos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.recursos__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.recursos__image {
  width: 100%;

  border-radius: 16px;
}

/* Steps */
.recursos__steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.recursos__step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.recursos__step-number {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--primary);
  flex-shrink: 0;
}

.recursos__step-content {
  padding-top: 0.5rem;
}

.recursos__step-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.recursos__step-text {
  color: var(--text-2);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .recursos__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .recursos__image-wrapper {
    order: -1;
  }
}

/* ========== PLANOS ========== */
.planos__nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.planos__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.planos__nav-btn:hover {
  background: var(--primary);
  color: var(--bg);
}

.planos__nav-btn--next {
  background: var(--primary);
  color: var(--bg);
}

.planos__nav-btn--next:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.planos__scroll {
  overflow-x: auto;
  padding: 2rem 0;
  margin: 0 -1.5rem;
  padding-inline: 1.5rem;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.planos__grid {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.plan-card {
  flex: 0 0 auto;
  width: 340px;
  min-height: 280px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  scroll-snap-align: start;
}

.plan-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.plan-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.plan-card__name {
  font-size: 1.25rem;
  font-weight: 500;
}

.plan-card__price {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}

.plan-card__sites {
  margin-bottom: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.plan-card__sites-main {
  display: flex;
  flex-direction: column;
}

.plan-card__sites-number {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 300;
  line-height: 0.9;
}

.plan-card__sites-label {
  font-size: 1.25rem;
  display: block;
  font-family: var(--font-heading);
}

.plan-card__specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--text);
  padding-left: 1rem;
}

.plan-card__specs li {
  white-space: nowrap;
}

.plan-card__specs li::marker {
  content: '|  ';
  color: var(--primary);
}

.plan-card__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.plan-card__btn {
  flex: 1;
  padding: 1rem 1.5rem;
  background: transparent;
  border: 1px solid var(--text);
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  transition: all 0.25s;
}

.plan-card__btn:hover {
  background: var(--text);
  color: var(--bg);
}

.plan-card__btn-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  transition: transform 0.25s;
}

.plan-card__btn-icon:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .plan-card {
    width: 280px;
    padding: 1.5rem;
  }
  .plan-card__sites-number {
    font-size: clamp(3.5rem, 10vw, 5rem);
  }
  .plan-card__btn-icon {
    width: 48px;
    height: 48px;
  }
}

/* ========== FAQ ========== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item:hover,
.faq-item[open] {
  border-color: var(--border-light);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  background: var(--bg-card);
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--text-3);
  transition: transform 0.15s;
}

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

.faq-item__answer {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ========== CTA FINAL ========== */
.cta-final {
  text-align: center;
}

.cta-final__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.cta-final__text {
  font-size: 1.125rem;
  color: var(--text-2);
  margin-bottom: 2rem;
}

/* ========== BLOG CARDS ========== */
.blog-card {
  transition: transform 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card a {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: inherit;
}

.blog-card__image {
  aspect-ratio: 16/9;
  background: var(--bg-2);
  border-radius: 16px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.6;
  font-family: var(--font-body);
}

.blog-card__author {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-3);
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .grid-3:has(.blog-card) {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .grid-3:has(.blog-card)::-webkit-scrollbar {
    height: 8px;
  }

  .grid-3:has(.blog-card)::-webkit-scrollbar-track {
    background: var(--bg-2);
    border-radius: 4px;
  }

  .grid-3:has(.blog-card)::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
  }

  .blog-card {
    flex: 0 0 calc(70% - 0.5rem);
    scroll-snap-align: start;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-2);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__brand-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__brand-links a {
  font-size: 0.875rem;
  color: var(--text-2);
  font-family: var(--font-body);
}

.footer__brand p {
  font-size: 0.75rem;
  color: var(--text-3);
  line-height: 1.65;
}

.footer__nav h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav a {
  font-size: 0.875rem;
  color: var(--text-2);
  font-family: var(--font-body);
}

.footer__nav a:hover {
  color: var(--text);
}

.footer__contact h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer__contact a {
  font-size: 0.875rem;
  color: var(--text-2);
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social a:hover {
  color: var(--primary);
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__bottom small {
  font-size: 0.75rem;
  color: var(--text-3);
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: var(--z-fixed);
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: all 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ========== SECTION IMAGE (reusável) ========== */
.section-image {
  width: 100%;
  max-width: 600px;
}

@media (max-width: 1024px) {
  .section-image {
    margin: 0 auto;
  }
}

/* ========== AUTORIDADE GRID CUSTOM ========== */
.autoridade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.autoridade__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.autoridade__image img {
  width: 100%;
  max-width: 600px;
}

@media (max-width: 1024px) {
  .autoridade-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .autoridade__image {
    display: none;
  }

  .autoridade__content {
    text-align: center;
  }

  .autoridade__content .section-title {
    text-align: center;
  }

  .testimonials-nav {
    justify-content: center;
  }
}
