/* =========================================================
   DANIEL ANICETO SOARES ADVOCACIA
   LP - REGULARIZAÇÃO FUNDIÁRIA
========================================================= */

:root {
  --das-black: #111111;
  --das-black-soft: #1d1d1d;
  --das-wine: #7a0928;
  --das-wine-dark: #4f061b;
  --das-gray: #6f6f6f;
  --das-gray-light: #eeeeee;
  --das-white: #ffffff;
  --das-offwhite: #f8f6f3;
  --das-beige: #eee7de;
  --das-gold-soft: #c7a56b;
  --das-text: #5f5a55;
  --das-title: #141414;
  --das-shadow-sm: 0 10px 30px rgba(17, 17, 17, 0.08);
  --das-shadow-md: 0 18px 45px rgba(17, 17, 17, 0.12);
  --das-shadow-lg: 0 28px 80px rgba(17, 17, 17, 0.16);
  --das-radius-sm: 14px;
  --das-radius-md: 22px;
  --das-radius-lg: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--das-text);
  background: var(--das-white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

img {
  max-width: 100%;
}

a {
  transition: 0.25s ease;
}

strong {
  font-weight: 800;
}

.das-page {
  overflow: hidden;
}

.das-section {
  padding: 100px 0;
}

.das-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--das-wine);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.das-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--das-wine);
}

.das-section-content h2,
.das-analysis-header h2,
.das-services h2,
.das-situations h2,
.das-process h2,
.das-faq h2,
.das-contact h2 {
  margin: 0 0 24px;
  color: var(--das-title);
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.12;
}

.das-section-content h2 strong,
.das-analysis-header h2 strong {
  color: var(--das-wine);
}

.das-section-content p {
  margin: 0 0 18px;
  color: var(--das-text);
  font-size: 16px;
}

.das-section-description {
  max-width: 760px;
  margin: 0 auto;
  color: var(--das-text);
  font-size: 17px;
  line-height: 1.7;
}

/* BOTÕES */

.das-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 25px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.das-btn i {
  font-size: 16px;
}

.das-btn:hover {
  transform: translateY(-3px);
}

.das-btn-primary {
  color: var(--das-white);
  background: linear-gradient(135deg, var(--das-wine), var(--das-wine-dark));
  box-shadow: 0 16px 38px rgba(122, 9, 40, 0.28);
}

.das-btn-primary:hover {
  color: var(--das-white);
  box-shadow: 0 20px 48px rgba(122, 9, 40, 0.36);
}

.das-btn-dark {
  color: var(--das-white);
  background: linear-gradient(135deg, var(--das-black), var(--das-black-soft));
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.22);
}

.das-btn-dark:hover {
  color: var(--das-white);
  background: linear-gradient(135deg, var(--das-wine), var(--das-wine-dark));
}

.das-btn-outline {
  border: 1px solid rgba(122, 9, 40, 0.28);
  color: var(--das-wine);
  background: transparent;
}

.das-btn-outline:hover {
  color: var(--das-white);
  background: var(--das-wine);
}

.das-btn-light {
  color: var(--das-wine);
  background: var(--das-white);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.das-btn-light:hover {
  color: var(--das-white);
  background: var(--das-black);
}

.das-btn-header {
  min-height: 46px;
  padding: 12px 20px;
  color: var(--das-white);
  background: var(--das-wine);
}

/* HEADER */

.das-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
}

.das-header .navbar {
  padding: 13px 0;
}

.das-brand img {
  width: auto;
  max-height: 68px;
}

.das-header .nav-link {
  padding: 10px 13px !important;
  color: var(--das-black);
  font-size: 13px;
  font-weight: 800;
}

