﻿/* =========================================
   CLUBE CUIDAR â€“ Landing Page Premium
   CSS Principal â€“ Mobile First
   ========================================= */

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

:root {
  /* Paleta Clube Cuidar */
  --orange:        #FF8A00;
  --orange-dark:   #E07200;
  --orange-light:  #FFF3E0;
  --green:         #2F5D46;
  --green-mid:     #3A7259;
  --green-light:   #E8F5EE;
  --blue:          #1A5276;
  --blue-light:    #EAF2FB;

  /* Neutros */
  --white:         #FFFFFF;
  --gray-50:       #F9FAFB;
  --gray-100:      #F3F4F6;
  --gray-200:      #E5E7EB;
  --gray-400:      #9CA3AF;
  --gray-600:      #4B5563;
  --gray-800:      #1F2937;
  --gray-900:      #111827;

  /* Tipografia */
  --font-main:    'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Sombras */
  --shadow-sm:    0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:    0 10px 40px rgba(0,0,0,.1), 0 4px 16px rgba(0,0,0,.06);
  --shadow-xl:    0 20px 60px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.08);

  /* Bordas */
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;

  /* TransiÃ§Ãµes */
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-main); }

/* --- UtilitÃ¡rios --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   BOTÃ•ES
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: .01em;
}

.btn-large { padding: 16px 36px; font-size: 1.05rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,138,0,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,138,0,.45);
  background: linear-gradient(135deg, #FF9A00 0%, #FF8A00 100%);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
}

.btn-outline-primary {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-primary:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.nav-logo .logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: none;
  gap: 28px;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s ease;
  border-radius: 2px;
}

.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: auto; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mobile-link {
  display: block;
  padding: 14px 0;
  font-weight: 600;
  color: var(--gray-700, #374151);
  border-bottom: 1px solid var(--gray-100);
  font-size: 1rem;
}

/* =========================================
   SEÃ‡ÃƒO HEADER PADRÃƒO
   ========================================= */
.section-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  width:100%;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFDF9 0%, #FFF8EE 50%, #F0F9F4 100%);
}

.hero-bg-shape {
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,0,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 72px;
}

/* Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700, #374151);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.badge-pulse {
  border-color: var(--orange);
  color: var(--orange);
  position: relative;
}

.badge-pulse::before {
  content: '';
  position: absolute;
  top: 50%; left: 12px;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,138,0,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(255,138,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,138,0,0); }
}

/* Headline */
.hero-headline {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.18;
  margin-bottom: 20px;
}

.highlight-orange { color: var(--orange); }
.highlight-green  { color: var(--green); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 540px;
}

/* Bullets */
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .98rem;
  font-weight: 600;
  color: var(--gray-700, #374151);
}

.hero-bullets li i { color: var(--green); font-size: 1.1rem; }

/* CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* Trust */
.hero-trust {
  display: flex;
  width:100%;
  /*flex-wrap: wrap;*/
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--gray-600);
}

.trust-item i { color: var(--green); font-size: 1rem; }

/* Imagem Hero */
.hero-image { position: relative; }

.hero-image-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; }

.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* Cards flutuantes */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: floatAnim 3s ease-in-out infinite;
  min-width: 160px;
}

.float-card > i { font-size: 1.5rem; }

.float-card div { display: flex; flex-direction: column; }

.float-card strong { font-size: .85rem; font-weight: 700; color: var(--gray-900); }
.float-card span   { font-size: .75rem; color: var(--gray-400); margin-top: 1px; }

.float-card-1 {
  top: 20px; left: -16px;
  animation-delay: 0s;
}
.float-card-2 {
  bottom: 80px; left: -20px;
  animation-delay: 1s;
}
.float-card-3 {
  top: 30px; right: -16px;
  animation-delay: 2s;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  padding: 40px 0;
  overflow: hidden;
}

.stats-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}

.stat-item {
  text-align: center;
  color: var(--white);
  flex: 1;
  padding: 0 24px;
}

.stat-number {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1;
  display: inline-block;
}

.stat-suffix {
  font-size: clamp(1.1rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--white);
  opacity: .85;
}

.stat-label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  opacity: .8;
  margin-top: 6px;
}

.stat-divider {
  flex-shrink: 0;
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.2);
  display: block;
}

/* =========================================
   BENEFÃCIOS
   ========================================= */
