:root {
  --primary: #063b74;
  --primary-dark: #03244a;
  --blue: #0d6efd;
  --blue-light: #eaf4ff;
  --cyan: #00aeef;
  --whatsapp: #25d366;
  --whatsapp-dark: #1fb85a;
  --white: #ffffff;
  --dark: #102033;
  --text: #5b677a;
  --muted: #f4f8fc;
  --border: #e6edf5;

  --font-title: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  --shadow: 0 18px 45px rgba(16, 32, 51, 0.12);
  --shadow-soft: 0 10px 30px rgba(16, 32, 51, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  color: var(--dark);
  font-weight: 800;
}

.section {
  padding: 70px 0;
}

.bg-light-custom {
  background: var(--muted);
}

/* HEADER */

.navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(16, 32, 51, 0.08);
  padding: 14px 0;
}

.logo-img {
  width: 75px;
  height: auto;
  object-fit: contain;
}

.logo-img:not([src]),
.logo-img[src=""],
.logo-img {
  font-size: 0;
}

.brand-text {
  font-family: var(--font-title);
  font-weight: 800;
  color: var(--primary);
  font-size: 1.05rem;
}

.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 10px !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--blue);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-lg {
  padding: 13px 24px;
  font-size: 0.95rem;
}

.btn-whatsapp {
  background: var(--whatsapp);
  border: 2px solid var(--whatsapp);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  color: var(--white);
}

.btn-primary-custom {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  box-shadow: 0 10px 22px rgba(13, 110, 253, 0.22);
}

.btn-primary-custom:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-sm-header {
  padding: 10px 18px;
  font-size: 0.88rem;
}

/* HERO */

.hero-section {
  position: relative;
  min-height: 640px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 26%,
      rgba(255, 255, 255, 0.76) 43%,
      rgba(255, 255, 255, 0.28) 63%,
      rgba(255, 255, 255, 0) 100%
    ),
    url("../img/hero/hero-bg.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: visible;
  padding-top: 130px;
  padding-bottom: 70px;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-row {
  min-height: 390px;
}

.hero-text-column {
  position: relative;
  z-index: 4;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234, 244, 255, 0.95);
  color: var(--primary);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 18px;
  max-width: fit-content;
}

.hero-badge i {
  color: var(--blue);
}

.hero-section h1 {
  color: var(--dark);
  font-size: clamp(2.05rem, 3.55vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -1px;
  max-width: 570px;
  margin-bottom: 18px;
}

.hero-section h1 span {
  color: var(--blue);
}

.hero-text {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text);
  max-width: 500px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}

.hero-benefits-bar {
  position: relative;
  z-index: 10;
  transform: translateY(55%);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(16, 32, 51, 0.13);
  border: 1px solid var(--border);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.hero-benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.22);
}

.hero-benefit-icon.green {
  background: linear-gradient(135deg, #25d366, #1fb85a);
}

.hero-benefit-item strong {
  display: block;
  color: var(--dark);
  font-family: var(--font-title);
  font-size: 0.88rem;
  line-height: 1.2;
}

.hero-benefit-item span {
  display: block;
  color: var(--text);
  font-size: 0.76rem;
  line-height: 1.2;
}

/* BENEFÍCIOS */

.benefits-section {
  margin-top: 0;
  position: relative;
  z-index: 4;
  padding-top: 90px;
  padding-bottom: 85px;
  background: #ffffff;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  height: 100%;
  min-height: 260px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: 0.25s;
}

.benefit-card:hover {
  transform: translateY(-6px);
}

.icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 18px;
  box-shadow: 0 12px 25px rgba(13, 110, 253, 0.22);
}

.benefit-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.benefit-card p {
  margin: 0;
  line-height: 1.65;
}

/* TÍTULOS */

.section-tag {
  display: inline-flex;
  align-items: center;
  background: var(--blue-light);
  color: var(--blue);
  padding: 8px 15px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.86rem;
  margin-bottom: 14px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
}

.section-heading h2,
.about-preview h2,
.highlight-box h2,
.final-cta h2 {
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.7px;
}

.section-heading p {
  font-size: 1rem;
  line-height: 1.65;
}

/* SOBRE */