.das-header .nav-link:hover {
  color: var(--das-wine);
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

/* HERO */

.das-hero {
  position: relative;
  padding: 105px 0 90px;
  background: radial-gradient(circle at top left, rgba(122, 9, 40, 0.08), transparent 34%), linear-gradient(135deg, #ffffff 0%, #f7f3ef 100%);
}

.das-hero-content {
  position: relative;
  z-index: 2;
}

.das-hero h1 {
  max-width: 670px;
  margin: 0 0 24px;
  color: var(--das-title);
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 700;
  line-height: 1.02;
}

.das-hero h1 strong {
  display: inline;
  color: var(--das-wine);
}

.das-hero-subtitle {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--das-black-soft);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.das-hero-text {
  max-width: 600px;
  margin: 0 0 32px;
  color: var(--das-text);
  font-size: 16px;
}

.das-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.das-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.das-hero-features > div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(122, 9, 40, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--das-black);
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--das-shadow-sm);
}

.das-hero-features i {
  color: var(--das-wine);
}

.das-hero-disclaimer {
  max-width: 620px;
  margin: 0;
  color: #7c7772;
  font-size: 12px;
  line-height: 1.6;
}

.das-hero-visual {
  position: relative;
  min-height: 650px;
}

.das-hero-shape {
  position: absolute;
  inset: 28px 28px auto auto;
  width: 82%;
  height: 88%;
  border-radius: 38px 150px 38px 150px;
  background: linear-gradient(135deg, var(--das-wine), var(--das-black));
  opacity: 0.12;
}

.das-hero-image {
  position: relative;
  z-index: 1;
  height: 650px;
  overflow: hidden;
  border: 8px solid var(--das-white);
  border-radius: 150px 34px 150px 34px;
  background: var(--das-beige);
  box-shadow: var(--das-shadow-lg);
}

.das-hero-image picture,
.das-hero-image img {
  width: 100%;
  height: 100%;
}

.das-hero-image img {
  object-fit: cover;
  object-position: center;
}

.das-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 260px;
  padding: 16px 18px;
  border: 1px solid rgba(122, 9, 40, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--das-shadow-md);
  backdrop-filter: blur(12px);
}

.das-floating-card i {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--das-white);
  background: var(--das-wine);
}

.das-floating-card strong {
  display: block;
  color: var(--das-black);
  font-size: 13px;
  line-height: 1.25;
}

.das-floating-card span {
  display: block;
  color: var(--das-text);
  font-size: 11px;
  font-weight: 600;
}

.das-floating-card-top {
  top: 70px;
  left: -22px;
}

.das-floating-card-bottom {
  right: -18px;
  bottom: 72px;
}

/* FAIXA INFORMATIVA */

.das-info-strip {
  padding: 25px 0;
  background: var(--das-black);
}

.das-info-strip-content {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1060px;
  margin: 0 auto;
  color: var(--das-white);
}

.das-info-strip-content i {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--das-white);
  background: var(--das-wine);
}

.das-info-strip-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

/* FORMULÁRIO */

.das-analysis {
  padding: 95px 0 105px;
  background: radial-gradient(circle at bottom right, rgba(122, 9, 40, 0.07), transparent 35%), var(--das-offwhite);
}

.das-analysis-header {
  max-width: 880px;
  margin: 0 auto 38px;
}

.das-analysis-header h2 {
  max-width: 780px;
  margin: 0 auto 18px;
}

.das-analysis-header > p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--das-text);
  font-size: 17px;
}

.das-analysis-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.das-analysis-points > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid rgba(122, 9, 40, 0.18);
  border-radius: 999px;
  background: var(--das-white);
  color: var(--das-black);
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--das-shadow-sm);
}

.das-analysis-points i {
  color: var(--das-wine);
}

.das-start-indicator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-top: 28px;
  color: var(--das-wine);
  font-size: 14px;
  font-weight: 800;
}

.das-start-indicator span {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--das-white);
  background: var(--das-wine);
  box-shadow: 0 12px 30px rgba(122, 9, 40, 0.24);
  animation: dasPulse 2s infinite;
}

.das-start-indicator i {
  font-size: 22px;
  animation: dasArrowDown 1.25s infinite;
}