.benefits {
  padding: 100px 0;
  background: var(--gray-50);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.icon-orange { background: var(--orange-light); color: var(--orange); }
.icon-green  { background: var(--green-light); color: var(--green); }

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* =========================================
   COMO FUNCIONA
   ========================================= */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(145deg, #F9FDF9 0%, #F0FAF5 50%, #FFF8F0 100%);
}

.steps-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 800px;
  margin: 0 auto 56px;
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: 60px 60px 1fr;
  gap: 16px 20px;
  align-items: start;
  padding-bottom: 40px;
  position: relative;
}

.step:last-child { padding-bottom: 0; }

.step-number {
  font-size: .75rem;
  font-weight: 900;
  color: var(--orange);
  padding-top: 6px;
  text-align: center;
}

.step-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(255,138,0,.08);
  position: relative;
  z-index: 1;
}

.step-content { padding-top: 8px; }

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.step-content p {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.step-connector {
  display: none;
}

/* Linha vertical */
.steps-timeline::before {
  content: '';
  position: absolute;
  left: 90px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--green));
  opacity: .25;
}

.cta-center { text-align: center; }

/* =========================================
   PLANOS
   ========================================= */
.plans {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}

/* Card base */
.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Card Destaque */
.plan-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow-lg);
  transform: none;
  position: relative;
  z-index: 2;
}

.plan-card--featured:hover { transform: translateY(-6px); }

.plan-badge-top {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  text-align: center;
  font-size: .82rem;
  font-weight: 800;
  padding: 10px 20px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.plan-badge-top i { margin-right: 6px; }

.plan-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--gray-100);
}

.plan-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 8px;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  padding-bottom: 6px;
}

.price-value {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
}

.plan-card--featured .price-value { color: var(--orange); }

.price-value small {
  font-size: 1.4rem;
  font-weight: 700;
}

.price-period {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-400);
  padding-bottom: 6px;
}

.plan-desc {
  font-size: .9rem;
  color: var(--gray-600);
  margin-top: 8px;
}

.plan-sub-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  margin-top: 10px;
}

/* Features */
.plan-features {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  line-height: 1.45;
}

.feat-yes { color: var(--gray-800); font-weight: 500; }
.feat-no  { color: var(--gray-400); }

.feat-yes i { color: var(--green); font-size: .95rem; flex-shrink: 0; margin-top: 2px; }
.feat-no  i { color: var(--gray-300, #D1D5DB); font-size: .85rem; flex-shrink: 0; margin-top: 3px; }

/* Footer card */
.plan-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.plan-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--gray-400);
}

.plan-guarantee i { color: var(--green); }

/* Banner planos */
.plans-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  color: var(--white);
}

.plans-banner-icon {
  font-size: 2rem;
  opacity: .8;
}

.plans-banner strong { font-size: 1.1rem; font-weight: 800; display: block; margin-bottom: 4px; }
.plans-banner p { font-size: .9rem; opacity: .85; }

/* =========================================
   ESPECIALIDADES
   ========================================= */
.specialties {
  padding: 100px 0;
  background: var(--gray-50);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
}

.spec-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: default;
}

.spec-item:hover {
  background: var(--orange-light);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.spec-item i {
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 8px;
}

.spec-item span {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700, #374151);
}

/* =========================================
   EMPRESAS
   ========================================= */
.companies {
  padding: 100px 0;
  background: var(--white);
}

.companies-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.companies-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.companies-content .section-title { text-align: left; }
.companies-content .section-tag { }

.companies-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 28px;
}

.companies-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.companies-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .97rem;
  font-weight: 600;
  color: var(--gray-800);
}

.companies-benefits li i { color: var(--green); font-size: 1rem; }

/* =========================================
   DEPOIMENTOS
   ========================================= */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--green-light) 0%, #F0FAF5 100%);
}

.testimonials-swiper {
  padding: 20px 8px 60px !important;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  height: auto !important;
}

