/* ============================================
   ROTA SEGURA - Assessoria Veicular
   "Clean Shield" Design System
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul { list-style: none; }

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ---- Disclaimer Banner (top) ---- */
.disclaimer-banner {
  background: var(--teal-700);
  color: #fff;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
}
.disclaimer-banner .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.disclaimer-banner svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---- Header ---- */
.site-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; color: #fff; }
.logo-text {
  line-height: 1.2;
}
.logo-text .name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  display: block;
}
.logo-text .sub {
  font-size: 0.625rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.desktop-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: all 0.2s;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--teal-700);
  background: var(--teal-50);
}
.header-phone {
  display: none;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--slate-600);
}
.header-phone:hover { color: var(--teal-700); }
.header-phone svg { width: 14px; height: 14px; }

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .header-phone { display: flex; }
  .mobile-toggle { display: none !important; }
}

/* Mobile toggle */
.mobile-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 6px;
  color: var(--slate-600);
  cursor: pointer;
}
.mobile-toggle:hover { background: var(--slate-100); }
.mobile-toggle svg { width: 24px; height: 24px; }

/* Mobile nav */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--slate-100);
  padding: 0.75rem 1rem;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.625rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--teal-700);
  background: var(--teal-50);
}

@media (min-width: 1024px) {
  .mobile-nav { display: none !important; }
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,23,42,0.92), rgba(15,23,42,0.78), rgba(15,23,42,0.5));
}
.hero-content {
  position: relative;
  padding: 5rem 0 5.5rem;
  max-width: 640px;
}
@media (min-width: 1024px) {
  .hero-content { padding: 7rem 0 7.5rem; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(13,148,136,0.2);
  border: 1px solid rgba(20,184,166,0.3);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.hero-badge svg { width: 14px; height: 14px; color: var(--teal-400); }
.hero-badge span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--teal-400); }
@media (min-width: 1024px) {
  .hero h1 { font-size: 3.25rem; }
}
@media (min-width: 1280px) {
  .hero h1 { font-size: 3.75rem; }
}
.hero-desc {
  font-size: 1.125rem;
  color: var(--slate-300);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
}
.search-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 1.25rem;
}
.search-box label {
  display: block;
  font-size: 0.875rem;
  color: var(--slate-300);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.search-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .search-row { flex-direction: row; }
}
.search-input-wrap {
  position: relative;
  flex: 1;
}
.search-input-wrap svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--slate-400);
}
.search-input-wrap input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  background: #fff;
  border: none;
  border-radius: 8px;
  color: var(--slate-900);
  font-size: 0.875rem;
  font-weight: 500;
  outline: none;
}
.search-input-wrap input::placeholder { color: var(--slate-400); }
.search-input-wrap input:focus { box-shadow: 0 0 0 2px var(--teal-500); }
.search-box .note {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: 0.75rem;
}
.search-box .note svg { width: 12px; height: 12px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal-600);
  color: #fff;
}
.btn-primary:hover { background: var(--teal-700); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--teal-600);
  color: var(--teal-700);
}
.btn-outline:hover { background: var(--teal-50); }
.btn-white {
  background: #fff;
  color: var(--teal-800);
}
.btn-white:hover { background: var(--teal-50); }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn svg { width: 16px; height: 16px; }

/* ---- Trust Banner ---- */
.trust-banner {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 1.5rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 20px; height: 20px; color: var(--teal-700); }
.trust-item .label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-800);
}
.trust-item .sub {
  font-size: 0.75rem;
  color: var(--slate-500);
}

