/* ============================================
   NACIONAL ASSISTEM — ESTILOS PRINCIPAIS
   Cores: Dourado (primário) / Verde-petróleo (apoio)
   ============================================ */

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

:root {
  /* Dourado / Âmbar — COR PRIMÁRIA */
  --gold-700: #b8860b;
  --gold-600: #d4a017;
  --gold-500: #f5b800;
  --gold-400: #ffc928;
  --gold-300: #ffd54f;
  --gold-100: #fff9e6;
  --gold-50: #fffcf0;

  /* Verde-petróleo / Grafite — COR DE APOIO */
  --teal-900: #0a2e2e;
  --teal-800: #0f3d3d;
  --teal-700: #145252;
  --teal-600: #1a6b6b;
  --teal-500: #208080;
  --teal-100: #d4eded;
  --teal-50: #edf8f8;

  /* Neutros */
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-500: #757575;
  --gray-600: #616161;
  --gray-700: #424242;
  --gray-800: #2d2d2d;
  --gray-900: #1a1a1a;

  /* Tipografia */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamentos 4K-friendly */
  --section-py: clamp(4rem, 8vw, 8rem);
  --container-px: clamp(1.5rem, 4vw, 3rem);
  --container-max: 1320px;

  /* Transições */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.text-accent {
  color: var(--gold-500);
}

/* --- SKIP LINK (Acessibilidade) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--teal-700);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* --- BOTÕES --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}

.btn:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--gold-500);
  color: var(--gray-900);
  border-color: var(--gold-500);
  box-shadow: 0 4px 20px rgba(245, 184, 0, 0.25);
}

.btn--primary:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  box-shadow: 0 6px 28px rgba(245, 184, 0, 0.35);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--teal-700);
  border-color: var(--teal-700);
}

.btn--outline-dark:hover {
  background: var(--teal-700);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
}

.btn--full {
  width: 100%;
}

.btn--funeral {
  background: var(--gold-500);
  color: var(--gray-900);
  border-color: var(--gold-500);
}

.btn--funeral:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header--scrolled {
  background: rgba(14, 82, 82, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 184, 0, 0.3);
}

.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(64px, 6vw, 80px);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
  transition: var(--transition);
}

.header--scrolled .header__logo {
  color: var(--white);
}

.header__logo-icon {
  font-size: 1.6rem;
  color: var(--gold-400);
}

.header__logo-img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 8px;
  transition: var(--transition);
}

.header__logo-text {
  display: flex;
  flex-direction: row;
  gap: 0.35rem;
  align-items: baseline;
}

.header__logo-text strong {
  color: var(--gold-400);
  transition: var(--transition);
}

.header--scrolled .header__logo-text strong {
  color: var(--gold-300);
}

.header__nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
}

.header__nav a {
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  position: relative;
  padding: 0.3rem 0;
}

.header--scrolled .header__nav a {
  color: rgba(255, 255, 255, 0.85);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: var(--transition);
}

.header__nav a:hover {
  color: var(--gold-400);
}

.header--scrolled .header__nav a:hover {
  color: var(--gold-300);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-500);
  color: var(--gray-900);
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  transition: var(--transition);
}

.header__cta:hover {
  background: var(--teal-800);
  transform: translateY(-1px);
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__menu-btn span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.header--scrolled .header__menu-btn span {
  background: var(--white);
}

.header__menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.header__menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(10, 46, 46, 0.6) 0%, transparent 15%),
    linear-gradient(135deg, rgba(10, 46, 46, 0.85) 0%, rgba(15, 61, 61, 0.75) 40%, rgba(20, 82, 82, 0.6) 70%, rgba(26, 107, 107, 0.5) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(6rem, 12vw, 10rem) var(--container-px) var(--section-py);
  color: var(--white);
}

.hero__tag {
  display: inline-block;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 213, 79, 0.3);
  border-radius: 50px;
  background: rgba(255, 213, 79, 0.08);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  font-size: clamp(0.78rem, 0.85vw, 0.9rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.badge::first-letter {
  color: var(--gold-400);
}

/* --- SEÇÃO SOBRE --- */
.about {
  padding: var(--section-py) 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about__tag {
  display: inline-block;
  font-size: clamp(0.75rem, 0.8vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--teal-100);
  border-radius: 50px;
  background: var(--teal-50);
}

.about__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--gray-900);
}