.das-form {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: var(--das-white);
  box-shadow: var(--das-shadow-lg);
}

.das-form::before {
  content: "RESPONDA ABAIXO";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 5;
  padding: 7px 15px;
  border-radius: 0 0 12px 12px;
  color: var(--das-white);
  background: var(--das-wine);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  transform: translateX(-50%);
}

.das-form-progress {
  padding: 36px 32px 22px;
  background: radial-gradient(circle at top right, rgba(122, 9, 40, 0.08), transparent 36%), #fbfaf8;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.das-progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.das-progress-header span {
  display: block;
  color: var(--das-black);
  font-size: 14px;
  font-weight: 900;
}

.das-progress-header small {
  color: var(--das-text);
  font-size: 12px;
  font-weight: 700;
}

.das-progress-header strong {
  color: var(--das-wine);
  font-size: 19px;
  font-weight: 900;
}

.das-progress-track {
  overflow: hidden;
  height: 9px;
  border-radius: 999px;
  background: rgba(122, 9, 40, 0.12);
}

.das-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--das-wine), var(--das-black));
  transition: width 0.3s ease;
}

.das-form-content {
  padding: 32px;
}

.das-question {
  margin: 0;
  padding: 0;
  border: 0;
}

.das-question legend {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  color: var(--das-black);
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.das-question-help {
  margin: 0 0 22px;
  color: var(--das-text);
  font-size: 14px;
}

.das-options {
  display: grid;
  gap: 12px;
}

.das-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 62px;
  padding: 15px 18px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 16px;
  color: var(--das-black);
  background: var(--das-white);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.das-option:hover {
  border-color: rgba(122, 9, 40, 0.42);
  background: #fffafa;
  transform: translateY(-2px);
}

.das-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.das-option-circle {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(122, 9, 40, 0.32);
  border-radius: 50%;
  transition: 0.25s ease;
}

.das-option-text {
  flex: 1;
  color: var(--das-black);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.das-option > i {
  color: var(--das-wine);
  font-size: 12px;
}

.das-option:has(input:checked) {
  border-color: var(--das-wine);
  background: rgba(122, 9, 40, 0.06);
}

.das-option:has(input:checked) .das-option-circle {
  border-color: var(--das-wine);
  background: radial-gradient(circle, var(--das-wine) 0 42%, transparent 45%);
}

.das-contact-step .das-field {
  margin-bottom: 16px;
}

.das-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--das-black);
  font-size: 13px;
  font-weight: 900;
}

.das-field input {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 14px;
  color: var(--das-black);
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.das-field input:focus {
  border-color: var(--das-wine);
  box-shadow: 0 0 0 4px rgba(122, 9, 40, 0.08);
}

.das-field-error {
  display: none;
  margin-top: 6px;
  color: #b04141;
  font-size: 11px;
  font-weight: 800;
}

.das-field.has-error input {
  border-color: #b04141;
}

.das-field.has-error .das-field-error {
  display: block;
}

.das-security {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  padding: 13px 14px;
  border-radius: 13px;
  background: rgba(122, 9, 40, 0.06);
  color: var(--das-text);
  font-size: 12px;
  line-height: 1.55;
}

.das-security i {
  margin-top: 3px;
  color: var(--das-wine);
}

.das-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 32px 32px;
}

.das-back,
.das-submit {
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
}

.das-back {
  min-height: 46px;
  padding: 11px 18px;
  color: var(--das-black);
  background: var(--das-gray-light);
}

.das-back:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.das-submit {
  min-height: 50px;
  padding: 13px 22px;
  color: var(--das-white);
  background: #25d366;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.24);
}

.das-submit:hover {
  transform: translateY(-2px);
}

.das-auto-message {
  color: var(--das-text);
  font-size: 12px;
  font-weight: 800;
}