.about-preview {
  position: relative;
  min-height: 560px;
  padding-top: 105px;
  padding-bottom: 95px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.98) 25%,
      rgba(255, 255, 255, 0.88) 43%,
      rgba(255, 255, 255, 0.48) 62%,
      rgba(255, 255, 255, 0.12) 82%,
      rgba(255, 255, 255, 0.02) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 70%,
      rgba(255, 255, 255, 1) 100%
    ),
    url("../img/sobre/dono-mt-costas.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
}

.about-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 50%,
      rgba(13, 110, 253, 0.08),
      transparent 32%
    ),
    radial-gradient(
      circle at 78% 32%,
      rgba(0, 174, 239, 0.10),
      transparent 28%
    );
  pointer-events: none;
  z-index: 1;
}

.about-hero-card {
  position: relative;
  z-index: 2;
  min-height: 360px;
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.about-hero-content {
  max-width: 610px;
  padding: 20px 0;
}

.about-hero-content .section-tag {
  background: rgba(234, 244, 255, 0.96);
  color: var(--blue);
  box-shadow: 0 10px 26px rgba(13, 110, 253, 0.08);
}

.about-hero-content h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 590px;
}

.about-hero-content p {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 18px;
}

.about-hero-content .btn {
  margin-top: 12px;
}
/* HIGIENE E BEM-ESTAR */

.health-section {
  background: #ffffff;
  padding-top: 40px;
}

.health-section h2 {
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.7px;
}

.health-section p {
  font-size: 1rem;
  line-height: 1.75;
}

.health-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.health-card {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px 20px;
  height: 100%;
  box-shadow: var(--shadow-soft);
}

.health-card i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.health-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.health-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* SERVIÇOS */

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--blue-light), #ffffff);
}

.service-card-body {
  padding: 22px;
}

.service-card-body h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.link-more {
  color: var(--blue);
  font-weight: 800;
}

.link-more:hover {
  color: var(--primary);
}

.service-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.service-whatsapp {
  color: var(--whatsapp);
  font-weight: 800;
  white-space: nowrap;
}

.service-whatsapp:hover {
  color: var(--whatsapp-dark);
}

/* ANTES E DEPOIS */

.results-section {
  background: #ffffff;
  position: relative;
}

.result-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
  height: 100%;
  position: relative;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.result-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 330px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--muted);
}

.result-image {
  position: relative;
  overflow: hidden;
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-image:first-child img {
  object-position: center;
}

.result-image:last-child img {
  object-position: center;
}

.label-before,
.label-after {
  position: absolute;
  top: 14px;
  z-index: 3;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(16, 32, 51, 0.18);
}

.label-before {
  left: 14px;
  background: var(--primary);
}

.label-after {
  right: 14px;
  background: var(--whatsapp);
}

.result-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #ffffff;
  transform: translateX(-50%);
  z-index: 4;
  box-shadow: 0 0 20px rgba(16, 32, 51, 0.16);
}

.result-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  background: #ffffff;
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  font-size: 1.1rem;
}

.result-icon {
  width: 58px;
  height: 58px;
  background: #ffffff;
  color: var(--blue);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin: -29px auto 0;
  position: relative;
  z-index: 5;
}

.result-content {
  text-align: center;
  padding: 18px 16px 14px;
}

.result-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.result-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.results-actions {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
/* DESTAQUE */

.highlight-box {
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 174, 239, 0.35), transparent 28%),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 34px;
  padding: clamp(35px, 6vw, 70px);
  box-shadow: var(--shadow);
}

.highlight-box h2 {
  color: var(--white);
}

.highlight-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.highlight-list {
  display: grid;
  gap: 14px;
}

.highlight-list div {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 15px 17px;
  border-radius: 16px;
  font-weight: 800;
}

.highlight-list i {
  color: var(--cyan);
  margin-right: 8px;
}

/* PROCESSO */

.process-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  height: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.process-card span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.process-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.process-card p {
  margin: 0;
  line-height: 1.65;
}

/* CTA */

.final-cta {
  background: var(--muted);
}

.final-cta-box {
  background:
    radial-gradient(circle at 90% 20%, rgba(0, 174, 239, 0.18), transparent 25%),
    var(--white);
  border-radius: 34px;
  padding: clamp(35px, 6vw, 70px);
  box-shadow: var(--shadow);
  max-width: 980px;
  margin: 0 auto;
}

.final-cta-box p {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
  line-height: 1.8;
}

/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 999;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.35);
  transition: 0.25s;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  color: var(--white);
  background: var(--whatsapp-dark);
}
/* PÁGINAS INTERNAS */