.about__desc {
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about__stats {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.about__stat {
  display: flex;
  flex-direction: column;
}

.about__stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--gold-600);
}

.about__stat-label {
  font-size: clamp(0.8rem, 0.85vw, 0.9rem);
  color: var(--gray-500);
  font-weight: 500;
}

.about__visual {
  position: relative;
}

.about__img {
  width: 100%;
  height: clamp(300px, 30vw, 450px);
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.about__visual::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--gold-400);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.4;
}

/* --- SECTION TAG --- */
.section-tag {
  display: inline-block;
  font-size: clamp(0.75rem, 0.8vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--teal-100);
  border-radius: 50px;
  background: var(--teal-50);
}

/* --- STATS / NÚMEROS --- */
.stats {
  background: var(--teal-800);
  padding: clamp(2.5rem, 4vw, 4rem) 0;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--teal-500), var(--gold-500));
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: 12px;
  transition: var(--transition);
}

.stats__item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.stats__num {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--gold-400);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stats__label {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* --- SEÇÃO DE VÍDEO --- */
.video-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.video-section__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.video-section__wrapper {
  max-width: 900px;
  margin: 0 auto clamp(2rem, 3vw, 2.5rem);
}

.video-section__player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  background: var(--gray-900);
}

.video-section__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.video-section__cta {
  text-align: center;
}

/* --- BENEFÍCIOS --- */
.benefits {
  padding: var(--section-py) 0;
  background: var(--white);
}

.benefits__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2vw, 2rem);
}

.benefit-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--gold-300);
}

.benefit-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.6rem;
}

.benefit-card__desc {
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- FAIXA DE CONFIANÇA --- */
.trust {
  background: var(--teal-800);
  padding: clamp(2rem, 3vw, 3rem) 0;
  position: relative;
}

.trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--teal-500), var(--gold-500));
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  text-align: center;
}

