/* ===== Reset e variáveis ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --accent: #0ea5e9;
  --success: #10b981;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg: #f8fafc;
  --bg-section: #ffffff;
  --border: #e2e8f0;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --font-heading: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-heading);
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--primary);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius);
}

img.logo-icon {
  flex-shrink: 0;
  background: none;
  border-radius: 50%;
  object-fit: contain;
}

.logo-text {
  font-size: 1.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  color: var(--primary) !important;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  background: rgba(37, 99, 235, 0.08);
}

.nav-cta:hover {
  background: rgba(37, 99, 235, 0.15);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: #10b981;
  color: white;
}

.btn-secondary:hover {
  background: #0d9668;
}

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

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.06);
}

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

/* ===== Hero ===== */
.hero {
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, #eff6ff 0%, var(--bg) 100%);
  text-align: center;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-trust {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Seções ===== */
.section {
  padding: 4rem 0;
}

.section:nth-child(even) {
  background: var(--bg-section);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.75rem;
}

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

/* ===== Cards ===== */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.15s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.card-benefit .card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: var(--radius);
  font-size: 1.25rem;
}

/* ===== Fluxo ===== */
.fluxo-diagrama {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.fluxo-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  min-width: 180px;
  flex: 1 1 180px;
  box-shadow: var(--shadow);
}

.fluxo-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
}

.fluxo-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fluxo-content strong {
  font-size: 0.95rem;
  color: var(--text);
}

.fluxo-content span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.fluxo-arrow {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

@media (max-width: 700px) {
  .fluxo-arrow {
    transform: rotate(90deg);
    width: 100%;
    text-align: center;
  }
}

/* ===== Prints ===== */
.prints-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.prints-filter-btn {
  min-height: 44px;
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.prints-filter-btn:hover {
  color: var(--text);
  border-color: var(--primary-light);
}

.prints-filter-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.prints-filter-btn.is-active {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  border-color: var(--primary);
}

.prints-group {
  margin-bottom: 2rem;
}

.prints-group.is-hidden {
  display: none !important;
}

.prints-subtitle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 2rem 0 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.prints-group:first-child .prints-subtitle {
  margin-top: 0;
}

.prints-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 56ch;
}

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

.print-card {
  text-align: center;
}

.print-frame {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: #1e293b;
  aspect-ratio: 3/4;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.print-frame:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

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

.print-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #1e293b;
}

.print-caption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.prints-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.prints-cta-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
}

.prints-cta .btn {
  display: inline-block;
}

/* ----- Lightbox ----- */
.prints-lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.prints-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.prints-lightbox-backdrop {
  position: fixed;
  inset: 0;
  cursor: pointer;
}

.prints-lightbox-inner {
  position: fixed;
  inset: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.prints-lightbox-inner > * {
  pointer-events: auto;
}

.prints-lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}

.prints-lightbox-close:hover {
  background: rgba(0, 0, 0, 0.75);
}

.prints-lightbox-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.prints-lightbox-figure {
  max-width: 100%;
  max-height: calc(100vh - 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.prints-lightbox-figure img {
  max-width: 100%;
  max-height: calc(100vh - 6rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.prints-lightbox-caption {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: #fff;
  text-align: center;
}

@media (max-width: 700px) {
  .prints-filters {
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .prints-filter-btn {
    min-height: 44px;
    padding: 0.6rem 1rem;
    flex: 1 1 auto;
    min-width: calc(50% - 0.25rem);
  }

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

/* ===== Prós e Contras ===== */
.pros-contras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pros-contras-col h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.pros h3 {
  border-bottom-color: var(--success);
  color: var(--success);
}
.contras h3 {
  border-bottom-color: #f59e0b;
  color: #b45309;
}

.pros-contras-col ul {
  list-style: none;
}

.pros-contras-col li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pros-contras-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.pros li::before {
  background: var(--success);
}
.contras li::before {
  background: #f59e0b;
}

/* ===== Depoimento ===== */
.depoimento-quote {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--bg-section);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.depoimento-quote p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.depoimento-quote footer cite {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item dt {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.faq-item dd {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: 0;
  line-height: 1.5;
}

/* ===== CTA + Contato ===== */
.cta-contato {
  background: linear-gradient(180deg, #eff6ff 0%, var(--bg-section) 100%);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-badges span {
  padding: 0.35rem 0.75rem;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 999px;
  color: var(--primary);
}

.contato-form-wrap {
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg-section);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contato-form h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.contato-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  background: var(--bg);
}

.contato-form input:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.contato-form button {
  width: 100%;
  margin-top: 0.5rem;
}

/* ===== Footer ===== */
.footer {
  padding: 2rem 0;
  background: var(--text);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand .logo-icon {
  background: rgba(255, 255, 255, 0.2);
}

.footer-brand img.logo-icon {
  background: none;
}

.footer-brand .logo-text {
  color: white;
  font-weight: 600;
  font-family: var(--font-heading);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
}

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

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Responsivo ===== */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: var(--bg-section);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .section {
    padding: 3rem 0;
  }

  .fluxo-step {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}
