:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-dark: #0f172a;
  --text: #0f172a;
  --text-soft: #475569;
  --text-light: #94a3b8;
  --text-lima: #73f44c;
  /* --text-devlab: #e6ff4b; */
  --border: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 16px 40px rgba(15, 23, 42, 0.12);
  --radius: 24px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-title.center {
  text-align: center;
  margin-inline: auto;
}

.section-title.no-margin {
  margin-bottom: 0;
}

.section-title p,
.section-side-text,
.hero-description {
  font-size: 1.05rem;
}

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 12px;
}

.eyebrow-light {
  color: #cbd5e1;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  color: var(--text-soft);
}

strong {
  color: var(--text);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  background: var(--bg-dark);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 18px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-6px);
  background: var(--text-soft);
}

.btn-primary {
  background: var(--bg-dark);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.btn-secondary {
  background: var(--white);
  border: 1px solid #cbd5e1;
  color: var(--text);
}

.btn-light {
  background: var(--white);
  color: var(--bg-dark);
  font-size: 16px;
}

/* FORM Whatsapp e Envia E-mail */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.contact-modal.active {
  display: block;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(4px);
}

.contact-modal__content {
  position: relative;
  width: min(80%, 480px);
  margin: 1vh auto;
  z-index: 2;
  background: #ffffff;
  color: #111;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  animation: modalFadeUp 0.4s ease;
}

.contact-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #222;
}

.contact-modal__subtitle {
  margin: 0 0 22px;
  color: #666;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
}

.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  background: #fff;
}

.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.contact-form__footer {
  display: grid;
  gap: 10px;
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
}

.contact-form__status {
  min-height: 20px;
  margin: 0;
  font-size: 0.95rem;
}

.contact-form__status.is-error {
  color: #b42318;
}

.contact-form__status.is-success {
  color: #027a48;
}

.contact-form__honeypot {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

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

/* FORM Whatsapp e Envia E-mail - F I M  */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: var(--bg-dark);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-img {
  display: flex;
  align-items: center;
}

.brand-img img {
  width: 240px; /* ajuste aqui */
  height: auto;
  display: block;
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.brand-subtitle {
  font-size: 0.8rem;
  color: #64748b;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
}
nav a:hover {
  color: var(--text-lima);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 40%, #f1f5f9 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.45;
}

.hero::before {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 60px;
  background: #cbd5e1;
}

.hero::after {
  width: 380px;
  height: 380px;
  right: -80px;
  top: -40px;
  background: #e2e8f0;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  color: #475569;
  font-size: 0.92rem;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.feature-grid,
.benefits-grid,
.cards-grid,
.plans-grid,
.testimonials-grid,
.faq-grid,
.hero-card-grid {
  display: grid;
  gap: 24px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.feature-box,
.hero-card,
.card,
.plan-card,
.testimonial-card,
.faq-item,
.cta-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-box,
.card,
.plan-card,
.testimonial-card,
.faq-item {
  padding: 28px;
}

.feature-box {
  border-radius: 18px;
}

.hero-card {
  padding: 24px;
}

.hero-card-top {
  background: var(--bg-dark);
  color: var(--white);
  border-radius: 24px;
  padding: 28px;
}

.hero-card-top h2,
.hero-card-top p {
  color: var(--white);
}

.hero-card-grid {
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-box {
  background: var(--bg-soft);
  border-radius: 18px;
  padding: 18px;
}

.mini-box span {
  display: block;
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 4px;
}

.cards-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-index {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--bg-dark);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
}

.dark-section {
  background: var(--bg-dark);
}

.dark-section .eyebrow,
.dark-section h2,
.dark-section p,
.dark-card {
  color: var(--white);
}

.benefits-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dark-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 22px;
}

.testimonials-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.section-side-text {
  max-width: 520px;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card strong {
  display: block;
  margin-top: 24px;
}

.testimonial-card small {
  color: #64748b;
}
.testimonial-link {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-logo-wrap {
  width: 108px;
  height: 78px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 8px;
  background: #fff;
}

.testimonial-client-info strong {
  display: block;
  margin: 0;
}

.testimonial-client-info small {
  color: #64748b;
}

.testimonial-card {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.plans-section {
  background: var(--bg-soft);
}

.plans-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-dark);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.plan-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.price {
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 18px 0 6px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}

.feature-list li {
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: 14px;
  color: var(--text-soft);
}

.faq-grid {
  max-width: 980px;
  margin: 0 auto;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item p {
  margin-top: 16px;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: #64748b;
}

.faq-item[open] summary::after {
  content: "–";
}

.cta-box {
  background: var(--bg-dark);
  color: var(--white);
  padding: 46px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: center;
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.cta-actions {
  display: grid;
  gap: 14px;
}

.footer {
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 0;
}

.footer-title {
  width: 120px;
  margin: auto;
  padding: auto;
}

.footer p {
  color: #64748b;
  font-size: 0.95rem;
}

.email-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.email-modal.active {
  display: block;
}

.email-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.email-modal__content {
  position: relative;
  width: min(92%, 560px);
  margin: 6vh auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  z-index: 2;
  animation: modalFadeUp 0.25s ease;
}

.email-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #222;
}

.email-modal__content h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  color: #111;
}

.email-modal__subtitle {
  margin: 0 0 22px;
  color: #666;
  font-size: 0.98rem;
}

.email-form {
  display: grid;
  gap: 16px;
}

.email-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.email-form__group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
}

.email-form__group input,
.email-form__group select,
.email-form__group textarea {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  outline: none;
  transition: 0.2s ease;
}

.email-form__group input:focus,
.email-form__group select:focus,
.email-form__group textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.email-form__submit {
  width: 100%;
  justify-content: center;
}

.email-form__success {
  display: none;
  background: rgba(0, 180, 0, 0.1);
  border: 1px solid rgba(0, 180, 0, 0.3);
  padding: 16px;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #4dff7c;
}
.email-form__error {
  display: none;
  background: rgba(209, 0, 0, 0.1);
  border: 1px solid rgba(209, 0, 0, 0.3);
  padding: 16px;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  color: #ff8f8f;
}

body.modal-open {
  overflow: hidden;
}

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

@media (max-width: 1024px) {
  .hero-grid,
  .benefits-wrap,
  .cta-box,
  .testimonials-head {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }

  .cards-grid-3,
  .cards-grid-4,
  .testimonials-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav.mobile-open {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .feature-grid,
  .hero-card-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .cta-box {
    padding: 28px;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
    margin: auto;
    padding: auto;
    justify-content: center;
  }
}