.trust__item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.trust__number {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust__label {
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* --- SEÇÕES DE PRODUTO --- */
.product {
  padding: var(--section-py) 0;
}

.product--odonto {
  background: var(--white);
}

.product--tele {
  background: var(--teal-50);
}

.product--funeral {
  background: var(--teal-800);
  color: var(--white);
}

.product--funeral .product__desc,
.product--funeral .product__features li {
  color: rgba(255, 255, 255, 0.85);
}

.product--funeral .product__tag {
  border-color: rgba(255, 213, 79, 0.3);
  color: var(--gold-400);
}

.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.product__grid--reverse {
  direction: rtl;
}

.product__grid--reverse > * {
  direction: ltr;
}

.product__tag {
  display: inline-block;
  font-size: clamp(0.75rem, 0.8vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--teal-100);
  border-radius: 50px;
  background: var(--teal-50);
}

.product__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.product__desc {
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.product__features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.product__features li {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--gray-700);
  padding-left: 1.8rem;
  position: relative;
}

.product__features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 700;
  font-size: 1.1em;
}

.product--funeral .product__features li::before {
  color: var(--gold-400);
}

.product__legal {
  font-size: clamp(0.75rem, 0.8vw, 0.85rem);
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* Imagens dos produtos */
.product__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product__img {
  width: 100%;
  height: clamp(280px, 28vw, 420px);
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product__img--funeral {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* --- TELE STEPS (Horizontal) --- */
.tele-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.tele-step {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.tele-step:hover {
  border-color: var(--gold-400);
  box-shadow: 0 4px 16px rgba(245, 184, 0, 0.1);
}

.tele-step__num {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
}

.tele-step strong {
  display: block;
  font-size: clamp(0.9rem, 0.95vw, 1.05rem);
  color: var(--gray-900);
}

.tele-step p {
  font-size: clamp(0.8rem, 0.85vw, 0.9rem);
  color: var(--gray-500);
  line-height: 1.5;
}

/* --- COMPARATIVO --- */
.compare {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.section-subtitle {
  text-align: center;
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  color: var(--gray-500);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.compare__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2vw, 2rem);
  align-items: start;
}

.compare__card {
  background: var(--white);
  border-radius: 16px;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.compare__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.compare__card--featured {
  border-color: var(--gold-400);
  box-shadow: 0 4px 24px rgba(245, 184, 0, 0.15);
}

.compare__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--gray-900);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.compare__card-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.compare__card-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.compare__card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 700;
  color: var(--gray-900);
}

.compare__card-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.compare__item {
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.compare__item--yes {
  color: var(--gray-700);
}

.compare__item--no {
  color: var(--gray-300);
  text-decoration: line-through;
}

/* --- DEPOIMENTOS --- */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2vw, 2rem);
}

.testimonial-card {
  background: var(--gray-50);
  border-radius: 16px;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.testimonial-card__stars {
  color: var(--gold-500);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card__text {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  color: var(--gray-900);
}

.testimonial-card__author span {
  font-size: clamp(0.72rem, 0.78vw, 0.82rem);
  color: var(--gray-500);
}

/* --- FAQ --- */
.faq {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__search {
  max-width: 400px;
  margin: 0 auto 2rem;
}

.faq__search-input {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--gray-300);
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
}

.faq__search-input:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.15);
}

.faq__item {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}

.faq__item:hover {
  border-color: var(--gold-300);
}

.faq__item.active {
  border-color: var(--gold-500);
  box-shadow: 0 2px 12px rgba(245, 184, 0, 0.08);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 1.5vw, 1.4rem) clamp(1.2rem, 2vw, 1.8rem);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
}

.faq__question:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: -2px;
}

.faq__icon {
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold-500);
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer p {
  padding: 0 clamp(1.2rem, 2vw, 1.8rem) clamp(1rem, 1.5vw, 1.4rem);
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- CTA FINAL --- */
.cta-final {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 50%, var(--teal-700) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(245, 184, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
}

.cta-final__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.cta-final__desc {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-final .btn {
  position: relative;
  z-index: 1;
}

/* --- RODAPÉ --- */
.footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(3rem, 5vw, 5rem) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(2rem, 3vw, 3rem);
  padding-bottom: clamp(2rem, 3vw, 3rem);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer__desc {
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.footer__location {
  font-size: clamp(0.8rem, 0.85vw, 0.9rem);
  color: var(--gold-400);
  font-weight: 500;
}

.footer__cnpj {
  font-size: clamp(0.78rem, 0.82vw, 0.85rem);
  color: rgba(255, 255, 255, 0.35);
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__links a {
  display: block;
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  color: rgba(255, 255, 255, 0.5);
  padding: 0.3rem 0;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--gold-400);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  color: rgba(255, 255, 255, 0.6);
  padding: 0.3rem 0;
  transition: var(--transition);
}

.footer__contact-item:hover {
  color: var(--gold-400);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(1.2rem, 2vw, 1.8rem) 0;
  text-align: center;
}

.footer__bottom p {
  font-size: clamp(0.78rem, 0.8vw, 0.85rem);
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
  margin-top: 0.5rem;
  font-style: italic;
}

/* --- WHATSAPP FLUTUANTE --- */
.whatsapp-float {
  position: fixed;
  bottom: clamp(1.2rem, 2vw, 2rem);
  right: clamp(1.2rem, 2vw, 2rem);
  width: clamp(56px, 5vw, 68px);
  height: clamp(56px, 5vw, 68px);
  background: var(--teal-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(20, 82, 82, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: var(--teal-800);
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(20, 82, 82, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(20, 82, 82, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(20, 82, 82, 0.6), 0 0 0 12px rgba(20, 82, 82, 0.1); }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.8);
  padding: 1rem 0;
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: clamp(0.8rem, 0.85vw, 0.9rem);
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--gold-400);
  text-decoration: underline;
}

.cookie-banner__btn {
  background: var(--gold-500);
  color: var(--gray-900);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-banner__btn--reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-banner__btn--reject:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.cookie-banner__btn:hover {
  background: var(--gold-400);
}

/* --- PRODUCT HERO (Páginas internas) --- */
.product-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.product-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.product-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 46, 46, 0.92) 0%, rgba(15, 61, 61, 0.82) 40%, rgba(20, 82, 82, 0.7) 100%);
  z-index: 1;
}

.product-hero__overlay--funeral {
  background: linear-gradient(135deg, rgba(10, 46, 46, 0.95) 0%, rgba(15, 61, 61, 0.88) 50%, rgba(20, 82, 82, 0.78) 100%);
}

.product-hero__overlay--tele {
  background: linear-gradient(135deg, rgba(10, 46, 46, 0.9) 0%, rgba(15, 61, 61, 0.8) 40%, rgba(26, 107, 107, 0.65) 100%);
}

.product-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 8rem) var(--container-px) var(--section-py);
  color: var(--white);
}

.product-hero__tag {
  display: inline-block;
  font-size: clamp(0.75rem, 0.8vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 213, 79, 0.3);
  border-radius: 50px;
  background: rgba(255, 213, 79, 0.08);
}

.product-hero__tag--funeral {
  color: var(--gold-300);
}

.product-hero__tag--tele {
  color: var(--gold-400);
}

.product-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  max-width: 700px;
}

.product-hero__desc {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 550px;
  margin-bottom: 2rem;
}

.product-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- INCLUDED (O que está incluso) --- */
.included {
  padding: var(--section-py) 0;
  background: var(--white);
}

.included--funeral {
  background: var(--gray-50);
}

.included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2vw, 2rem);
}