.testimonial-stars i { color: #F59E0B; font-size: .95rem; margin-right: 2px; }

.testimonial-text {
  font-size: .97rem;
  color: var(--gray-700, #374151);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.avatar-1 { background: linear-gradient(135deg, #FF8A00, #E07200); }
.avatar-2 { background: linear-gradient(135deg, #2F5D46, #3A7259); }
.avatar-3 { background: linear-gradient(135deg, #1A5276, #2874A6); }
.avatar-4 { background: linear-gradient(135deg, #7B2D8B, #A84D9C); }
.avatar-5 { background: linear-gradient(135deg, #C0392B, #E74C3C); }

.author-info strong { display: block; font-size: .95rem; font-weight: 700; color: var(--gray-900); }
.author-info span   { font-size: .82rem; color: var(--gray-400); }

/* Swiper customizaÃ§Ã£o */
.swiper-button-prev,
.swiper-button-next {
  color: var(--orange) !important;
  background: var(--white);
  width: 42px !important; height: 42px !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-md) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after { font-size: 16px !important; font-weight: 900 !important; }

.swiper-pagination-bullet-active { background: var(--orange) !important; }

.testimonials-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.testimonials-rating .rating-stars i { color: #F59E0B; font-size: 1rem; }
.testimonials-rating strong { font-size: 1.1rem; font-weight: 800; color: var(--gray-900); }
.testimonials-rating span   { font-size: .85rem; color: var(--gray-600); }

/* =========================================
   CTA SEÃ‡ÃƒO
   ========================================= */
.cta-section {
  padding: 100px 0;
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 20px 60px rgba(255,138,0,.3);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}

.cta-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  opacity: .9;
}

.cta-box h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1.05rem;
  opacity: .9;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.cta-box .btn-primary {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.cta-box .btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

/* =========================================
   FAQ
   ========================================= */
.faq {
  padding: 100px 0;
  background: var(--gray-50);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item.open { border-color: var(--orange); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  text-align: left;
  font-size: .97rem;
  font-weight: 700;
  color: var(--gray-900);
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { color: var(--orange); }

.faq-icon {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform .3s ease;
  font-size: .85rem;
}

.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--orange); }
.faq-item.open .faq-question { color: var(--orange); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.faq-cta p { font-size: 1rem; color: var(--gray-600); }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--gray-900); color: var(--white); }

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Logo no footer: versÃ£o clara sobre fundo escuro */
.footer-logo { height: 54px; width: auto; object-fit: contain; margin-bottom: 16px; filter: brightness(0) invert(1); }

/* Quando o logo Ã© SVG colorido, adaptamos para legibilidade no fundo escuro */
.footer-brand img[src$=".svg"] { filter: brightness(0) invert(1); }

.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 12px; }

.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}

.footer-contact li i { color: var(--orange); width: 16px; flex-shrink: 0; }

.footer-contact li a {
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}

.footer-contact li a:hover { color: var(--orange); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }

.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--orange); }

/* =========================================
   WHATSAPP FLUTUANTE
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--gray-900);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* =========================================
   BACK TO TOP
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 96px; right: 28px;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--orange);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-3px);
}

/* =========================================
   ANIMAÃ‡Ã•ES AOS (fade-in manual)
   ========================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos=fade-right]   { transform: translateX(-30px); }
[data-aos=fade-right].aos-animate { transform: translateX(0); }

[data-aos=fade-left]    { transform: translateX(30px); }
[data-aos=fade-left].aos-animate  { transform: translateX(0); }

[data-aos=zoom-in]      { transform: scale(.92); }
[data-aos=zoom-in].aos-animate { transform: scale(1); }

/* Delays */
[data-aos-delay="0"]   { transition-delay: 0ms; }
[data-aos-delay="80"]  { transition-delay: 80ms; }
[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="120"] { transition-delay: 120ms; }
[data-aos-delay="160"] { transition-delay: 160ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="240"] { transition-delay: 240ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="360"] { transition-delay: 360ms; }

/* =========================================
   RESPONSIVO â€“ TABLET (â‰¥ 640px)
   ========================================= */
@media (min-width: 640px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }

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

  .hero-img { height: 460px; }
}

/* =========================================
   RESPONSIVO â€“ DESKTOP (â‰¥ 1024px)
   ========================================= */
@media (min-width: 1024px) {

  /* Navbar */
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-cta { display: inline-flex; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding-top: 72px;
    padding-bottom: 96px;
  }

  .hero-img { height: 560px; }

  .float-card-1 { left: -24px; }
  .float-card-3 { right: -24px; }

  /* Planos */
  .plans-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }

  /* Empresas */
  .companies-inner { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }

  /* Plans banner */
  .plans-banner { flex-direction: row; align-items: center; }
  .plans-banner .btn { margin-left: auto; flex-shrink: 0; }
}

/* =========================================
   MOBILE SMALL (â‰¤ 380px)
   ========================================= */
@media (max-width: 380px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .float-card { display: none; }
}

/* =========================================
   SKELETONS / Misc
   ========================================= */
/* =========================================
   HERO V2 â€“ TELECONSULTA HUMANIZADA
   ========================================= */

.hero-v2 {
  background: linear-gradient(145deg, #FAFDF9 0%, #FFF9F0 45%, #F0F7FF 100%);
  overflow: visible;
}

/* Blobs decorativos de fundo */
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-bg-blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,138,0,.10) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-bg-blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(47,93,70,.08) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}

/* Grid sutil de fundo */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}

/* Garantir que o conteÃºdo fica acima dos decorativos */
.hero-v2 .hero-inner,
.hero-v2 .hero-content,
.hero-v2 .hero-visual { position: relative; z-index: 1; }

/* Badge verde */
.badge-green {
  background: var(--green-light);
  color: var(--green);
  border-color: var(--green);
}

/* Headline com destaque em bloco */
.hero-highlight-block {
  display: inline;
}

/* Bullets v2 â€“ mais premium */
.hero-bullets-v2 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-bullets-v2 li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .97rem;
  color: var(--gray-700, #374151);
}

.bullet-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: .68rem;
}

/* BotÃ£o hero com shimmer */
.btn-hero-cta {
  position: relative;
  overflow: hidden;
}
.btn-hero-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  animation: shimmer 2.5s infinite;
}
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* Trust melhorado */
.trust-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: .85rem;
  flex-shrink: 0;
}
.trust-icon--star { background: #FEF3C7; color: #D97706; }
.trust-divider { width: 1px; height: 32px; background: var(--gray-200); }

/* ---- Visual da Teleconsulta ---- */
.hero-teleconsulta {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.teleconsulta-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.teleconsulta-foto {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-xl);
}

.teleconsulta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(15,25,20,.45) 100%
  );
  border-radius: var(--radius-xl);
  pointer-events: none;
}

