/* ==========================
        VARIÁVEIS (Adicionei as de espaçamento)
========================== */
:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-soft: #eff6ff;
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --grey: #64748b;
  --grey-light: #e5e7eb;
  --grey-clear: #99a1af;
  --grey-dark: #364153;
  --bg: #f9fafb;
  --bg-toggle: rgba(33, 63, 163, 0.9);
  --white: #ffffff;

  /* Paddings Dinâmicos */
  --p-inline: 8%;
  --p-block: 2rem;

  --shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.1);
  --shadow-square:
    0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-card:
    rgba(50, 50, 93, 0.25) 0px 8px 12px -6px,
    rgba(0, 0, 0, 0.3) 0px 8px 10px -15px;
  --radius: 8px;
  --transition: 0.2s ease;
}

/* ==========================
        RESET
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  scroll-padding-top: 1rem;
  scroll-behavior: smooth;
}
/* ==========================
        SCROLLBAR (Ajustada)
========================== */
html::-webkit-scrollbar {
  width: 0.8rem;
  height: 4px;
}

html::-webkit-scrollbar-track {
  background: var(--bg);
  box-shadow: inset 0 0 5px var(--grey-clear);
}

html::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 1rem;
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

body {
  font-family: "Inter", "Space Grotesk", "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--bg);
  padding-top: clamp(72px, 12vw, 96px);
  /* padding-top: clamp(100px, 13vw, 96px); */
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================
    ESTRUTURA DE PADDING PARA REMOVER !important
========================== */

/* Usando seletores duplos para garantir especificidade sem força bruta */
body header.site-header {
  padding: 10.8px 8%;
}

body footer.site-footer {
  padding: 10.8px 8%; 
}

body section {
  padding: 2rem 8%;
}

/* ==========================
        LAYOUT
========================== */
.container {
  /* max-width: 1200px; */
  margin-inline: auto;
  /* padding-bottom: 4rem; */
}
/* ==========================
        BADGE
========================== */
.badge-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;

  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);

  background: rgba(60, 131, 246, 0.1);
  padding: 6px 16px 6px 12px;
  border-radius: 999px;
}

/* ==========================
        BADGE HERO
========================== */
.badge-title__hero {
  margin-bottom: 2rem;
}
.badge-title__hero::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;

  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(60, 131, 246, 0.15);

  flex-shrink: 0;
}
.badge-title__hero::before {
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 4px rgba(60, 131, 246, 0.15);
  }
  50% {
    background: rgba(60, 237, 246, 0.941);
    box-shadow: 0 0 0 6px rgba(60, 131, 246, 0.25);
  }
  100% {
    box-shadow: 0 0 0 4px rgba(60, 131, 246, 0.15);
  }
}

.title-header {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: "Space Grotesk", sans-serif;
  margin-top: 1rem;
}
.title-header.title-form,
.paragraph-form {
  text-align: left;
}

.title-header__highlight {
  color: var(--primary);
  background: linear-gradient(135deg, #2563eb, #6bd3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ==========================
        HEADER
========================== */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-card);
  /* border-bottom: 1px solid rgba(11, 18, 32, 0.03); */
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 1rem 0; */
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}
.brand-link:active,
.brand-link:focus {
  outline: none;
  -moz-outline-style: none;
  outline-style: none;
}
.brand-link img {
  width: 10rem;
  height: auto;
  transition: transform 0.3s ease;
}

.brand-link:hover .logo-image {
  transform: scale(1.05); /* Um leve zoom para dar interatividade */
}

.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-list a {
  font-weight: 600;
  color: var(--grey);
}

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

/* ==========================
        NAV TOGGLE
========================== */
#nav-toggle {
  display: none;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* ==========================
        HERO
========================== */
.hero {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  min-height: 640px;
}

.hero-content {
  flex: 1 1 420px;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
}

