/* ============================================================
   ANGELUZ SÊNIOR CARE — LANDING PAGE v2 (com imagens)
   Paleta: Azul Marinho #1B2D5A | Dourado #C9A84C | Creme #FAF7F2
   Tipografia: Cormorant Garamond (headings) + Inter (body)
============================================================ */

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

:root {
  --navy:          #1B2D5A;
  --navy-dark:     #0F1E3D;
  --navy-mid:      #243672;
  --gold:          #C9A84C;
  --gold-light:    #E0C47A;
  --gold-dark:     #A88930;
  --cream:         #FAF7F2;
  --cream-mid:     #F2EDE4;
  --warm-bg:       #FBF8F4;
  --white:         #FFFFFF;
  --text-dark:     #1A1A2E;
  --text-mid:      #3D3D5C;
  --text-muted:    #6B6B8A;
  --border:        #E8E2D9;
  
  --wpp:           #25D366;
  --wpp-dark:      #128C7E;

  --ff-serif:      'Cormorant Garamond', Georgia, serif;
  --ff-sans:       'Inter', system-ui, -apple-system, sans-serif;

  --shadow-sm:     0 2px 10px rgba(27,45,90,0.04);
  --shadow-md:     0 8px 32px rgba(27,45,90,0.08);
  --shadow-lg:     0 24px 60px rgba(27,45,90,0.12);
  --shadow-gold:   0 8px 24px rgba(201,168,76,0.25);
  --shadow-wpp:    0 8px 24px rgba(37,211,102,0.35);

  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     36px;
  --radius-full:   9999px;

  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--ff-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--ff-sans); border: none; background: none; }

/* ========== CONTAINER ========== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* ========== SECTION BASE ========== */
.section { padding: 6rem 0; }
.section-light  { background-color: var(--white); }
.section-cream  { background-color: var(--cream); }
.section-warm   { background-color: var(--warm-bg); }
.section-navy   { background-color: var(--navy); }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.section-label-gold { color: var(--gold-light); }

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 680px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

.section-subtitle-tight {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }

.text-white { color: var(--white) !important; }
.text-cream { color: rgba(250,247,242,0.82) !important; }
.section-navy .section-title { color: var(--white); }

.section-cta-center {
  text-align: center;
  margin-top: 2.5rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-sans);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-sm  { font-size: 0.85rem; padding: 0.55rem 1.25rem; }
.btn-lg  { font-size: 1rem;    padding: 0.9rem 2rem; }
.btn-xl  { font-size: 1.1rem;  padding: 1.15rem 2.75rem; letter-spacing: 0.02em; }