.das-form-disclaimer {
  max-width: 650px;
  margin: 18px auto 0;
  color: #827d78;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

/* SOBRE */

.das-about {
  background: var(--das-white);
}

.das-about-visual {
  position: relative;
  max-width: 510px;
}

.das-about-image {
  overflow: hidden;
  height: 590px;
  border-radius: 32px 120px 32px 120px;
  background: var(--das-beige);
  box-shadow: var(--das-shadow-lg);
}

.das-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.das-about-badge {
  position: absolute;
  right: -20px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 245px;
  padding: 18px;
  border: 6px solid var(--das-white);
  border-radius: 20px;
  background: var(--das-wine);
  color: var(--das-white);
  box-shadow: var(--das-shadow-md);
}

.das-about-badge i {
  font-size: 24px;
}

.das-about-badge span {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.das-about-highlight,
.das-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 26px 0 30px;
  padding: 20px;
  border-left: 4px solid var(--das-wine);
  border-radius: 0 16px 16px 0;
  background: var(--das-offwhite);
}

.das-about-highlight i,
.das-highlight i {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--das-wine);
  font-size: 22px;
}

.das-about-highlight p,
.das-highlight p {
  margin: 0;
}

/* BENEFÍCIO */

.das-benefit {
  background: radial-gradient(circle at top right, rgba(122, 9, 40, 0.07), transparent 32%), var(--das-offwhite);
}

.das-benefit-visual {
  position: relative;
}

.das-benefit-image {
  overflow: hidden;
  height: 560px;
  border-radius: 120px 32px 120px 32px;
  background: var(--das-beige);
  box-shadow: var(--das-shadow-lg);
}

.das-benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.das-benefit-detail {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--das-shadow-md);
  backdrop-filter: blur(12px);
}

.das-benefit-detail span {
  display: block;
  margin-bottom: 5px;
  color: var(--das-wine);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.das-benefit-detail strong {
  display: block;
  color: var(--das-black);
  font-size: 17px;
  line-height: 1.35;
}

/* SERVIÇOS */

.das-services {
  background: var(--das-white);
}

.das-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.das-service-card {
  position: relative;
  min-height: 330px;
  padding: 30px 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: var(--das-white);
  box-shadow: var(--das-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.das-service-card:hover {
  border-color: rgba(122, 9, 40, 0.34);
  box-shadow: var(--das-shadow-md);
  transform: translateY(-6px);
}

.das-service-card > span {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(122, 9, 40, 0.15);
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.das-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 16px;
  color: var(--das-white);
  background: var(--das-wine);
  font-size: 21px;
}

.das-service-card h3 {
  margin: 0 0 14px;
  color: var(--das-black);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
}

.das-service-card p {
  margin: 0;
  color: var(--das-text);
  font-size: 14px;
  line-height: 1.65;
}

/* SITUAÇÕES */

.das-situations {
  background: var(--das-offwhite);
}

.das-situations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.das-situations-grid article {
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: var(--das-white);
  box-shadow: var(--das-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.das-situations-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--das-shadow-md);
}

.das-situations-grid i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 15px;
  color: var(--das-white);
  background: var(--das-black);
  font-size: 20px;
}

.das-situations-grid h3 {
  margin: 0 0 12px;
  color: var(--das-black);
  font-size: 20px;
  font-weight: 900;
}

.das-situations-grid p {
  margin: 0;
  color: var(--das-text);
  font-size: 14px;
}

/* REURB */

.das-reurb {
  background: linear-gradient(135deg, var(--das-black), #2b2b2b);
  color: var(--das-white);
}

.das-reurb .das-section-content h2,
.das-reurb .das-section-content p {
  color: var(--das-white);
}

.das-reurb .das-eyebrow {
  color: var(--das-gold-soft);
}

.das-reurb .das-eyebrow::before {
  background: var(--das-gold-soft);
}

.das-reurb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.das-reurb-grid article {
  min-height: 310px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: radial-gradient(circle at top right, rgba(122, 9, 40, 0.28), transparent 45%), rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.das-reurb-grid article span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--das-white);
  background: var(--das-wine);
  font-size: 12px;
  font-weight: 900;
}

.das-reurb-grid h3 {
  margin: 0 0 15px;
  color: var(--das-white);
  font-family: "Playfair Display", serif;
  font-size: 31px;
}

.das-reurb-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

/* POR QUE ADVOGADO */

.das-why {
  background: var(--das-white);
}

.das-why-image {
  overflow: hidden;
  height: 570px;
  border-radius: 34px;
  background: var(--das-beige);
  box-shadow: var(--das-shadow-lg);
}

.das-why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.das-check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.das-check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--das-black);
  font-size: 14px;
  font-weight: 800;
}