.hero-content h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  text-align: left;
}
.gradient-text {
  background: linear-gradient(135deg, #2563eb, #6bd3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  color: var(--grey);
  margin: 1rem 0 2rem;
  text-align: left;
}
/* Imagem trocada por HERO-RIGHT */
/* .hero-image {
  flex: 1;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  border-radius: 16px;
  padding: 3rem;
} */
.hero-right {
  flex: 1 1 420px;
  display: grid;
  place-items: center;
}

.mock-card {
  width: clamp(260px, 38vw, 648px);
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: linear-gradient(180deg, #d0e4fe 100%, #d0e4fe 0%);
  border: 1px solid rgba(11, 18, 32, 0.04);
  box-shadow: var(--shadow-square);
  position: relative;

  display: grid;
  place-items: center;
  overflow: hidden;

  /* min-height: 260px;  */
}

.mock-card img {
  width: 100%;
  height: auto;
  max-width: 142px; /* Limita o crescimento horizontal da imagem em telas muito estreitas */
  max-height: 142px; /* Limita o crescimento vertical, preservando o formato dentro do card quadrado */

  object-fit: contain;

  filter: brightness(0) saturate(100%) invert(29%) sepia(91%) saturate(1720%)
    hue-rotate(200deg) brightness(95%) contrast(95%);
}

/* Glow decorativo */
.mock-card .glow {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7ef0c9, rgba(43, 110, 246, 0.12));
  filter: blur(24px);
  opacity: 0.9;
  pointer-events: none;
}

/* ==========================
        BUTTONS
========================== */
.btn {
  display: inline-block;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 0.65rem 1.4rem;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  width: 10.625rem;
  transition: transform 0.4s;
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.pricing-table tbody tr:nth-child(2) .btn-outline {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transition: transform 0.4s;
}
.pricing-table tbody tr:nth-child(2) .btn-outline:hover {
  transform: translateY(-2px);
}
.pricing-table tbody tr:nth-child(2) .btn-outline:hover {
  background: var(--primary-light);
}

/* ==========================
        SEÇÕES
========================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header.section-form-header {
  flex: 1 1 300px;
  padding: 0 !important;
  text-align: left;
}

.section-header p {
  color: var(--grey);
  margin: 0.5rem 0 2rem;
}
.section-header__box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ==========================
        SECTION-HEADER CONTACT
============================= */
.section-header__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.contact-icon__email {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.contact-icon__support {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.section-header__label {
  font-size: 0.85rem;
  color: var(--grey-clear);
  font-weight: 500;
  margin: initial !important;
}

.section-header__text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark) !important;
  margin: initial !important;
}

/* ==========================
        FEATURES
========================== */
#services {
  background: var(--white);
  padding-block: 4rem !important;
}

#services .section-header p {
  font-size: 18px;
}
.features-grid {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--grey-light);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
/* animação base */
.feature-icon {
  transition: transform 0.4s ease;
}

/* hover no card afeta o ícone */
.feature-card:hover .feature-icon {
  transform: scale(1.08);
  transition-delay: 0.1s;
}

.feature-card h3 {
  margin-block: 0.75rem;
}

.feature-card p {
  color: var(--grey);
  margin-bottom: 1rem;
}

.feature-card ul {
  list-style: none;
  padding-left: 0;
}

.feature-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--grey);
}
.feature-card li i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ==========================
        CORES NOS CHECKS
========================== */
/* HTML */
.feature-icon.html ~ ul li i {
  color: #2563eb;
}

/* CSS */
.feature-icon.css ~ ul li i {
  color: #00c950;
}

/* Responsive */
.feature-icon.responsive ~ ul li i {
  color: #7c3aed;
}

/* ==========================
        FEATURE ICONS
========================== */
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  /* ÍCONE BRANCO */
  color: var(--primary-soft);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

/* Cores por tipo */
.feature-icon.html {
  background: #2563eb; /* azul */
}

.feature-icon.css {
  background: #00c950; /* verde */
}

.feature-icon.responsive {
  background: #7c3aed; /* roxo */
}

/* ==========================
        PRICING TABLE
========================== */

#pricing {
  padding-block: 4rem !important;
}

.table-wrapper {
  overflow-x: auto;
}

/* ==========================
        TABLE BASE
========================== */

.pricing-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.pricing-table thead {
  background: var(--dark);
  color: var(--white);
}

.pricing-table th {
  padding: 1rem 1.5rem !important;
}

/* ==========================
        CELLS
========================== */

.pricing-table th,
.pricing-table td {
  padding: 1.5rem;
  line-height: 1.3;
  text-align: left;
  border-bottom: 1px solid var(--grey-light);
}

/* Tipografia por coluna */
.pricing-table td:nth-child(1) {
  font-size: 1rem;
  font-weight: 600;
  color: var(--grey-dark);
  vertical-align: middle;
}

