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

:root {
  --bg-base: #faf7f4;
  --bg-surface: #f5efe8;
  --bg-surface-2: #ede4da;
  --primary: #c9746a;
  --primary-hover: #b5615a;
  --primary-light: #f2dbd8;
  --secondary: #8fa68a;
  --secondary-hover: #759470;
  --secondary-light: #ddeadb;
  --text-primary: #2b2220;
  --text-secondary: #7a6460;
  --text-muted: #a89490;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.09), 0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.box-nome-logo {
  display: flex;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 16px;
}

.img-logo {
  max-width: 42px;
}

.nav-logo {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  color: var(--primary);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text-primary);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-ghost {
  padding: 8px 18px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  font-family: "DM Sans", sans-serif;
}
.btn-ghost:hover {
  background: var(--primary-light);
}
.btn-primary {
  padding: 8px 20px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  font-family: "DM Sans", sans-serif;
}
.btn-primary:hover {
  color: var(--white) !important;
  background: var(--primary-hover);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE NAV ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0s linear 0.28s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0s linear 0s;
}
.mobile-menu a {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--primary);
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 5%;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 5% 80px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(201, 116, 106, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
#hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(143, 166, 138, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero-h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--primary);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-hero {
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(201, 116, 106, 0.35);
}
.btn-hero:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 116, 106, 0.4);
}
.hero-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s,
    gap 0.2s;
}
.hero-link:hover {
  color: var(--primary);
  gap: 10px;
}
.hero-trust {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-avatars {
  display: flex;
}
.trust-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-left: -8px;
}
.trust-avatars span:first-child {
  margin-left: 0;
}
.trust-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
.trust-text strong {
  color: var(--text-secondary);
}

/* ─── DASHBOARD MOCKUP ─── */
.dashboard-wrap {
  position: relative;
}
.dashboard-mockup {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow:
    var(--shadow-lg),
    0 32px 64px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.4s;
}
.dashboard-wrap:hover .dashboard-mockup {
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}
.db-topbar {
  background: #2b2220;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.db-dots {
  display: flex;
  gap: 6px;
}
.db-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.db-dot-r {
  background: #ff5f57;
}
.db-dot-y {
  background: #ffbd2e;
}
.db-dot-g {
  background: #28c840;
}
.db-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-left: 8px;
}
.db-body {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 0;
}
.db-main {
  padding: 20px;
  border-right: 1px solid var(--bg-surface-2);
}
.db-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.db-appt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  margin-bottom: 6px;
  background: var(--bg-base);
  transition: background 0.2s;
}
.db-appt:hover {
  background: var(--primary-light);
}
.db-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 38px;
  font-variant-numeric: tabular-nums;
}
.db-dot-appt {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.db-appt-info {
  flex: 1;
}
.db-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.db-service {
  font-size: 11px;
  color: var(--text-muted);
}
.db-status {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}
.db-status-ok {
  background: var(--secondary-light);
  color: var(--secondary-hover);
}
.db-status-wait {
  background: #fff3cd;
  color: #856404;
}

.db-sidebar {
  padding: 20px 14px;
  background: var(--bg-base);
}
.db-kpi {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}
.db-kpi-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.db-kpi-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.db-kpi-sub {
  font-size: 10px;
  color: var(--secondary);
  font-weight: 500;
  margin-top: 2px;
}
.db-next {
  background: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 12px;
}
.db-next-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.db-next-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}
.db-next-time {
  font-size: 11px;
  color: var(--primary);
  font-weight: 500;
}

/* Floating card */
.float-card {
  position: absolute;
  bottom: -20px;
  left: -40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatUp 3s ease-in-out infinite;
}
@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.float-icon {
  width: 36px;
  height: 36px;
  background: var(--secondary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.float-text-label {
  font-size: 11px;
  color: var(--text-muted);
}
.float-text-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ─── SECTION COMMONS ─── */
section {
  padding: 80px 5%;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}
.section-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 56px;
}

/* ─── DORES ─── */
#dores {
  background: var(--white);
}
.dores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dor-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-base);
  border-left: 3px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.dor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.dor-emoji {
  font-size: 28px;
  margin-bottom: 14px;
}
.dor-problem {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dor-problem::before {
  content: "✕";
  color: var(--primary);
  font-size: 11px;
}
.dor-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}
.dor-divider {
  height: 1px;
  background: var(--bg-surface-2);
  margin: 14px 0;
}
.dor-solution {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-hover);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.dor-solution::before {
  content: "✓";
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ─── FUNCIONALIDADES ─── */
#funcionalidades {
  background: var(--bg-base);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  border: 1px solid transparent;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--bg-surface-2);
}
.feat-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.feat-card:nth-child(2) .feat-icon {
  background: var(--secondary-light);
}
.feat-card:nth-child(3) .feat-icon {
  background: #e8f4fd;
}
.feat-card:nth-child(4) .feat-icon {
  background: #fdf4e8;
}
.feat-card:nth-child(5) .feat-icon {
  background: var(--primary-light);
}
.feat-card:nth-child(6) .feat-icon {
  background: var(--secondary-light);
}
.feat-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.feat-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── DEPOIMENTOS ─── */
#depoimentos {
  background: var(--white);
}
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dep-card {
  background: var(--bg-base);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
}
.dep-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: "DM Serif Display", serif;
  font-size: 72px;
  color: var(--primary-light);
  line-height: 1;
}
.dep-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.dep-quote {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dep-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.dep-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.dep-role {
  font-size: 12px;
  color: var(--text-muted);
}
.dep-stars {
  margin-bottom: 16px;
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 2px;
}

/* ─── FAQ ─── */
#faq {
  background: var(--bg-base);
}
.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--bg-surface-2);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: "DM Sans", sans-serif;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--primary);
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-secondary);
  transition:
    background 0.2s,
    transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-light);
  color: var(--primary);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.faq-a-inner {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 200px;
}

/* ─── CTA FINAL ─── */
#cta {
  background: linear-gradient(
    135deg,
    #f2dbd8 0%,
    var(--bg-base) 60%,
    var(--secondary-light) 100%
  );
  text-align: center;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 116, 106, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  position: relative;
}
.cta-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  position: relative;
}
.btn-cta {
  padding: 16px 40px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(201, 116, 106, 0.4);
  display: inline-block;
  position: relative;
}
.btn-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 116, 106, 0.45);
}
.cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
}

/* ─── FOOTER ─── */
footer {
  background: var(--text-primary);
  padding: 48px 5%;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: "DM Serif Display", serif;
  font-size: 24px;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 13px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}
.box-footer-copy {
  text-align: center;
}
.footer-copy {
  font-size: 13px;
}

.link-footer-copy {
  color: var(--bg-surface-2);
  transition: color 0.2s ease-in-out;
}

.link-footer-copy:hover {
  color: var(--white);
}

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .box-footer-copy {
    text-align: start;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 6%;
  }
  .nav-links,
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .dashboard-mockup {
    transform: none;
  }
  .float-card {
    left: -10px;
  }
  .dores-grid {
    grid-template-columns: 1fr;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .dep-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .db-body {
    grid-template-columns: 1fr;
  }
  .db-sidebar {
    display: none;
  }
  section {
    padding: 60px 6%;
  }
  .section-sub {
    margin-bottom: 36px;
  }
  
}