.das-check-list i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--das-white);
  background: var(--das-wine);
  font-size: 12px;
}

/* PROCESSO */

.das-process {
  background: var(--das-offwhite);
}

.das-timeline {
  position: relative;
  display: grid;
  gap: 22px;
}

.das-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 40px;
  width: 2px;
  background: rgba(122, 9, 40, 0.18);
}

.das-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 64px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: var(--das-white);
  box-shadow: var(--das-shadow-sm);
}

.das-timeline-number {
  color: rgba(122, 9, 40, 0.28);
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
}

.das-timeline-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--das-white);
  background: var(--das-wine);
  font-size: 21px;
}

.das-timeline-item h3 {
  margin: 0 0 7px;
  color: var(--das-black);
  font-size: 20px;
  font-weight: 900;
}

.das-timeline-item p {
  margin: 0;
  color: var(--das-text);
  font-size: 14px;
}

/* DOCUMENTOS */

.das-documents {
  background: var(--das-white);
}

.das-document-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.das-document-list article {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: var(--das-offwhite);
  transition: 0.25s ease;
}

.das-document-list article:hover {
  border-color: rgba(122, 9, 40, 0.32);
  background: var(--das-white);
  box-shadow: var(--das-shadow-sm);
  transform: translateY(-3px);
}

.das-document-list i {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--das-white);
  background: var(--das-wine);
}

.das-document-list span {
  color: var(--das-black);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

/* FAQ */

.das-faq {
  background: var(--das-offwhite);
}

.das-faq-intro {
  position: sticky;
  top: 120px;
}

.das-accordion {
  display: grid;
  gap: 13px;
}

.das-accordion .accordion-item {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px !important;
  background: var(--das-white);
  box-shadow: var(--das-shadow-sm);
}

.das-accordion .accordion-button {
  padding: 20px 22px;
  color: var(--das-black);
  background: var(--das-white);
  font-size: 15px;
  font-weight: 900;
  box-shadow: none;
}

.das-accordion .accordion-button:not(.collapsed) {
  color: var(--das-wine);
  background: #fff9fb;
}

.das-accordion .accordion-button:focus {
  box-shadow: none;
}

.das-accordion .accordion-body {
  padding: 0 22px 22px;
}

.das-accordion .accordion-body p {
  margin: 0;
  color: var(--das-text);
  font-size: 14px;
}

/* CTA FINAL */

.das-final-cta {
  padding: 80px 0;
  background: var(--das-white);
}

.das-final-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 48px;
  border-radius: 32px;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%), linear-gradient(135deg, var(--das-wine), var(--das-black));
  box-shadow: var(--das-shadow-lg);
}

.das-final-cta-box .das-eyebrow {
  color: var(--das-gold-soft);
}

.das-final-cta-box .das-eyebrow::before {
  background: var(--das-gold-soft);
}

.das-final-cta-box h2 {
  max-width: 700px;
  margin: 0 0 14px;
  color: var(--das-white);
  font-family: "Playfair Display", serif;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.12;
}

.das-final-cta-box p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

/* CONTATO */

.das-contact {
  background: var(--das-offwhite);
}

.das-contact-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 32px;
}

.das-contact-list > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: var(--das-white);
  box-shadow: var(--das-shadow-sm);
}

.das-contact-list i {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--das-white);
  background: var(--das-wine);
  font-size: 19px;
}

