/* ================================================
   pages.css — Component classes for site pages
   Professional & modern design system
   ================================================ */

/* ── Cookie Consent Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(10px);
  color: #f3f4f6;
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: slideUpBanner 0.4s ease-out;
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  justify-content: space-between;
}
.cookie-banner-inner p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1 1 400px;
  color: #cbd5e1;
  line-height: 1.5;
}
.cookie-banner-inner a {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
}
.cookie-banner-actions .btn {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 999px;
}

/* ── Testimonials ── */
.testimonials {
  padding: 5rem 1.5rem;
  position: relative;
  background: linear-gradient(180deg, #fff 0%, var(--primary-50, #eff6ff) 100%);
}
.testimonials-title {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 800;
}
.testimonials-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  margin: 0.85rem auto 2.5rem;
}
.testimonials-carousel {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  min-height: 200px;
}
.testimonial-item {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: absolute;
  width: 100%;
  transform: translateY(10px);
}
.testimonial-active {
  opacity: 1;
  position: relative;
  transform: translateY(0);
}
.testimonial-item .card,
.testimonial-item blockquote {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(15,23,42,0.06);
  border: 1px solid var(--border, #e2e8f0);
  position: relative;
}
.testimonial-item .card::before {
  content: '\201C';
  position: absolute;
  top: -0.2rem;
  left: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}
.carousel-dots {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}
.carousel-dot:hover { background: #94a3b8; }
.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(11,94,215,0.2);
}

/* Testimonial card internals */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(15,23,42,0.06);
  border: 1px solid var(--border, #e2e8f0);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.2rem;
  left: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.12;
  line-height: 1;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text, #1e293b);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #2563eb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  color: var(--neutral, #0f172a);
  margin: 0;
  font-size: 0.95rem;
}
.author-role {
  color: var(--text-light, #475569);
  margin: 0;
  font-size: 0.85rem;
}

/* ── Contact Page ── */
.contato-page {
  max-width: 720px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}
.contato-title {
  text-align: center;
  margin-bottom: 0.75rem;
  font-size: 2rem;
}
.contato-subtitle {
  text-align: center;
  color: var(--text-light, #475569);
  margin-bottom: 3rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.contato-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contato-card {
  background: #fff;
  border-radius: var(--radius-lg, 22px);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--border, #e2e8f0);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.contato-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.contato-card:hover {
  border-color: rgba(11,94,215,0.1);
  box-shadow: 0 12px 36px rgba(15,23,42,0.08), 0 0 40px rgba(11,94,215,0.06);
  transform: translateY(-4px);
}
.contato-card:hover::before { transform: scaleX(1); }
.contato-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.contato-card-icon--whatsapp { color: var(--accent); }
.contato-card-icon--email { color: var(--primary); }
.contato-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--neutral, #0f172a);
}
.contato-card-desc {
  color: var(--text-light, #475569);
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.6;
}
.contato-card-info {
  color: #64748b;
  margin-top: 1rem;
  font-size: 0.88rem;
}
.contato-info-box {
  padding: 1.5rem 1.75rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid;
}
.contato-info-box h3 { margin-bottom: 0.5rem; font-weight: 700; }
.contato-info-box p { margin: 0; line-height: 1.6; }
.contato-info-box--horario {
  background: var(--primary-50, #eff6ff);
  border-left-color: var(--primary);
}
.contato-info-box--horario h3 { color: var(--primary); }
.contato-info-box--local {
  background: #f0fdf4;
  border-left-color: var(--accent);
}
.contato-info-box--local h3 { color: #16a34a; }
.contato-voltar {
  text-align: center;
  margin-top: 3rem;
}
.contato-voltar a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}
.contato-voltar a:hover { color: var(--primary-700, #084c9e); }

/* ── FAQ Page ── */
.breadcrumb-nav {
  margin-bottom: 2.5rem;
}
.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #94a3b8;
}
.breadcrumb-list a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-separator { color: #cbd5e1; }
.breadcrumb-current { color: #64748b; }
.faq-intro {
  color: var(--text-light, #475569);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  background: #fff;
}
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(11,94,215,0.08);
}
.faq-summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  user-select: none;
  transition: background 0.2s;
  color: var(--neutral, #0f172a);
}
.faq-summary:hover { background: var(--primary-50, #eff6ff); }
.faq-summary::-webkit-details-marker { display: none; }
.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary), #2563eb);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-answer {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border, #e2e8f0);
  background: var(--primary-50, #eff6ff);
  color: var(--text-light, #475569);
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-answer a {
  color: var(--primary);
  font-weight: 700;
}
.faq-cta {
  background: linear-gradient(135deg, var(--primary-50, #eff6ff), #f0fdf4);
  border: 1px solid var(--border, #e2e8f0);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  margin-top: 3rem;
  text-align: center;
}
.faq-cta h2 { margin-top: 0; }
.faq-cta p {
  color: var(--text-light, #475569);
  margin: 1rem 0;
  line-height: 1.6;
}
.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), #2563eb);
  color: #fff !important;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.5rem;
  box-shadow: 0 2px 10px rgba(11,94,215,0.25);
  transition: all 0.3s ease;
}
.faq-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(11,94,215,0.35);
  color: #fff !important;
}

/* ── Landing Pages — Shared ── */
.landing-hero {
  color: #fff;
  padding: 5rem 1.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.landing-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.landing-hero--blue {
  background: linear-gradient(135deg, #0a3d91 0%, var(--primary) 40%, #2563eb 70%, #3b82f6 100%);
}
.landing-hero--green {
  background: linear-gradient(135deg, #065f46 0%, #059669 40%, #10b981 70%, #34d399 100%);
}
.landing-hero-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.landing-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
}
.landing-hero-desc {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.landing-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.landing-btn-light {
  background: #fff;
  color: var(--primary);
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.landing-btn-light:hover {
  background: #f8fafc;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.landing-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.landing-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}

.landing-section {
  padding: 4rem 1.5rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.landing-section-title {
  text-align: center;
  font-size: 1.85rem;
  margin-bottom: 2.5rem;
  color: var(--neutral, #0f172a);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.landing-section-title i {
  margin-right: 0.5rem;
  color: var(--primary);
}
.landing-info-box {
  background: #fff;
  padding: 2rem 2.25rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 12px rgba(15,23,42,0.04);
}
.landing-info-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text, #1e293b);
  margin: 0;
}

/* Feature cards grid */
.landing-features-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.landing-feature-card {
  background: #fff;
  padding: 2rem 1.75rem;
  border-radius: 16px;
  border: 1px solid var(--border, #e2e8f0);
  box-shadow: 0 2px 8px rgba(15,23,42,0.04);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.landing-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(15,23,42,0.08);
  border-color: transparent;
}
.landing-feature-card h3 {
  color: var(--primary);
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.landing-feature-card h3 i { margin-right: 0.45rem; }
.landing-feature-card p {
  color: var(--text-light, #475569);
  margin: 0;
  line-height: 1.7;
}

/* Alternating section background */
.landing-section-alt {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 4rem 0;
}

/* Use case cards */
.landing-use-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.landing-use-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 16px;
  border: 1px solid var(--border, #e2e8f0);
  border-top: 3px solid var(--accent);
  transition: all 0.3s ease;
}
.landing-use-card:hover {
  box-shadow: 0 6px 20px rgba(15,23,42,0.06);
  transform: translateY(-2px);
}
.landing-use-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.landing-use-card h3 i { margin-right: 0.3rem; }
.landing-use-card p {
  color: var(--text-light, #475569);
  margin: 0;
  line-height: 1.7;
}

/* Storage cards */
.landing-storage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.landing-storage-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border, #e2e8f0);
  text-align: center;
  transition: all 0.3s ease;
}
.landing-storage-card:hover {
  box-shadow: 0 6px 20px rgba(15,23,42,0.06);
  transform: translateY(-2px);
}
.landing-storage-card h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 700;
}
.landing-storage-card p {
  color: var(--text-light, #475569);
  margin: 0;
}
.landing-storage-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--accent), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  display: block;
}

/* CTA sections */
.landing-cta {
  background: linear-gradient(135deg, #0a3d91 0%, var(--primary) 40%, #2563eb 100%);
  color: #fff;
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.landing-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.landing-cta--green {
  background: linear-gradient(135deg, #065f46 0%, #059669 40%, #10b981 100%);
}
.landing-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.landing-cta-inner h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.landing-cta-inner p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* Warning box */
.landing-warning {
  background: #fef2f2;
  padding: 1.75rem 2rem;
  border-radius: 16px;
  border-left: 4px solid #ef4444;
  margin-top: 2rem;
}
.landing-warning p {
  color: #991b1b;
  margin: 0;
  line-height: 1.7;
  font-weight: 500;
}

/* ── Process Steps ── */
.process-steps {
  display: grid;
  gap: 2rem;
}
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-circle {
  background: linear-gradient(135deg, var(--primary), #2563eb);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 1.15rem;
  box-shadow: 0 4px 15px rgba(11,94,215,0.25);
}
.process-step h3 {
  color: var(--neutral, #0f172a);
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.process-step p {
  color: var(--text-light, #475569);
  margin: 0;
  line-height: 1.7;
}

/* ── Privacy & Terms ── */
.privacy-policy,
.terms-page {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}
.privacy-policy h1,
.terms-page h1 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}
.last-updated {
  color: var(--text-light, #475569);
  margin-bottom: 2.5rem;
  font-size: 0.92rem;
}
.contact-box {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 14px;
  padding: 1.75rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(15,23,42,0.03);
}
.back-link {
  text-align: center;
  margin-top: 3rem;
}
.back-link a {
  font-weight: 700;
  color: var(--primary);
  transition: color 0.2s;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .landing-hero {
    padding: 3.5rem 1rem 3rem;
  }
  .landing-hero-title {
    font-size: 1.8rem;
  }
  .landing-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .landing-btn-light,
  .landing-btn-outline {
    width: 100%;
    text-align: center;
  }
  .contato-cards {
    grid-template-columns: 1fr;
  }
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .testimonials { padding: 3rem 1rem; }
  .landing-section { padding: 3rem 1rem; }
}

/* ── Layout: Brand Logo (header/footer) ── */
.brand-icon {
  color: #fbbf24;
  margin-right: 0.4rem;
  filter: drop-shadow(0 1px 2px rgba(251,191,36,0.3));
}
.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.5rem;
  vertical-align: middle;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* ── Layout: Footer Bottom ── */
.footer-bottom-inner {
  text-align: center;
}
.footer-badge-wrap {
  margin-top: 1rem;
}
.footer-legal-links {
  display: inline;
  margin: 0 8px;
}
.footer-dev {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #475569;
}
.footer-dev a {
  display: inline;
  color: #64748b;
  transition: color 0.2s;
}
.footer-dev a:hover { color: #fff; }

/* ── Sobre page ── */
.sobre-page {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}
.sobre-page h1 { margin-bottom: 1.5rem; }
.sobre-page h2 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
}
.sobre-page p {
  line-height: 1.8;
}

/* ── Venda Rápida — Componentes extras ── */

/* Badge de destaque no hero */
.landing-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4em 1.2em;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}

/* Lista de documentos */
.landing-doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.landing-doc-list li {
  padding: 0.6em 0;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
  border-bottom: 1px solid #f0f0f0;
}
.landing-doc-list li:last-child {
  border-bottom: none;
}

/* Tabela comparativa */
.landing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.95rem;
}
.landing-table th,
.landing-table td {
  padding: 0.85em 1em;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}
.landing-table thead th {
  background: #f8fafc;
  font-weight: 700;
  color: #1e293b;
  border-bottom: 2px solid #e5e7eb;
}
.landing-table .highlight-col {
  background: var(--primary-50, #eff6ff);
}
.landing-table thead .highlight-col {
  background: var(--primary, #0b5ed7);
  color: #fff;
}
.landing-table tbody tr:hover {
  background: #fafafa;
}
.table-responsive {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

/* FAQ accordion */
.landing-faq {
  display: grid;
  gap: 0.75rem;
}
.landing-faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.landing-faq-item[open] {
  border-color: var(--primary, #0b5ed7);
  box-shadow: 0 2px 12px rgba(11,94,215,0.1);
}
.landing-faq-item summary {
  padding: 1em 1.25em;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1e293b;
  transition: color 0.2s;
}
.landing-faq-item summary::-webkit-details-marker {
  display: none;
}
.landing-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: #9ca3af;
  transition: transform 0.3s;
}
.landing-faq-item[open] summary::after {
  content: '−';
  color: var(--primary, #0b5ed7);
}
.landing-faq-item summary:hover {
  color: var(--primary, #0b5ed7);
}
.landing-faq-item p {
  padding: 0 1.25em 1.25em;
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

/* Telefone no CTA */
.landing-cta-phone {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}
.landing-cta-phone a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.landing-cta-phone a:hover {
  color: rgba(255,255,255,0.9);
}

/* Social links no CTA */
.landing-cta-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.landing-cta-social span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.landing-cta-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.landing-cta-social a:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* Responsivo — venda rápida */
@media (max-width: 600px) {
  .landing-table { font-size: 0.85rem; }
  .landing-table th,
  .landing-table td { padding: 0.6em 0.7em; }
  .landing-doc-list li { font-size: 0.95rem; }
}