.page-hero {
  padding: 150px 0 85px;
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 174, 239, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 55%, #e8f5ff 100%);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -1px;
  max-width: 760px;
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 720px;
  margin: 0;
}

.about-page-section h2 {
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.7px;
  margin-bottom: 18px;
}

.about-page-section p {
  font-size: 1rem;
  line-height: 1.75;
}

.about-page-card {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 18px;
}

.about-page-item {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 10px 25px rgba(16, 32, 51, 0.06);
}

.about-page-item i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.about-page-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.about-page-item p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
}

/* PÁGINA SERVIÇOS PREMIUM */

.services-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 174, 239, 0.22), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 52%, #e5f4ff 100%);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.services-premium-section {
  background: #ffffff;
}

.services-premium-grid {
  display: grid;
  gap: 34px;
}

.service-premium-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 360px;
  transition: 0.25s ease;
}

.service-premium-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-premium-card.reverse .service-premium-image {
  order: 2;
}

.service-premium-card.featured {
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 174, 239, 0.12), transparent 26%),
    #ffffff;
}

.service-premium-image {
  height: 100%;
  min-height: 360px;
  background: var(--blue-light);
}

.service-premium-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-premium-content {
  padding: clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-label {
  display: inline-flex;
  width: fit-content;
  background: var(--blue-light);
  color: var(--blue);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.service-premium-content h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.service-premium-content p {
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.service-benefits i {
  color: var(--whatsapp);
}

.service-premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wellness-section {
  background: #ffffff;
}

.wellness-box {
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 174, 239, 0.28), transparent 26%),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 34px;
  padding: clamp(34px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.wellness-box h2 {
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.wellness-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0;
}

.wellness-list {
  display: grid;
  gap: 16px;
}

.wellness-list div {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 20px;
}

.wellness-list i {
  color: var(--cyan);
  font-size: 1.45rem;
  margin-bottom: 10px;
  display: block;
}

.wellness-list strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-title);
  margin-bottom: 6px;
}

.wellness-list span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}
/* HERO COM VÍDEO - IMPERMEABILIZAÇÃO */

.hero-video-layout {
  padding: 145px 0 90px;
}

.hero-video-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: var(--primary-dark);
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 110, 253, 0.12);
}

.hero-video-card video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(3, 36, 74, 0) 55%,
      rgba(3, 36, 74, 0.45) 100%
    );
  z-index: 1;
}

.hero-video-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.18);
}

.hero-video-badge i {
  color: var(--blue);
}
/* HERO IMPERMEABILIZAÇÃO COM VÍDEO HORIZONTAL EM DEGRADÊ */

.impermeabilizacao-hero-side {
  position: relative;
  overflow: hidden;
  padding: 150px 0 95px;
  background:
    radial-gradient(circle at 85% 20%, rgba(37, 211, 102, 0.13), transparent 28%),
    radial-gradient(circle at 15% 75%, rgba(0, 174, 239, 0.12), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f5fbff 58%, #ecf8ff 100%);
}

.impermeabilizacao-hero-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.98) 42%,
      rgba(255, 255, 255, 0.78) 62%,
      rgba(255, 255, 255, 0.18) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.impermeabilizacao-hero-side .container {
  position: relative;
  z-index: 2;
}

.impermeabilizacao-hero-side h1 {
  max-width: 680px;
}

.impermeabilizacao-hero-side p {
  max-width: 650px;
}

.hero-side-video-card {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  border-radius: 34px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 110, 253, 0.12);
}

.hero-side-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(245, 251, 255, 0.45) 0%,
      rgba(245, 251, 255, 0.18) 22%,
      rgba(245, 251, 255, 0) 52%
    );
}

.hero-side-video-card video {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  background: #000;
}

.hero-side-video-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.16);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.hero-side-video-label i {
  color: var(--blue);
  font-size: 1.2rem;
}

.hero-video-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary);
  border: 1px solid rgba(13, 110, 253, 0.12);
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.10);
}

.hero-video-proof i {
  color: var(--blue);
}
/* AJUSTE IMAGEM SEÇÃO O QUE É IMPERMEABILIZAÇÃO */

.service-detail-section {
  background: #ffffff;
  position: relative;
}