.das-contact-list strong {
  display: block;
  color: var(--das-black);
  font-size: 14px;
  font-weight: 900;
}

.das-contact-list p {
  margin: 2px 0 0;
  color: var(--das-text);
  font-size: 13px;
}

.das-contact-card {
  padding: 45px;
  border-radius: 32px;
  background: var(--das-white);
  box-shadow: var(--das-shadow-lg);
}

.das-contact-card-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  max-width: 100%;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 18px;
  background: var(--das-offwhite);
}

.das-contact-card-logo img {
  max-height: 95px;
  object-fit: contain;
}

.das-contact-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--das-wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.das-contact-card h3 {
  margin: 0 0 14px;
  color: var(--das-black);
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1.15;
}

.das-contact-card p {
  margin: 0;
  color: var(--das-text);
}

/* FOOTER */

.das-footer {
  padding: 65px 0 0;
  color: rgba(255, 255, 255, 0.75);
  background: var(--das-black);
}

.das-footer-main {
  text-align: center;
}

.das-footer-logo {
  display: inline-flex;
  max-width: 250px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 18px;
  background: var(--das-white);
}

.das-footer-logo img {
  max-height: 105px;
  object-fit: contain;
}

.das-footer-main p {
  max-width: 650px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.76);
}

.das-footer-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.das-footer-info span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.das-footer-notice {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 42px auto 0;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.das-footer-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.das-footer-bottom {
  margin-top: 42px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
}

.das-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

/* WHATSAPP FIXO */

.das-whatsapp-fixed {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.32);
}

.das-whatsapp-fixed:hover {
  color: #fff;
  transform: translateY(-3px);
}

.das-whatsapp-fixed i {
  font-size: 22px;
}

/* ANIMAÇÕES */

@keyframes dasArrowDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }

}

@keyframes dasPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 30px rgba(122, 9, 40, 0.24);
  }

  50% {
    transform: scale(1.035);
    box-shadow: 0 16px 40px rgba(122, 9, 40, 0.34);
  }

}

/* RESPONSIVO */

@media (max-width: 1199.98px) {

  .das-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .das-hero h1 {
    font-size: 56px;
  }

}

@media (max-width: 991.98px) {

  .das-section {
    padding: 80px 0;
  }

  .das-header .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border-radius: 18px;
    background: var(--das-white);
    box-shadow: var(--das-shadow-md);
  }

  .das-btn-header {
    width: 100%;
    margin-top: 10px;
  }

  .das-hero {
    padding: 80px 0;
  }

  .das-hero-visual {
    min-height: auto;
  }

  .das-hero-image {
    height: 560px;
  }

  .das-floating-card-top {
    left: 12px;
  }

  .das-floating-card-bottom {
    right: 12px;
  }

  .das-about-visual {
    margin: 0 auto;
  }

  .das-about-badge {
    right: 18px;
  }

  .das-services-grid,
  .das-situations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .das-reurb-grid {
    grid-template-columns: 1fr;
  }

  .das-faq-intro {
    position: static;
  }

  .das-final-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 767.98px) {

  body {
    font-size: 15px;
  }

  .das-section {
    padding: 65px 0;
  }

  .das-brand img {
    max-height: 58px;
  }

  .das-hero {
    padding: 62px 0 70px;
  }

  .das-hero h1 {
    font-size: 40px;
  }

  .das-hero-subtitle {
    font-size: 17px;
  }

  .das-hero-actions,
  .das-hero-actions .das-btn {
    width: 100%;
  }

  .das-hero-features {
    flex-direction: column;
  }

  .das-hero-features > div {
    width: 100%;
    border-radius: 14px;
  }

  .das-hero-image {
    height: 460px;
    border-width: 5px;
    border-radius: 80px 24px 80px 24px;
  }

  .das-floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    max-width: none;
    margin-top: 12px;
  }

  .das-info-strip-content {
    align-items: flex-start;
  }

  .das-analysis {
    padding: 70px 0;
  }

  .das-analysis-header h2 {
    font-size: 31px;
  }

  .das-analysis-header > p {
    font-size: 15px;
  }

  .das-analysis-points {
    flex-direction: column;
  }

  .das-analysis-points > div,
  .das-start-indicator,
  .das-start-indicator span {
    width: 100%;
  }

  .das-start-indicator span {
    text-align: center;
  }

  .das-form {
    border-radius: 22px;
  }

  .das-form-progress,
  .das-form-content,
  .das-form-actions {
    padding-left: 20px;
    padding-right: 20px;
  }

  .das-form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .das-back,
  .das-submit {
    width: 100%;
  }

  .das-auto-message {
    text-align: center;
  }

  .das-question legend {
    font-size: 24px;
  }

  .das-about-image,
  .das-benefit-image,
  .das-why-image {
    height: 430px;
    border-radius: 24px 70px 24px 70px;
  }

  .das-about-badge {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: 14px;
    border-width: 0;
  }

  .das-services-grid,
  .das-situations-grid,
  .das-document-list {
    grid-template-columns: 1fr;
  }

  .das-service-card {
    min-height: auto;
  }

  .das-reurb-grid article {
    min-height: auto;
    padding: 28px 24px;
  }

  .das-timeline::before {
    display: none;
  }

  .das-timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .das-timeline-number {
    font-size: 34px;
  }

  .das-final-cta {
    padding: 60px 0;
  }

  .das-final-cta-box {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .das-final-cta-box .das-btn {
    width: 100%;
  }

  .das-contact-card {
    padding: 30px 24px;
  }

  .das-contact-card h3 {
    font-size: 27px;
  }

  .das-whatsapp-fixed {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }

}