.pricing-table td:nth-child(2) {
  font-size: 1rem;
  font-weight: 400;
  color: var(--grey-dark);
}

.pricing-table td:nth-child(3) {
  font-size: 1.25rem;
  font-weight: 700;
  vertical-align: middle;
}

/* Subtextos (span) */
.pricing-table td:nth-child(1) span,
.pricing-table td:nth-child(3) span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--grey-clear);
}

/* ==========================
        HIGHLIGHT ROW
========================== */

.pricing-table tbody tr.highlight {
  background: var(--primary-soft);
}

/* ==========================
        PLAN TITLE + BADGE
========================== */

.plan-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge {
  background: #2563eb;
  color: var(--primary-soft) !important;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  line-height: 1;
}

.plan-subtitle {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--grey-clear);
}

/* ==========================
        STORIES
========================== */
.stories {
  background: var(--white);
  padding-block: 4rem !important;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 2rem;
}
/* ==========================
        STORY CARD
========================== */

.story-card {
  position: relative;
  background: var(--bg);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-square);
}

/* ==========================
        STORY RATING
========================== */
.story-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.story-rating i {
  color: #ffc107;
  font-size: 1.1rem;
}
.story-rating i:last-child {
  color: transparent;
  -webkit-text-stroke: 1px #ffc107;
}

/* ==========================
        QUOTE ICON
========================== */
.quote-icon {
  position: absolute;
  top: -18px;
  left: 18px;
  transform: translateX(-50%) scale(1);
  width: 36px;
  height: 36px;
  color: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  transition:
    opacity 0.6s ease,
    transform 1s ease,
    background 0.4s ease;
}
.story-card:hover .quote-icon {
  opacity: 1;
  transform: translateX(-50%) scale(1.1);
  background: var(--primary);
  color: var(--primary-soft);
}

/* ==========================
        QUOTE ICON
========================== */
.story-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.story-author strong {
  display: block;
  color: var(--dark);
}
.story-author span {
  display: block;
  color: var(--grey-clear);
}

/* ==========================
        AVATAR
========================== */
/* .avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--primary-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
} */

.story-author__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;

  /* borda branca interna */
  border: 2px solid #fff;

  /* borda azul externa */
  box-shadow: 0 0 0 3px var(--primary);
}

/* ==========================
        TEXT
========================== */
.story-card p {
  color: var(--grey-dark);
  margin-bottom: 1rem;
}

/* ==========================
        CONTACT
========================== */
.contact {
  padding-block: 4rem !important;
}
.contact-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 0 8%;
}
.contact-form {
  /* width: 460px; */
  max-width: 100%;
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow:
    0 10px 15px rgba(0, 0, 0, 0.1),
    0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(11, 18, 32, 0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 300px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}
.contact-form label span {
  display: flex;
  align-items: center;
  gap: 8px;
  /* margin-bottom: 8px; */
  color: var(--dark-soft);
  font-size: 1rem;
}

.contact-form label span i {
  font-size: 0.9rem;
  color: var(--primary);
}

.btn-submit {
  display: flex;
  align-self: flex-start;
  justify-content: center;
  gap: 10px;
  border: 0;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1.4rem;
  margin-top: 1rem;
  cursor: pointer;
  background: var(--primary);
  color: var(--primary-soft);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-submit:hover {
  background: var(--primary-light);
}
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(11, 18, 32, 0.06);
  font:
    15px "Inter",
    "Poppins",
    sans-serif;
  outline: none;
  background: var(--bg);
  color: var(--grey);
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 6px 18px rgba(43, 110, 246, 0.08);
  border-color: rgba(43, 110, 246, 0.18);
}
/* ==========================
        FOOTER
========================== */
/* ==========================
        FOOTER AJUSTADO
========================== */
.site-footer {
  background: var(--dark);
  color: var(--white);
  /* padding: 4rem 8% 2rem; */
}

.footer-container {
  /* max-width: 1200px; */
  max-width: 100%;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding-block: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

:is(.footer-column, .footer-box) h3 {
  font:
    1.1rem "Space Grotesk",
    sans-serif;
  margin-bottom: 1.5rem;
}

.footer-description {
  margin-top: 1.2rem;
  color: var(--grey-clear);
  font-size: 0.95rem;
  max-width: 320px;
}

/* Lista de Links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--grey-clear);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px; /* Efeito sutil de hover */
}

/* Ícones Sociais */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--grey-clear);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* Rodapé Final */
.footer-bottom {
  padding-block: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--grey-clear);
}