.btn-wpp {
  background: var(--wpp);
  color: var(--navy-dark);
  box-shadow: var(--shadow-wpp);
  position: relative;
  overflow: hidden;
  font-weight: 700;
  width: max-content;
}
.btn-wpp::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
}
.btn-wpp:hover, .btn-wpp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.45);
}
.btn-wpp:hover::after {
  left: 150%;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover, .btn-gold:focus-visible {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}
.btn-navy {
  background-color: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover, .btn-navy:focus-visible {
  background-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}



/* ========== HERO SPLIT ========== */
.hero {
  padding: 2rem 0 0; /* padding bottom removed since image sits flush or space is handled inside */
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 60%, #253D7A 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-bottom: 3.5rem; /* Space below the grid inside the blue background */
}

.hero-left {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left-inner {
  padding: 0;
  position: relative;
  z-index: 1;
}

.hero-logo {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 2rem;
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title .highlight-gold {
  display: block;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(250,247,242,0.78);
  line-height: 1.8;
  margin-bottom: 2.25rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.75rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-cta-note {
  font-size: 0.8rem;
  color: rgba(250,247,242,0.45);
}

.hero-trust-bar {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-trust-bar-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.trust-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.trust-text {
  display: flex;
  flex-direction: column;
}
.trust-text strong {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}
.trust-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-img-composition {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  transform: translateY(20px);
}
.hero-img-wrap {
  position: relative;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  width: 100%;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-img-badge {
  position: absolute;
  bottom: 2rem;
  left: -2.5rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  animation: floatUpDown 5s ease-in-out infinite;
  z-index: 2;
}
.hero-badge-icon {
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge-text {
  display: flex; flex-direction: column;
}
.hero-badge-text strong {
  font-size: 0.95rem; font-weight: 600; color: var(--navy); line-height: 1.2;
}
.hero-badge-text span {
  font-size: 0.8rem; color: var(--text-muted);
}

/* ========== SPLIT LAYOUT ========== */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-image {
  position: relative;
  height: 100%;
}
.split-image .img-frame,
.split-image .img-caption-card {
  position: sticky;
  top: 120px;
}
.split-image .img-caption-card {
  /* Offset caption to maintain overlap when sticky */
  margin-top: -30px;
  transform: translate(-2rem, 1.5rem);
  box-shadow: var(--shadow-lg);
  animation: floatUpDown 6s ease-in-out infinite alternate;
}

/* Image Frame */
.img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0.2);
}
.img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.img-frame:hover img {
  transform: scale(1.03);
}

.img-frame-dark::after {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

/* Caption card over image */
.img-caption-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  max-width: 260px;
  border-left: 3px solid var(--gold);
  z-index: 2;
}
.img-caption-icon { font-size: 1.4rem; }

/* ========== CHECK LIST (bloco 2) ========== */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.check-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.check-bullet {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-weight: 700;
}
.check-list-item p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.check-list-item strong { color: var(--navy); }

/* ========== BENEFITS COMPACT (bloco 3) ========== */
.benefits-compact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}
.benefit-compact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.benefit-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.5rem;
}
.benefit-compact-item strong {
  display: block;
  font-size: 0.97rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.benefit-compact-item p {
  font-size: 0.9rem;
  color: rgba(250,247,242,0.65);
  line-height: 1.65;
}

/* ========== PERSONALIZED LIST (bloco 4) ========== */
.personalized-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}
.personalized-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.check-gold {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.personalized-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.personalized-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== FULLWIDTH IMAGE (bloco 5) ========== */
.fullwidth-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 0;
}
.fullwidth-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 40%;
}
.fullwidth-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27,45,90,0.72) 0%, rgba(27,45,90,0.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 4rem;
}
.fullwidth-quote {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-style: italic;
  color: var(--white);
  max-width: 520px;
  line-height: 1.5;
}

/* ========== TRUST GRID (bloco 5) ========== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.trust-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(160deg, #fff 0%, #FDFBF7 100%);
  border-color: rgba(201,168,76,0.3);
}
.trust-card:hover::before {
  transform: scaleX(1);
}
.trust-card-icon {
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.trust-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.trust-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== PROFILES GRID (bloco 6) ========== */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 0;
}
.profile-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(160deg, #fff 0%, #FDFBF7 100%);
  border-color: rgba(201,168,76,0.3);
}
.profile-icon {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
  display: block;
}
.profile-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.profile-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== STEPS (bloco 7) ========== */
.steps-layout {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 2rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.step:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(201,168,76,0.4);
}
.step-connector {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
  margin: 0 auto 0 calc(2rem + 26px);
}
.step-number {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}
.step-content h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.step-content p {
  font-size: 0.94rem;
  color: rgba(250,247,242,0.68);
  line-height: 1.7;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item:first-child { border-top: none; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.4rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  gap: 1rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}
.faq-answer {
  padding-bottom: 1.4rem;
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-answer[hidden] { display: none; }

/* ========== FINAL CTA ========== */
.section-final {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-attachment: fixed;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,30,61,0.95) 0%,
    rgba(27,45,90,0.85) 50%,
    rgba(27,45,90,0.4) 100%
  );
}
.final-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.75rem;
  text-align: left;
  max-width: 700px;
}
.final-logo {
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.final-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.1rem;
}
.final-subtitle {
  font-size: 1.05rem;
  color: rgba(250,247,242,0.82);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.final-tagline {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 2.5rem;
}
.final-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.final-cta-note {
  font-size: 0.82rem;
  color: rgba(250,247,242,0.45);
}

/* ========== FOOTER ========== */
.site-footer-bar {
  background: var(--navy-dark);
  padding: 1.75rem 0;
  text-align: center;
}
.footer-inner-bar {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-inner-bar p {
  font-size: 0.82rem;
  color: rgba(250,247,242,0.38);
}
.footer-tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  color: rgba(201,168,76,0.45) !important;
  font-size: 0.9rem !important;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: waBounce 4s ease-in-out 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}
.whatsapp-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  transform: translateX(8px);
}
.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@keyframes waBounce {
  0%, 100% { transform: scale(1); }
  10% { transform: scale(1.1); }
  20% { transform: scale(1); }
  30% { transform: scale(1.06); }
  40% { transform: scale(1); }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.pulse-wpp {
  animation: pulseWpp 2s infinite;
}
@keyframes pulseWpp {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="fade-left"]  { transform: translateX(32px); }
[data-animate="fade-up"]    { transform: translateY(32px); }
[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays */
.trust-grid [data-animate]:nth-child(1) { transition-delay: 0.05s; }
.trust-grid [data-animate]:nth-child(2) { transition-delay: 0.10s; }
.trust-grid [data-animate]:nth-child(3) { transition-delay: 0.15s; }
.trust-grid [data-animate]:nth-child(4) { transition-delay: 0.20s; }
.trust-grid [data-animate]:nth-child(5) { transition-delay: 0.25s; }
.trust-grid [data-animate]:nth-child(6) { transition-delay: 0.30s; }

.profiles-grid [data-animate]:nth-child(1) { transition-delay: 0.04s; }
.profiles-grid [data-animate]:nth-child(2) { transition-delay: 0.08s; }
.profiles-grid [data-animate]:nth-child(3) { transition-delay: 0.12s; }
.profiles-grid [data-animate]:nth-child(4) { transition-delay: 0.16s; }
.profiles-grid [data-animate]:nth-child(5) { transition-delay: 0.20s; }
.profiles-grid [data-animate]:nth-child(6) { transition-delay: 0.24s; }
.profiles-grid [data-animate]:nth-child(7) { transition-delay: 0.28s; }
.profiles-grid [data-animate]:nth-child(8) { transition-delay: 0.32s; }

.steps-layout [data-animate]:nth-child(odd)  { transition-delay: 0.08s; }
.steps-layout [data-animate]:nth-child(even) { transition-delay: 0.16s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .profiles-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  /* Hero collapses to single column */
  .hero { padding: 2rem 0 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }
  .hero-img-wrap img {
    height: 60vw;
    min-height: 280px;
    max-height: 400px;
  }
  .hero-left-inner { padding: 0 1rem; }

  .hero-trust-bar-bottom { grid-template-columns: repeat(2, 1fr); }
  .hero-img-composition {
    transform: none;
    margin: 0 auto;
  }

  /* Split layout collapses to single column */
  .split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .split-reverse { direction: ltr; }

  .img-caption-card {
    display: none;
  }
  
  .img-frame img,
  .fullwidth-image-wrap img {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}

@media (max-width: 500px) {
  .hero-trust-bar-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

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

  .fullwidth-image-overlay { padding: 0 2rem; }
  .fullwidth-quote { font-size: 1.2rem; }

  .final-content { padding: 4rem 1.5rem; }
  .section-final { min-height: auto; }

  .btn-text-hide { display: none; }
}

@media (max-width: 540px) {
  .container { padding: 0 1.25rem; }
  .profiles-grid { grid-template-columns: 1fr; }
  .hero-left-inner { padding: 2.5rem 1.5rem; }
  .btn-xl { font-size: 1rem; padding: 0.9rem 1.75rem; }
  .hero-title { font-size: 2rem; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 1.25rem; right: 1.25rem; }
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