@media (max-width: 420px) {

  .das-hero h1 {
    font-size: 35px;
  }

  .das-section-content h2,
  .das-analysis-header h2,
  .das-services h2,
  .das-situations h2,
  .das-process h2,
  .das-faq h2,
  .das-contact h2 {
    font-size: 29px;
  }

}

/* =========================================================
   CRÉDITOS - TALISMÃ DIGITAL
========================================================= */

.das-agency-credit {
  padding: 16px 0;
  background: var(--das-white);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.das-agency-credit-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.das-agency-credit-content p {
  margin: 0;
  color: var(--das-text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.das-agency-credit-content p a {
  color: var(--das-black);
  font-weight: 800;
  text-decoration: none;
}

.das-agency-credit-content p a:hover {
  color: var(--das-wine);
}

.das-agency-credit-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.das-agency-credit-logo img {
  width: auto;
  max-height: 30px;
  object-fit: contain;
}


/* MOBILE */

@media (max-width: 575.98px) {

  .das-agency-credit {
    padding: 18px 0;
  }

  .das-agency-credit-content {
    gap: 8px;
  }

  .das-agency-credit-content p {
    width: 100%;
    font-size: 11px;
  }

  .das-agency-credit-logo img {
    max-height: 28px;
  }

}

/* --------------------------------------------------
   Avaliações
-------------------------------------------------- */

.bg-avaliacoes {
  padding: 100px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(79, 155, 198, 0.12),
      transparent 32%
    ),
    var(--cinza-claro);
}

.bg-avaliacoes h2 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.box-avaliacoes-plugin {
  position: relative;
  width: 100%;
  min-height: 200px;
  padding: 32px;
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--border-radius-grande);
  box-shadow: var(--sombra-card);
}

.box-avaliacoes-plugin > *:last-child {
  margin-bottom: 0;
}

.cta-avaliacoes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 38px 42px;
  background:
    linear-gradient(
      135deg,
      var(--azul-escuro) 0%,
      var(--azul-profundo) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-grande);
  box-shadow: var(--sombra-padrao);
}

.conteudo-cta-avaliacoes {
  max-width: 720px;
}