/* Tela do mÃ©dico (card flutuante interno) */
.teleconsulta-screen {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 140px;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
  border: 2px solid rgba(255,255,255,.8);
}

.screen-inner { display: flex; flex-direction: column; }

.screen-doctor {
  width: 100%; height: 90px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.screen-info {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px 4px;
  font-size: .65rem;
  font-weight: 700;
  color: var(--gray-800);
  background: var(--white);
}

.screen-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.screen-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px 8px 6px;
  background: #0F172A;
  color: #22C55E;
  font-size: .68rem;
  font-weight: 700;
  font-family: monospace;
}

/* Float cards v2 */
.float-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  position: absolute;
  min-width: 170px;
  border: 1px solid rgba(255,255,255,.9);
  animation: floatAnim 3.5s ease-in-out infinite;
  z-index: 2;
}

.float-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

.float-card-icon--orange { background: var(--orange-light); color: var(--orange); }
.float-card-icon--green  { background: var(--green-light);  color: var(--green); }
.float-card-icon--blue   { background: var(--blue-light);   color: var(--blue); }

.float-card div:last-child { display: flex; flex-direction: column; }
.float-card div:last-child strong { font-size: .82rem; font-weight: 700; color: var(--gray-900); }
.float-card div:last-child span   { font-size: .72rem; color: var(--gray-400); margin-top: 1px; }

.float-card-1 { top: 16px;  left: -20px; animation-delay: 0s; }
.float-card-2 { bottom: 100px; left: -20px; animation-delay: 1.2s; }
.float-card-3 { top: 24px; right: -16px; animation-delay: 2.1s; }

/* Badge "live" de mÃ©dicos online */
.hero-live-badge {
  position: absolute;
  bottom: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--gray-200);
  white-space: nowrap;
  font-size: .82rem;
  z-index: 3;
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

.hero-live-badge span { color: var(--gray-600); }
.hero-live-badge strong { color: var(--green); font-weight: 800; }

/* =========================================
   BENEFÃCIOS V2 â€“ BENTO HUMANIZADO
   ========================================= */

.benefits-v2 {
  background: var(--white);
  padding: 100px 0;
}

/* Grid bento */
.benefits-bento {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 20px;
  margin-bottom: 32px;
}

/* Itens do bento */
.bento-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

/* Imagem principal (mÃ£e e filho) */
.bento-hero-img {
  grid-column: 1;
}

.bento-hero-img img,
.bento-doc-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform .5s ease;
}

.bento-hero-img:hover img,
.bento-doc-img:hover img { transform: scale(1.03); }

/* Badge sobre imagem */
.bento-img-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(255,255,255,.95);
  border-radius: 50px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--orange);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.bento-img-badge--green { color: var(--green); }

.bento-img-badge i { font-size: .95rem; }

/* Cards bento */
.bento-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: var(--radius-lg);
  transition: transform .3s ease, box-shadow .3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bento-card--orange {
  background: var(--orange-light);
  border: 1px solid rgba(255,138,0,.15);
}

.bento-card--green {
  background: var(--green-light);
  border: 1px solid rgba(47,93,70,.12);
}

.bento-card--dark {
  background: var(--green);
  color: var(--white);
}

.bento-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.3;
}

.bento-card--dark h3 { color: var(--white); }