.included__item {
  display: flex;
  gap: 1rem;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.included__item:hover {
  border-color: var(--gold-300);
  box-shadow: 0 4px 16px rgba(245, 184, 0, 0.08);
}

.included__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.included__item strong {
  display: block;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--gray-900);
  margin-bottom: 0.3rem;
}

.included__item p {
  font-size: clamp(0.82rem, 0.85vw, 0.9rem);
  color: var(--gray-600);
  line-height: 1.5;
}

/* --- HOW IT WORKS --- */
.how-it-works {
  padding: var(--section-py) 0;
  background: var(--teal-50);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2vw, 2rem);
}

.how-steps--horizontal {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
  gap: 1rem;
}

.how-step {
  text-align: center;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.how-step--horizontal {
  display: flex;
  text-align: left;
  gap: 1.2rem;
  align-items: flex-start;
  padding: clamp(1rem, 1.5vw, 1.5rem);
}

.how-step__num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.how-step--horizontal .how-step__num {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 0;
  min-width: 2.5rem;
}

.how-step h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
}

.how-step p {
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  color: var(--gray-600);
  line-height: 1.5;
}

/* --- CTA SECTION (Páginas internas) --- */
.cta-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 50%, var(--teal-700) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(245, 184, 0, 0.08) 0%, transparent 50%);
}

.cta-section--funeral {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 50%, var(--teal-700) 100%);
}

.cta-section--tele {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 50%, var(--teal-700) 100%);
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.cta-section__desc {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* --- SPECIALTIES --- */
.specialties {
  padding: var(--section-py) 0;
  background: var(--white);
}

.specialties__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.5vw, 1.5rem);
}

.specialty-card {
  text-align: center;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.specialty-card:hover {
  border-color: var(--gold-300);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245, 184, 0, 0.08);
}

.specialty-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.8rem;
}

.specialty-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 700;
  color: var(--gray-900);
}