.conteudo-cta-avaliacoes > span {
  display: inline-block;
  margin-bottom: 10px;
  color: #87c8eb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.conteudo-cta-avaliacoes h3 {
  margin-bottom: 12px;
  color: var(--branco);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.conteudo-cta-avaliacoes p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.botao-cta-avaliacoes {
  flex: 0 0 auto;
}

.botao-cta-avaliacoes .btn-padrao {
  white-space: nowrap;
}

@media (max-width: 991px) {

  .bg-avaliacoes {
    padding: 75px 0;
  }

  .cta-avaliacoes {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px;
  }

  .botao-cta-avaliacoes {
    width: 100%;
  }

  .botao-cta-avaliacoes .btn-padrao {
    width: 100%;
  }

}

@media (max-width: 575px) {

  .bg-avaliacoes {
    padding: 60px 0;
  }

  .box-avaliacoes-plugin {
    padding: 20px 14px;
    border-radius: 18px;
  }

  .cta-avaliacoes {
    gap: 24px;
    padding: 28px 22px;
    border-radius: 20px;
  }

  .conteudo-cta-avaliacoes h3 {
    font-size: 1.55rem;
  }

}

/* =====================================================
   AVALIAÇÕES
====================================================== */

.das-reviews {
  background:
    radial-gradient(
      circle at top left,
      rgba(122, 30, 45, 0.08),
      transparent 34%
    ),
    #f8f5f0;
}

.das-reviews-slider {
  position: relative;
}

.das-reviews-slider .splide__track {
  overflow: visible;
}

.das-reviews-slider .splide__slide {
  height: auto;
}

.das-review-card {
  height: 100%;
  min-height: 315px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(45, 32, 28, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(36, 24, 20, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.das-review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 30, 45, 0.18);
  box-shadow: 0 24px 60px rgba(36, 24, 20, 0.12);
}

.das-review-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 22px;
  color: #d8a84f;
  font-size: 15px;
}

.das-review-card p {
  margin-bottom: 26px;
  color: #4f4743;
  font-size: 0.98rem;
  line-height: 1.75;
}

.das-review-author {
  padding-top: 20px;
  border-top: 1px solid rgba(45, 32, 28, 0.08);
}

.das-review-author strong {
  display: block;
  margin-bottom: 4px;
  color: #1f1714;
  font-size: 1rem;
  font-weight: 800;
}

.das-review-author span {
  color: #7a1e2d;
  font-size: 0.82rem;
  font-weight: 700;
}

.das-reviews-slider .splide__arrow {
  width: 46px;
  height: 46px;
  background: #7a1e2d;
  opacity: 1;
  box-shadow: 0 12px 30px rgba(122, 30, 45, 0.22);
}

.das-reviews-slider .splide__arrow svg {
  fill: #ffffff;
  width: 16px;
  height: 16px;
}

.das-reviews-slider .splide__arrow:hover {
  background: #1f1714;
}

.das-reviews-slider .splide__pagination {
  bottom: -38px;
}

.das-reviews-slider .splide__pagination__page {
  width: 9px;
  height: 9px;
  background: rgba(122, 30, 45, 0.28);
  opacity: 1;
}

.das-reviews-slider .splide__pagination__page.is-active {
  background: #7a1e2d;
  transform: scale(1.25);
}

.das-reviews-cta {
  margin-top: 20px;
  padding: 38px;
  background:
    linear-gradient(
      135deg,
      #1f1714 0%,
      #7a1e2d 100%
    );
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(31, 23, 20, 0.18);
}

.das-reviews-cta h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.das-reviews-cta p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

@media (max-width: 991px) {

  .das-review-card {
    min-height: 300px;
    padding: 28px;
  }

  .das-reviews-slider .splide__track {
    overflow: hidden;
  }

}

@media (max-width: 575px) {

  .das-review-card {
    min-height: auto;
    padding: 25px;
    border-radius: 20px;
  }

  .das-reviews-cta {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .das-reviews-slider .splide__arrow {
    display: none;
  }

}