.service-detail-image {
  position: relative;
  height: 440px;
  border-radius: 34px;
  overflow: hidden;
  background: var(--blue-light);
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 110, 253, 0.12);
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-detail-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 36, 74, 0) 48%,
      rgba(3, 36, 74, 0.42) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.service-detail-image::after {
  content: "Proteção aplicada no tecido";
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.16);
  backdrop-filter: blur(10px);
}
/* CARROSSEL DE BENEFÍCIOS - IMPERMEABILIZAÇÃO */

.benefits-carousel-section {
  overflow: hidden;
}

.benefits-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(25% - 18px);
  gap: 24px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(13, 110, 253, 0.35) transparent;
}

.benefits-carousel::-webkit-scrollbar {
  height: 8px;
}

.benefits-carousel::-webkit-scrollbar-track {
  background: transparent;
}

.benefits-carousel::-webkit-scrollbar-thumb {
  background: rgba(13, 110, 253, 0.28);
  border-radius: 999px;
}

.benefit-slide {
  scroll-snap-align: start;
}

.benefit-premium-card {
  position: relative;
  height: 100%;
  min-height: 285px;
  background:
    radial-gradient(circle at 85% 10%, rgba(0, 174, 239, 0.12), transparent 28%),
    #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px 24px;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.benefit-premium-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.benefit-premium-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 20px;
  box-shadow: 0 12px 25px rgba(13, 110, 253, 0.22);
}

.benefit-premium-card h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.benefit-premium-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.benefits-carousel-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.86rem;
}
/* PÁGINA TAPETES E CARPETES */

.tapetes-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 95px;
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 174, 239, 0.16), transparent 28%),
    radial-gradient(circle at 15% 75%, rgba(13, 110, 253, 0.10), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f5fbff 58%, #ecf8ff 100%);
}

.tapetes-hero h1 {
  max-width: 680px;
}

.tapetes-hero p {
  max-width: 650px;
}

.tapetes-hero-image {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: var(--blue-light);
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 110, 253, 0.12);
  height: 430px;
}

.tapetes-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tapetes-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 36, 74, 0) 48%,
      rgba(3, 36, 74, 0.45) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.tapetes-hero-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.16);
  backdrop-filter: blur(10px);
}

.tapetes-hero-badge i {
  color: var(--blue);
}

.tapetes-types-section {
  background: #ffffff;
}
/* RESULTADOS REAIS - TAPETES E CARPETES */

.carpet-results-section {
  background: #ffffff;
}

.carpet-result-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: 0.25s ease;
}

.carpet-result-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.carpet-result-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
  background: var(--blue-light);
}

.carpet-result-content {
  padding: 26px 24px;
}

.carpet-result-content span {
  display: inline-flex;
  background: var(--blue-light);
  color: var(--blue);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.carpet-result-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.carpet-result-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}
/* PÁGINA ANTES E DEPOIS */

.before-after-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 174, 239, 0.18), transparent 28%),
    radial-gradient(circle at 15% 75%, rgba(37, 211, 102, 0.10), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f5fbff 58%, #ecf8ff 100%);
}

.before-after-page {
  background: #ffffff;
}

.before-after-page .result-card {
  height: 100%;
}

.before-after-page .result-images {
  height: 340px;
}

/* PÁGINA ANTES E DEPOIS */

.before-after-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 174, 239, 0.18), transparent 28%),
    radial-gradient(circle at 15% 75%, rgba(37, 211, 102, 0.10), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f5fbff 58%, #ecf8ff 100%);
}

.before-after-page {
  background: #ffffff;
}

.before-after-page .result-card {
  height: 100%;
}

.before-after-page .result-images {
  height: 340px;
}
/* FORÇAR CARROSSEL HORIZONTAL - ANTES E DEPOIS */

.before-after-carousel-section {
  background: #ffffff;
  overflow: hidden;
}

.before-after-carousel {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.before-after-slide {
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  scroll-snap-align: start;
}

.before-after-slide .result-card,
.before-after-slide .carpet-result-card {
  width: 100%;
  height: 100%;
}

.before-after-slide .result-images {
  height: 280px;
}

.before-after-slide .carpet-result-card img {
  height: 280px;
  object-fit: cover;
}

.before-after-carousel::-webkit-scrollbar {
  height: 8px;
}

.before-after-carousel::-webkit-scrollbar-track {
  background: transparent;
}

.before-after-carousel::-webkit-scrollbar-thumb {
  background: rgba(13, 110, 253, 0.28);
  border-radius: 999px;
}

.carousel-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.86rem;
  margin-top: 8px;
}