/* --- ACTIVE NAV LINK --- */
.header__nav a.active {
  color: var(--teal-700);
  font-weight: 600;
}

.header__nav a.active::after {
  width: 100%;
  background: var(--gold-500);
}

/* --- RESPONSIVIDADE --- */

/* Tablet - Sidebar */
@media (max-width: 1024px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--teal-800);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    z-index: 999;
    padding: 5rem 2rem 2rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

  .header__nav.active {
    right: 0;
  }

  .header__nav a {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
  }

  .header__nav a:hover {
    color: var(--gold-400);
  }

  .header__nav a.active {
    color: var(--gold-400);
  }

  .header__cta {
    display: none;
  }

  .header__menu-btn {
    display: flex;
    z-index: 1000;
  }

  /* Overlay escuro */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

  .product__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product__grid--reverse {
    direction: ltr;
  }

  .product__visual {
    order: -1;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__visual {
    order: -1;
  }

  .tele-steps {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .benefits__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .included__grid {
    grid-template-columns: 1fr 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr 1fr;
  }

  .specialties__grid {
    grid-template-columns: 1fr 1fr;
  }

  .compare__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .header__logo-img {
    height: 36px;
    width: 36px;
  }

  .header__logo-text {
    font-size: 0.95rem;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .included__grid {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .specialties__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about__stats {
    flex-direction: column;
    gap: 1rem;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__badges {
    flex-direction: column;
    gap: 0.6rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* 4K / Telas grandes */
@media (min-width: 2560px) {
  :root {
    --section-py: 10rem;
    --container-max: 1600px;
  }

  body {
    font-size: 22px;
  }

  .hero__title {
    font-size: 5.5rem;
  }

  .product__img {
    height: 500px;
  }

  .stats__num {
    font-size: 3.5rem;
  }

  .benefit-card {
    padding: 3rem;
  }
}

/* --- PRINT --- */
@media print {
  .header,
  .whatsapp-float,
  .cookie-banner,
  .cta-final {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero__overlay {
    display: none;
  }

  .hero__content {
    color: #000;
    padding: 2rem 0;
  }

  .hero__title {
    font-size: 24pt;
    color: #000;
  }

  .text-accent {
    color: #b8860b;
  }
}

/* --- FOCUS VISIBLE (Acessibilidade) --- */
*:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 2px;
}

/* --- ANIMAÇÕES DE ENTRADA --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- SEÇÃO SELOS DE CONFIANÇA --- */
.trust-badges-section {
  padding: 1.5rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

/* --- SEÇÃO FORMULÁRIO RÁPIDO --- */
.quick-form-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

/* --- BOTÃO VOLTAR AO TOPO --- */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: clamp(1.2rem, 2vw, 2rem);
  width: 44px;
  height: 44px;
  background: var(--teal-700);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(20, 82, 82, 0.3);
  z-index: 998;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: scale(1);
}

.back-to-top:hover {
  background: var(--teal-800);
  transform: scale(1.1);
}

/* --- BARRA DE PROGRESSO --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* --- EFEITO TILT NOS CARDS --- */
.tilt-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-card:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(2deg) translateY(-4px);
}

/* --- BORDA COM GRADIENTE --- */
.gradient-border {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold-400), var(--teal-500), var(--gold-400));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* --- SOMBRA DINÂMICA --- */
.dynamic-shadow {
  transition: box-shadow 0.3s ease;
}

.dynamic-shadow:hover {
  box-shadow: 0 20px 40px rgba(20, 82, 82, 0.15), 0 8px 16px rgba(245, 184, 0, 0.1);
}

/* --- BREADCRUMBS --- */
.breadcrumbs {
  padding: 1rem 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.breadcrumbs__list a {
  color: var(--teal-600);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumbs__list a:hover {
  color: var(--gold-500);
}

.breadcrumbs__separator {
  color: var(--gray-300);
}

.breadcrumbs__current {
  color: var(--gray-700);
  font-weight: 500;
}

/* --- BOTÃO LIGAÇÃO --- */
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.header--scrolled .call-btn {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.call-btn:hover {
  background: var(--gold-500);
  color: var(--gray-900);
  border-color: var(--gold-500);
}

/* --- WHATSAPP TOOLTIP --- */
.whatsapp-float::before {
  content: 'Fale conosco';
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--gray-800);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover::before {
  opacity: 1;
}

/* --- SELL DE CONFIANÇA --- */
.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.5rem 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
}

.trust-badge svg {
  color: var(--teal-600);
}

/* --- DARK MODE --- */
@media (prefers-color-scheme: dark) {
  .header {
    background: rgba(15, 15, 15, 0.95);
  }

  .header--scrolled {
    background: rgba(15, 15, 15, 0.85);
  }

  .header__logo-text {
    color: var(--white);
  }

  .header__nav a {
    color: rgba(255, 255, 255, 0.8);
  }
}

/* --- ANIMAÇÃO CONTADOR --- */
.counter {
  display: inline-block;
  min-width: 2ch;
}

/* --- RIPPLE EFFECT --- */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}

.btn:active::after {
  transform: scale(0, 0);
  opacity: 0.3;
  transition: 0s;
}

/* --- WHATSAPP WIDGET EXPANDIDO --- */
.whatsapp-widget {
  position: fixed;
  bottom: 7rem;
  right: clamp(1.2rem, 2vw, 2rem);
  width: 320px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 997;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  overflow: hidden;
}

.whatsapp-widget.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-widget__header {
  background: var(--teal-700);
  color: var(--white);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.whatsapp-widget__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-widget__info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.whatsapp-widget__info span {
  font-size: 0.75rem;
  opacity: 0.8;
}

.whatsapp-widget__body {
  padding: 1rem 1.2rem;
  background: var(--gray-50);
}

.whatsapp-widget__msg {
  background: var(--white);
  padding: 0.8rem 1rem;
  border-radius: 0 12px 12px 12px;
  font-size: 0.9rem;
  color: var(--gray-700);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  line-height: 1.5;
}

.whatsapp-widget__msg::after {
  content: 'Agora';
  display: block;
  font-size: 0.7rem;
  color: var(--gray-500);
  text-align: right;
  margin-top: 0.3rem;
}

.whatsapp-widget__footer {
  padding: 0.8rem 1.2rem;
  border-top: 1px solid var(--gray-200);
}

.whatsapp-widget__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25d366;
  color: var(--white);
  border: none;
  padding: 0.7rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.whatsapp-widget__btn:hover {
  background: #128c7e;
}

/* --- FORMULÁRIO RÁPIDO --- */
.quick-form {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  margin: 0 auto;
}

.quick-form__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.quick-form__desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.quick-form__group {
  margin-bottom: 1rem;
}

.quick-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
}

.quick-form__input:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.15);
}

.quick-form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: var(--white);
  cursor: pointer;
}

.quick-form__btn {
  width: 100%;
  padding: 0.85rem;
  background: var(--gold-500);
  color: var(--gray-900);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quick-form__btn:hover {
  background: var(--gold-600);
}

/* --- HIGH CONTRAST MODE --- */
.high-contrast {
  --gold-500: #ffcc00;
  --teal-700: #000000;
  --gray-700: #000000;
  --gray-900: #000000;
}

.high-contrast body {
  color: #000;
  background: #fff;
}

/* --- LOADING SCREEN --- */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  width: 80px;
  height: 80px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

/* --- SCROLL SMOOTH --- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* --- SEÇÃO SOBRE --- */
.about-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-content {
  order: 1;
}

.about-text {
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--gray-700);
}

.about-visual {
  order: 2;
}

.about-img {
  width: 100%;
  height: clamp(300px, 35vw, 450px);
  object-fit: cover;
  border-radius: 16px;
}

/* --- RESPONSIVIDADE SOBRE --- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-content {
    order: 2;
  }

  .about-visual {
    order: 1;
  }
}