.bento-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.bento-card--dark p { color: rgba(255,255,255,.8); }

.bento-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

.bento-card--orange .bento-card-icon { background: rgba(255,138,0,.15); color: var(--orange); }
.bento-card--green  .bento-card-icon { background: rgba(47,93,70,.12);  color: var(--green); }
.bento-card-icon--light { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }

.bento-card-stat {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}
.stat-big {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-desc {
  font-size: .78rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* Tags de especialidades */
.bento-specs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.bento-specs-list span {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
}

/* Linha de mini cards de benefÃ­cios */
.benefits-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 40px;
}

.benefit-mini-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.benefit-mini-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.benefit-mini-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-mini-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.benefit-mini-card p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* CTA integrado */
.benefits-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.benefits-cta p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.benefits-cta strong { color: var(--gray-900); }

/* =========================================
   DOBRA FUNERAL â€“ EMOCIONAL E ACOLHEDORA
   ========================================= */

.funeral-section {
  padding: 100px 0;
  background: linear-gradient(145deg, #F9FDF9 0%, #F0FAF5 50%, #FFF8F0 100%);
  position: relative;
  overflow: hidden;
}

/* Blobs decorativos */
.funeral-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.funeral-bg-shape--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(47,93,70,.07) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.funeral-bg-shape--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,138,0,.06) 0%, transparent 70%);
  bottom: -80px; right: -80px;
}

.funeral-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Imagem lado esquerdo */
.funeral-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.funeral-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-xl);
}

.funeral-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(47,93,70,.08) 0%,
    transparent 60%
  );
  border-radius: var(--radius-xl);
  pointer-events: none;
}

/* Badge de parceria */
.funeral-partner-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--green);
}

.partner-badge-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

.funeral-partner-badge strong {
  display: block;
  font-size: .9rem;
  font-weight: 800;
  color: var(--gray-900);
}

.funeral-partner-badge span {
  font-size: .78rem;
  color: var(--gray-400);
}

/* ConteÃºdo lado direito */
.section-tag--green {
  background: var(--green-light);
  color: var(--green);
}

.funeral-title { text-align: left; margin-bottom: 16px; }

.funeral-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Cards de benefÃ­cio funeral */
.funeral-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.funeral-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.funeral-benefit-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-100);
}

.funeral-benefit-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.funeral-benefit-icon--green {
  background: var(--green-light);
  color: var(--green);
}

.funeral-benefit-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.funeral-benefit-card p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* Mensagem emocional de confianÃ§a */
.funeral-trust-msg {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 28px;
}

.funeral-trust-icon {
  font-size: 1.5rem;
  opacity: .9;
  flex-shrink: 0;
  margin-top: 2px;
}

.funeral-trust-msg p {
  font-size: .95rem;
  line-height: 1.6;
  opacity: .95;
}

.funeral-trust-msg strong {
  font-size: 1.05rem;
  display: block;
  margin-bottom: 4px;
}

/* =========================================
   RESPONSIVIDADE DAS NOVAS SEÃ‡Ã•ES
   ========================================= */

/* Tablet e acima (â‰¥ 640px) */
@media (min-width: 640px) {

  .benefits-bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-hero-img img,
  .bento-doc-img img { height: 340px; }

  .benefits-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .funeral-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .teleconsulta-foto { height: 480px; }
}

/* Desktop (â‰¥ 1024px) */
@media (min-width: 1024px) {

  .benefits-bento {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    grid-template-rows: 260px 260px;
  }

  /* Layout bento avanÃ§ado */
  .bento-hero-img {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .bento-hero-img img {
    height: 100%;
    border-radius: var(--radius-lg);
  }

  .bento-card--orange { grid-column: 2; grid-row: 1; }
  .bento-card--green  { grid-column: 3; grid-row: 1; }
  .bento-doc-img      { grid-column: 4; grid-row: 1; }
  .bento-card--dark   { grid-column: 2 / 4; grid-row: 2; }

  .bento-doc-img img {
    height: 100%;
    border-radius: var(--radius-lg);
  }

  .bento-doc-img { overflow: hidden; }

  .benefits-row {
    grid-template-columns: repeat(5, 1fr);
  }

  .funeral-inner {
    grid-template-columns: 1fr 1fr;
  }

  .funeral-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .funeral-image-wrapper img { height: 520px; }

  /* Hero teleconsulta */
  .teleconsulta-foto { height: 520px; }

  .teleconsulta-screen { width: 160px; }
  .screen-doctor { height: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
  .float-card { animation: none !important; }
  .btn-hero-cta::after { display: none; }
}