/* ---- Section Headers ---- */
.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
  text-align: center;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .section-title { font-size: 2.25rem; }
}
.section-desc {
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* ---- Services Cards ---- */
.services-section { padding: 4rem 0; }
@media (min-width: 1024px) { .services-section { padding: 6rem 0; } }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
.service-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-lg);
}
.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.service-card:hover .icon { background: var(--teal-100); }
.service-card .icon svg { width: 24px; height: 24px; color: var(--teal-600); }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.375rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ---- Disclaimer Section ---- */
.disclaimer-section {
  background: var(--teal-50);
  border-top: 1px solid var(--teal-100);
  border-bottom: 1px solid var(--teal-100);
  padding: 3rem 0;
}
.disclaimer-box {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.disclaimer-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.disclaimer-icon svg { width: 24px; height: 24px; color: #fff; }
.disclaimer-box h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}
.disclaimer-box > div > p {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.disclaimer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.disclaimer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-600);
}
.disclaimer-list li svg {
  width: 16px;
  height: 16px;
  color: var(--teal-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ---- CTA Section ---- */
.cta-section { padding: 4rem 0 5rem; }
.cta-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.cta-card .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(19,78,74,0.88);
}
.cta-card .content {
  position: relative;
  padding: 3.5rem 2rem 4rem;
  text-align: center;
}
.cta-card h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cta-card h2 { font-size: 1.875rem; }
}
.cta-card .desc {
  color: var(--teal-100);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

/* ---- Page Header (internal pages) ---- */
.page-header {
  background: var(--slate-50);
  padding: 4rem 0;
  border-bottom: 1px solid var(--slate-200);
  text-align: center;
}
@media (min-width: 1024px) {
  .page-header { padding: 5rem 0; }
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .page-header h1 { font-size: 2.25rem; }
}
.page-header p {
  color: var(--slate-500);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- About Page ---- */
.about-content { padding: 4rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1024px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-img {
  border-radius: 12px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.about-info h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}
.about-info p {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.company-data {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.company-data h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}
.company-data table {
  width: 100%;
  font-size: 0.875rem;
}
.company-data td {
  padding: 0.375rem 0;
  vertical-align: top;
}
.company-data td:first-child {
  font-weight: 600;
  color: var(--slate-700);
  width: 140px;
}
.company-data td:last-child {
  color: var(--slate-500);
}

/* ---- Services Page ---- */
.services-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.service-detail-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s;
}
.service-detail-card:hover {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-md);
}
.service-detail-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--teal-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-detail-card .icon svg { width: 28px; height: 28px; color: var(--teal-600); }
.service-detail-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}
.service-detail-card p {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* ---- Pricing Cards ---- */
.pricing-section { padding: 4rem 0; }
.pricing-notice {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  padding: 1rem 1.25rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.pricing-notice svg { width: 20px; height: 20px; color: #d97706; flex-shrink: 0; margin-top: 0.125rem; }
.pricing-notice p { font-size: 0.875rem; color: var(--slate-700); line-height: 1.6; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.pricing-card {
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  background: #fff;
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--teal-500);
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-600);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}
.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.375rem;
}
.pricing-card .price-desc {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-bottom: 1.25rem;
}
.pricing-card .price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
}
.pricing-card .price small {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--slate-500);
}
.pricing-card .features {
  margin-bottom: 1.5rem;
}
.pricing-card .features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-600);
  padding: 0.375rem 0;
}
.pricing-card .features li svg {
  width: 16px;
  height: 16px;
  color: var(--teal-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.pricing-card .btn { width: 100%; }

/* ---- FAQ Accordion ---- */
.faq-section { padding: 4rem 0; }
.faq-list {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.open {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--teal-700); }
.faq-item.open .faq-question { color: var(--teal-700); }
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--slate-400);
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--teal-600);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.25rem 1rem;
}
.faq-answer p {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ---- Contact Page ---- */
.contact-section { padding: 4rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1024px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 2fr 3fr; }
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.contact-info-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--teal-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .icon svg { width: 20px; height: 20px; color: var(--teal-600); }
.contact-info-item .label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-800);
}
.contact-info-item .value {
  font-size: 0.875rem;
  color: var(--slate-500);
}
.contact-company-box {
  padding: 1rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--slate-500);
  line-height: 1.6;
}
.contact-form-card {
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 1024px) {
  .contact-form-card { padding: 2rem; }
}
.contact-form-card h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}
.contact-form-card .form-desc {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
  margin-bottom: 0.25rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--slate-900);
  outline: none;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 2px rgba(20,184,166,0.15);
}
.form-group textarea { resize: none; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* ---- Legal Pages ---- */
.legal-content {
  padding: 4rem 0;
}
.legal-inner {
  max-width: 768px;
  margin: 0 auto;
}
.legal-disclaimer {
  padding: 1.25rem;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.legal-disclaimer svg { width: 20px; height: 20px; color: var(--teal-600); flex-shrink: 0; margin-top: 0.125rem; }
.legal-disclaimer p { font-size: 0.875rem; color: var(--teal-800); line-height: 1.6; }
.legal-inner h2 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 2rem 0 0.5rem;
}
.legal-inner p {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.legal-inner ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}
.legal-inner ul li {
  font-size: 0.875rem;
  color: var(--slate-600);
  padding: 0.25rem 0;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--slate-900);
  color: var(--slate-300);
}
.footer-disclaimer {
  background: var(--slate-800);
  padding: 1rem 0;
  border-bottom: 1px solid var(--slate-700);
}
.footer-disclaimer-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(51,65,85,0.5);
  border: 1px solid var(--slate-600);
}
.footer-disclaimer-box svg { width: 20px; height: 20px; color: var(--teal-400); flex-shrink: 0; margin-top: 0.125rem; }
.footer-disclaimer-box p { font-size: 0.875rem; line-height: 1.7; }
.footer-disclaimer-box strong { color: #fff; }
.footer-disclaimer-box .highlight { color: var(--teal-400); }
.footer-main { padding: 3rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.footer-brand .logo .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand .logo .icon svg { width: 16px; height: 16px; color: #fff; }
.footer-brand .logo span {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.footer-brand .desc {
  font-size: 0.875rem;
  color: var(--slate-400);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.cnpj-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(19,78,74,0.5);
  border: 1px solid var(--teal-800);
  border-radius: 9999px;
}
.cnpj-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
}
.cnpj-badge span {
  font-size: 0.75rem;
  color: var(--teal-300);
  font-weight: 500;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--slate-400);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.footer-col ul li a:hover { color: var(--teal-400); }
.footer-col ul li a svg { width: 12px; height: 12px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}
.footer-contact li svg {
  width: 16px;
  height: 16px;
  color: var(--teal-400);
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.footer-contact li span,
.footer-contact li a {
  font-size: 0.875rem;
  color: var(--slate-400);
}
.footer-contact li a:hover { color: var(--teal-400); }
.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding: 1rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--slate-500);
}
@media (min-width: 640px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

/* ---- Inline Disclaimer (bottom of pages) ---- */
.page-disclaimer {
  background: var(--teal-50);
  border-top: 1px solid var(--teal-100);
  padding: 2.5rem 0;
}
.page-disclaimer .inner {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.page-disclaimer svg { width: 24px; height: 24px; color: var(--teal-600); flex-shrink: 0; margin-top: 0.125rem; }
.page-disclaimer p { font-size: 0.875rem; color: var(--slate-600); line-height: 1.7; }

/* ---- Pricing Extra ---- */
.pricing-footer-note {
  max-width: 768px;
  margin: 2.5rem auto 0;
  padding: 1.5rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
}
.pricing-footer-note h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}
.pricing-footer-note p {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fadeUp 0.5s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
