/* =========================
   CRM ADVOGADOS PAGE
========================= */
.crm-advogados-page {
  background: linear-gradient(180deg, #f8f4ff 0%, #f3ecff 100%);
  color: #34105f;
  width: 100%;
  height: 100%;	
  margin: 0;
  padding: 0;	
  overflow: hidden;
}

.crm-advogados-page .container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   SECTION SPACING
========================= */
.crm-hero,
.crm-dashboard-preview,
.crm-about,
.crm-features,
.crm-functionalities,
.crm-dashboard-details,
.crm-benefits,
.crm-ideal-for,
.crm-automation,
.crm-final-cta {
  padding: 90px 0;
}

/* =========================
   HEADINGS
========================= */
.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  text-align: center;
}

.section-heading h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 800;
  color: #4b1f87;
  margin-bottom: 16px;
}

.section-heading p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #6c5a8e;
  max-width: 850px;
  margin: 0 auto;
}

/* =========================
   HERO
========================= */
.crm-hero {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(130, 66, 224, 0.18), transparent 35%),
    radial-gradient(circle at right center, rgba(186, 141, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #f7f1ff 0%, #f3ebff 100%);
  margin-top: -89px;	
}

.hero-main-banner {
	position: relative;
	width: 100%;
}

.hero-main-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.btn-whatsapp {
	position: absolute;
	left: 40%;
	right: auto;
	bottom: 4%;
    padding: 15px 70px;
	font-size: 1.2rem;
	background: #42187e;
	color: white;
}

.btn-whatsapp:hover {
	transition: transform 0.3s;
	color: white;
	background: #d6c4f2;
}

/* =========================
   DASHBOARD PREVIEW
========================= */
.crm-dashboard-preview {
  padding-top: 40px;
}

.crm-dashboard-image {
  margin-top: 34px;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(117, 70, 191, 0.08);
  box-shadow: 0 25px 60px rgba(77, 33, 136, 0.14);
}

.crm-dashboard-image img {
  width: 100%;
  height: auto;
  display: block;
}

.crm-image-note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.95rem;
  color: #8a78a8;
}

/* =========================
   TEXT BLOCKS
========================= */
.crm-about-text {
  max-width: 980px;
  margin: 0 auto;
}

.crm-about-text p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #65567f;
  margin-bottom: 18px;
}

.crm-about-text p:last-child {
  margin-bottom: 0;
}

/* =========================
   FEATURE GRIDS
========================= */
.crm-features-grid,
.crm-details-grid,
.crm-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.crm-feature-card,
.crm-detail-card,
.crm-benefit-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(114, 67, 190, 0.09);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 18px 40px rgba(77, 33, 136, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.crm-feature-card:hover,
.crm-detail-card:hover,
.crm-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgba(77, 33, 136, 0.12);
}

.crm-feature-card h3,
.crm-detail-card h3,
.crm-benefit-card h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 800;
  color: #4c1e8a;
  margin-bottom: 12px;
}

.crm-feature-card p,
.crm-detail-card p,
.crm-benefit-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: #6a5c84;
  margin: 0;
}

/* =========================
   FUNCTIONALITIES
========================= */
.crm-functionalities {
  background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.6) 100%);
}

.crm-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(114, 67, 190, 0.08);
  border-radius: 28px;
  padding: 34px 34px;
  box-shadow: 0 18px 42px rgba(77, 33, 136, 0.08);
}

.crm-list-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.crm-list-grid li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #604f7d;
}

.crm-list-grid li:last-child {
  margin-bottom: 0;
}

.crm-list-grid li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6f36cd 0%, #aa79ff 100%);
  box-shadow: 0 0 0 6px rgba(111, 54, 205, 0.08);
}

/* =========================
   IDEAL FOR
========================= */
.crm-ideal-box {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(114, 67, 190, 0.08);
  border-radius: 28px;
  padding: 36px 34px;
  box-shadow: 0 18px 42px rgba(77, 33, 136, 0.08);
  text-align: center;
}

.crm-ideal-box p {
  font-size: 1.08rem;
  color: #65567f;
  line-height: 1.8;
  margin-bottom: 24px;
}

.crm-ideal-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.crm-ideal-box li {
  font-size: 1rem;
  line-height: 1.7;
  color: #5c4a7c;
  margin-bottom: 14px;
}

.crm-ideal-box li:last-child {
  margin-bottom: 0;
}

/* =========================
   FINAL CTA
========================= */
.crm-final-cta {
  padding-bottom: 110px;
}

.crm-final-box {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(192, 159, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #4c1b8c 0%, #6e33cd 55%, #8c58eb 100%);
  border-radius: 34px;
  padding: 78px 42px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 35px 65px rgba(72, 24, 136, 0.22);
}

.crm-final-box h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 800;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto 18px;
}

.crm-final-box p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  max-width: 820px;
  margin: 0 auto;
}

.crm-final-box .crm-hero-actions {
  margin-top: 28px;
}

.crm-final-box .btn-whatsapp {
  background: #ffffff;
  color: #5b22b6;
  box-shadow: 0 18px 38px rgba(27, 10, 58, 0.18);
}

.crm-final-box .btn-whatsapp:hover {
  background: #f8f2ff;
}

.crm-final-box .btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.crm-final-box .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}


@media (max-width: 767px) {
	.crm-hero,
	.crm-dashboard-preview,
	.crm-about,
	.crm-features,
	.crm-functionalities,
	.crm-dashboard-details,
	.crm-benefits,
	.crm-ideal-for,
	.crm-automation,
	.crm-final-cta {
		position: relative;  
		padding: 65px 0;
	}

	.hero-main-banner {
		position: relative;
		width: 100%;
		margin-top: 1rem;
	}
	
	.crm-hero {
		position: relative;
	}
	
	.hero-main-banner .btn-whatsapp {
		position: absolute;
		left: 20%;
		right: 20%;
		padding: 0 30px;
		font-size: 1rem;
		bottom: -5.5rem;
	}
	
	.crm-hero-actions {
		position: relative;
	}
	
	.crm-hero-actions .btn-whatsapp {
		background: #d6c4f2;
		left: 0;
		right: 0;
		width: 14rem;
		font-size: .89rem;
		bottom: -1.5rem;
		padding: 0;
		margin: 0 auto;
	}

	.crm-hero p,
	.section-heading p,
	.crm-about-text p,
	.crm-final-box p,
	.crm-ideal-box p {
		font-size: 1rem;
		line-height: 1.8;
	}

	.section-heading h2,
	.crm-final-box h2 {
		font-size: 1.7rem;
	}

	.crm-features-grid,
	.crm-details-grid,
	.crm-benefits-grid,
	.crm-list-grid {
		grid-template-columns: 1fr;
	}

	.crm-feature-card,
	.crm-detail-card,
	.crm-benefit-card {
		padding: 24px 20px;
		border-radius: 20px;
	}

	.crm-list-grid,
	.crm-ideal-box,
	.crm-final-box {
		padding: 28px 20px;
		border-radius: 24px;
	}

	.crm-dashboard-image {
		border-radius: 20px;
	}

	.crm-image-note {
		font-size: 0.9rem;
		line-height: 1.6;
	}
}