/* FOOTER */

.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 25px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin: 0;
}

.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-contact i {
  color: var(--cyan);
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}
.developer-credit {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.developer-credit a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan);
  font-weight: 700;
}

.developer-credit a:hover {
  color: #ffffff;
}

.developer-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 50%;
}
/* AJUSTE FOOTER CONTATO */

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
  word-break: break-word;
}

.footer-contact li i {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact a {
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}
/* FORÇAR CARROSSEL HORIZONTAL - ANTES E DEPOIS */

.before-after-carousel-section {
  background: #ffffff;
  overflow: hidden;
}

.before-after-carousel {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.before-after-slide {
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  scroll-snap-align: start;
}

.before-after-slide .result-card,
.before-after-slide .carpet-result-card {
  width: 100%;
  height: 100%;
}

.before-after-slide .result-images {
  height: 280px;
}

.before-after-slide .carpet-result-card img {
  height: 280px;
  object-fit: cover;
}

.carousel-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.86rem;
  margin-top: 8px;
}
/* PÁGINA CONTATO */

.contact-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(37, 211, 102, 0.13), transparent 28%),
    radial-gradient(circle at 15% 75%, rgba(0, 174, 239, 0.14), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f5fbff 58%, #ecf8ff 100%);
}

.contact-section {
  background: #ffffff;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 32px 26px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 20px;
  box-shadow: 0 12px 25px rgba(13, 110, 253, 0.22);
}

.contact-icon.whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.25);
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  word-break: break-word;
}

.contact-link:hover {
  color: var(--primary);
}

.contact-link.disabled {
  color: var(--text);
  cursor: default;
}
/* AJUSTE MENU DESKTOP CENTRALIZADO */