/* ==========================
        RESPONSIVO
========================== */
@media (max-width: 1200px) {
  body header.site-header,
  body section {
    padding: 10.8px 4%;
  }

  body footer.site-footer {
    padding: 10.8px 4% 0;
  }
}

@media (max-width: 829px) {
  .btn-submit {
    max-width: 100%;
    align-self: initial;
  }
  .contact-inner {
    padding: initial;
  }
}
@media (min-width: 769px) {
  .nav {
    position: static;
    height: auto;
    background: none;
  }

  .nav-list {
    flex-direction: row;
    padding: 0;
  }

  .nav-list li {
    border: none;
    padding: 0;
  }
}

@media (max-width: 768px) {
  body {
    /* padding-top: clamp(72px, 12vw, 96px); */
    padding-top: clamp(40px, 12vw, 96px);
  }
  section#home {
    padding-block: 4rem; /* Removido !important */
  }

  .nav-list {
    gap: 1rem;
  }
  /* .features-grid {
    grid-template-columns: repeat(2, 1fr);
  } */

  /* ESTILIZAÇAO DO TOGGLE */

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    transition: right 0.35s ease;
    border-top: 1px solid var(--grey-light);
    background: var(--bg-toggle);
  }

  .nav-list {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .nav-list li {
    border-bottom: 1px solid var(--grey-light);
    padding-bottom: 1rem;
  }
  .nav-list li a {
    color: var(--primary-soft) !important;
  }

  /* ATIVA MENU */
  /* #nav-toggle:checked ~ .nav {
    right: 0;
  } */
  /* ATIVA MENU PELO TARGET */

  .nav:target {
    right: 0;
  }

  .nav-toggle.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--primary-soft);
  }

  /* ==========================
   PRICING TABLE – RESPONSIVE
  ========================== */
  /* Conter overflow horizontal no mobile */
  .table-wrapper {
    overflow-x: hidden;
  }

  /* Neutralizar min-width no mobile */
  .pricing-table {
    min-width: unset;
    width: 100%;
  }
  .pricing-table thead {
    display: none;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr {
    display: block;
    width: 100%;
  }

  .pricing-table tr {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  }

  .pricing-table td {
    display: block;
    padding: 0.5rem 0;
    border: none;
    text-align: left;
  }

  /* Plano */
  .pricing-table td:nth-child(1) {
    font-size: 1.25rem;
    font-weight: 700;
  }

  /* Aspecto */
  .pricing-table td:nth-child(2) {
    font-size: 0.95rem;
    color: var(--grey-dark);
    margin-top: 0.5rem;
  }

  /* Preço */
  .pricing-table td:nth-child(3) {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
  }

  .pricing-table td:nth-child(3) span {
    font-size: 0.75rem;
    color: var(--grey-clear);
  }

  /* Ação */
  .pricing-table td:nth-child(4) {
    margin-top: 1rem;
  }

  .pricing-table td:nth-child(4) .btn {
    width: 100%;
    text-align: center;
  }

  /* Destaque do plano popular */
  .pricing-table tr.highlight {
    border: 2px solid var(--primary);
    background: var(--primary-soft);
  }
  .footer-top {
    flex-direction: column;
    gap: 2.5rem;
  }

  /* ========================= 
        STORIES – RESPONSIVE
  ============================*/
}

@media (max-width: 576px) {
  .hero {
    flex-direction: column;
    text-align: center;
    min-height: unset;
  }
  .hero-content {
    max-width: 100%;
    align-items: flex-start;
  }

  /* .hero-image {
    padding: 2rem;
  } */
  .hero-right {
    width: 100%;
  }

  .mock-card {
    width: 100%;
    /* max-width: 360px; */
  }

  p,
  .feature-card ul li {
    font-size: 1.125rem;
  }

  /* .features-grid {
    grid-template-columns: 1fr;
  } */
  #pricing {
    padding-block: 2rem; /* Em vez de 0, para não colar no conteúdo */
  }
  /* .contact-form button[type="submit"]{
    max-width: 1000px;
    border: 0;
    font-size: 1rem;
    padding: 1rem;
    cursor: pointer;
  } */
}