@media (min-width: 992px) {
  .navbar .container {
    position: relative;
  }

  .navbar-brand {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .navbar-collapse {
    justify-content: center;
  }

  .navbar-nav {
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
    width: 100%;
    padding-left: 120px;
    padding-right: 210px;
  }

  .navbar-nav .nav-item.ms-lg-3 {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0 !important;
  }
}
/* =========================================
   SEÇÃO GLOBAL: AVALIAÇÕES DO GOOGLE
========================================= */
.google-reviews-section {
  background-color: #f9fbfd; /* Fundo off-white para destacar os cards brancos */
  padding: 90px 0;
  overflow: hidden;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(6, 45, 91, 0.08);
  box-shadow: 0 6px 16px rgba(2, 21, 52, 0.04);
  color: var(--color-primary-dark, #021534);
  font-weight: 700;
  font-size: 0.85rem;
}

.google-badge i {
  color: #EA4335; /* Vermelho icônico do Google */
  font-size: 1.1rem;
}

.reviews-header h2 {
  color: var(--color-primary-dark, #021534);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.rating-summary .score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary-dark, #021534);
  line-height: 1;
}

.rating-summary .stars {
  color: #FFBC00; /* Amarelo ouro das estrelas do Google */
  font-size: 1.35rem;
  letter-spacing: 2px;
}

.rating-summary .total-reviews {
  color: var(--color-text-body, #526176);
  font-size: 0.95rem;
  margin-top: 4px;
  font-weight: 500;
}

/* =========================================
   CARDS DE AVALIAÇÃO
========================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 20px 0;
}

.review-card {
  background: #ffffff;
  border: 1px solid rgba(6, 45, 91, 0.06);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 14px 35px rgba(2, 21, 52, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(2, 21, 52, 0.08);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
}

/* Letras iniciais (Avatares falsos de alto padrão) */
.review-author .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}
.bg-primary-soft { background: var(--color-primary, #062d5b); }
.bg-accent-soft { background: var(--color-accent-blue, #1683e8); }
.bg-blue-soft { background: #58b5ff; }

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  color: var(--color-primary-dark, #021534);
  font-size: 1.05rem;
  line-height: 1.2;
}

.author-info span {
  color: #8c98a9;
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Logo do Google no canto do Card */
.google-icon-small {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #4285F4;
  font-size: 1.35rem;
  opacity: 0.8;
}

.review-stars {
  color: #FFBC00;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 1.5px;
}

.review-text {
  color: var(--color-text-body, #526176);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

/* =========================================
   CARROSSEL NATIVO (Mobile)
========================================= */
@media (max-width: 991.98px) {
  .google-reviews-section {
    padding: 70px 0;
  }

  /* Cria o contêiner de rolagem lateral */
  .reviews-wrapper-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    /* Expande o grid para além das margens do container no celular */
    margin-left: -16px;
    padding-left: 16px;
    padding-right: 16px;
    width: calc(100% + 32px);
    padding-bottom: 20px;
  }

  .reviews-wrapper-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
  }

  .reviews-grid {
    display: flex;
    gap: 16px;
    width: max-content; /* Permite que os cards fiquem em linha */
    padding: 10px 0;
  }

  .review-card {
    width: 310px; /* Largura ideal para caber na tela do celular e mostrar um pedaço do próximo */
    scroll-snap-align: center; /* Trava o card no centro ao deslizar */
    flex-shrink: 0;
  }
}
/* =========================================
   CARDS DE ANTES E DEPOIS (DESIGN PREMIUM)
========================================= */
.results-section {
  background-color: #f9fbfd;
  padding: 100px 0;
}

.result-card {
  background: #ffffff;
  border: 1px solid rgba(6, 45, 91, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(2, 21, 52, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(2, 21, 52, 0.08);
}

/* =========================================
   LÓGICA DO SLIDER INTERATIVO
========================================= */
.before-after-compare {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* Mantém as imagens padronizadas */
  overflow: hidden;
  cursor: ew-resize; /* Cursor de arrastar lateralmente */
  --pos: 50%; /* Variável que o JS vai controlar */
}

/* Evita que a imagem seja "puxada" nativamente pelo navegador */
.before-after-compare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none; 
}

/* Camada Inferior (Imagem do ANTES) */
.before-after-compare .result-image:nth-child(1) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Camada Superior (Imagem do DEPOIS) - Ela é "cortada" pela variável --pos */
.before-after-compare .result-image:nth-child(2) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  clip-path: polygon(var(--pos) 0, 100% 0, 100% 100%, var(--pos) 100%);
}

/* A Linha Divisória */
.result-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 4px;
  background-color: #ffffff;
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none; /* Deixa o contêiner pai gerenciar o clique */
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

/* O Botão redondo com as setinhas */
.result-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1683e8;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}

.before-after-compare:hover .result-divider span {
  transform: translate(-50%, -50%) scale(1.1); /* Efeito de convite ao clique */
}

/* =========================================
   TAGS FLUTUANTES (Antes / Depois)
========================================= */
.label-before, 
.label-after {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  background: rgba(2, 21, 52, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 4;
  pointer-events: none;
}

.label-before { left: 16px; }
.label-after { right: 16px; }

/* =========================================
   TEXTOS E ÍCONES DO CARD
========================================= */
.result-content {
  padding: 40px 24px 28px 24px;
  position: relative;
  flex-grow: 1;
}

.result-icon {
  position: absolute;
  top: -24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #062d5b, #1683e8);
  color: #ffffff;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  box-shadow: 0 10px 20px rgba(22, 131, 232, 0.25);
  z-index: 5;
}

.result-content h3 {
  color: #021534;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.result-content p {
  color: #526176;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.results-actions {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
/* =========================================
   REMOÇÃO DO FUNDO BRANCO APÓS O HERO (HOME)
========================================= */

/* Aplica o fundo azul escuro corporativo na seção logo abaixo do hero */
.highlights-section, 
.features-section,
.index-features {
  background: linear-gradient(180deg, #021328 0%, #041832 100%) !important;
  padding-top: 50px !important;
  padding-bottom: 90px !important;
}

/* Transforma os cartões brancos em cartões escuros translúcidos elegantes */
.highlights-section .feature-card,
.highlights-section .card,
.features-section .card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

/* Ajusta o título dos cards para branco */
.highlights-section .feature-card h3,
.highlights-section .card h3,
.features-section h3 {
  color: #ffffff !important;
}

/* Ajusta o texto descritivo dos cards para um tom claro legível */
.highlights-section .feature-card p,
.highlights-section .card p,
.features-section p {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Ícones dos cards com destaque em azul suave */
.highlights-section .feature-icon,
.features-section .icon {
  background: rgba(22, 131, 232, 0.25) !important;
  color: #58b5ff !important;
  border: 1px solid rgba(72, 186, 255, 0.35);
}