/* ─────────────────────────────────────────
   ZELÔ VIRTUAL – Stylesheet
   ───────────────────────────────────────── */

/* ── Variables ── */
:root {
  --coral:      #FF6B5B;
  --coral-dark: #e55546;
  --coral-soft: #fff0ee;
  --beige:      #F5E6D3;
  --offwhite:   #FAFAF8;
  --blue:       #A8B8E0;
  --blue-soft:  #eef1f9;
  --lavender:   #B3C2E8;
  --lavender-bg:#c5d0ee;
  --gray-dark:  #2C2C2C;
  --gray-mid:   #6b6b6b;
  --gray-light: #e8e8e4;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-script: 'Dancing Script', cursive;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(44,44,44,.08);
  --shadow-lg: 0 12px 48px rgba(44,44,44,.12);
  --transition: .22s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--offwhite);
  color: var(--gray-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--coral);
  color: #fff;
  padding: 13px 28px;
  font-size: .95rem;
  box-shadow: 0 4px 16px rgba(255,107,91,.3);
}
.btn--primary:hover { background: var(--coral-dark); box-shadow: 0 8px 24px rgba(255,107,91,.4); }

.btn--lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn--xl  { padding: 18px 44px; font-size: 1.1rem; }
.btn--nav { padding: 10px 22px; font-size: .9rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--ghost {
  background: transparent;
  color: var(--gray-mid);
  padding: 13px 24px;
  font-size: .95rem;
  border: 2px solid var(--gray-light);
}
.btn--ghost:hover { border-color: var(--coral); color: var(--coral); }

/* ── Section helpers ── */
.section-badge,
.about__badge,
.cta-final__badge {
  display: inline-block;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-dark);
}
.section-title .highlight { color: var(--coral); }
.section-sub {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 540px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-sub { margin-left: auto; margin-right: auto; }

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in--delay { transition-delay: .18s; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.3rem;
}
.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.nav__logo-img--footer {
  height: 44px;
  filter: brightness(0) invert(1);
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--coral);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}
.logo-text { color: var(--gray-dark); letter-spacing: -.02em; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-mid);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--coral); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  background: var(--offwhite);
  border-top: 1px solid var(--gray-light);
  padding: 20px 24px 28px;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 16px; }
.nav__mobile a { font-size: 1rem; font-weight: 500; color: var(--gray-dark); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  background: var(--offwhite);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,230,211,.8) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.hero__badge {
  display: inline-block;
  background: var(--beige);
  color: var(--coral);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero__headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-dark);
  margin-bottom: 20px;
}
.hero__headline em {
  font-style: normal;
  color: var(--coral);
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__sub strong { color: var(--gray-dark); }
.hero__ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__trust {
  margin-top: 20px;
  font-size: .85rem;
  color: var(--gray-mid);
}
.hero__trust::before { content: '✓  '; color: var(--coral); font-weight: 700; }

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero__blob {
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle at 40% 40%, var(--beige), var(--coral-soft));
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
  z-index: 0;
}
.hero__illustration {
  position: relative;
  z-index: 1;
  width: 300px;
  height: 320px;
}
.illus__avatar {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.illus__avatar-ring {
  width: 130px; height: 130px;
  border: 3px dashed rgba(255,107,91,.3);
  border-radius: 50%;
  position: absolute;
  top: -15px; left: -15px;
  animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.illus__avatar-inner {
  width: 100px; height: 100px;
  background: var(--coral-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.illus__avatar-inner svg { width: 70px; height: 70px; }

.illus__card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  font-size: .82rem;
  white-space: nowrap;
}
.illus__card strong { display: block; font-weight: 700; color: var(--gray-dark); font-size: .84rem; }
.illus__card span { color: var(--gray-mid); font-size: .78rem; }
.illus__card--top { top: 12px; left: -20px; }
.illus__card--bottom { bottom: 40px; right: -24px; }
.illus__icon { font-size: 1.2rem; }

.illus__stat {
  position: absolute;
  bottom: 10px; left: -10px;
  background: var(--coral);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  text-align: center;
}
.illus__stat-num { display: block; font-size: 1.3rem; font-weight: 800; line-height: 1; }
.illus__stat-label { font-size: .7rem; opacity: .88; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about {
  background: var(--beige);
  padding: 96px 0;
}
.about__inner { text-align: center; }
.about__text {
  font-size: 1.1rem;
  color: var(--gray-mid);
  max-width: 660px;
  margin: 20px auto 56px;
  line-height: 1.8;
}
.about__text strong { color: var(--gray-dark); }
.about__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.about__stat { text-align: center; }
.about__stat-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
}
.about__stat-label {
  font-size: .85rem;
  color: var(--gray-mid);
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   SERVICES / PILLARS
═══════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--offwhite);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pillar-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pillar-card__header {
  padding: 32px 28px 28px;
  color: #fff;
}
.pillar-card--lavender .pillar-card__header { background: var(--lavender-bg); }
.pillar-card--coral    .pillar-card__header { background: var(--coral); }

.pillar-card__script {
  display: block;
  font-family: var(--font-script);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
  opacity: .92;
}
.pillar-card__title {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 2px;
}
.pillar-card__list {
  background: #fff;
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.pillar-card__list li {
  font-size: .9rem;
  color: var(--gray-mid);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.pillar-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}
.pillar-card--coral .pillar-card__list li::before { color: var(--coral); }

/* ═══════════════════════════════════════
   BENEFITS
═══════════════════════════════════════ */
.benefits {
  background: var(--beige);
  padding: 100px 0;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  max-width: 840px;
  margin: 0 auto;
}
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.benefit-item__icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.1));
}
.benefit-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 6px;
}
.benefit-item__text {
  font-size: .9rem;
  color: var(--gray-mid);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials {
  background: var(--offwhite);
  padding: 100px 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testimonial-card__stars {
  color: #FFB830;
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonial-card__quote {
  font-size: .95rem;
  color: var(--gray-mid);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-card__quote::before { content: '"'; }
.testimonial-card__quote::after  { content: '"'; }
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: normal;
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  background: var(--coral);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.testimonial-card__avatar--blue  { background: var(--blue); }
.testimonial-card__avatar--peach { background: #FFAB91; }
.testimonial-card__name {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--gray-dark);
}
.testimonial-card__role {
  display: block;
  font-size: .8rem;
  color: var(--gray-mid);
}

/* ═══════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════ */
.cta-final {
  position: relative;
  background: var(--gray-dark);
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,107,91,.18) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(139,168,212,.12) 0%, transparent 55%);
  pointer-events: none;
}
.cta-final__inner { position: relative; }
.cta-final__badge { background: rgba(255,107,91,.15); color: var(--coral); }
.cta-final__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 16px 0 20px;
  line-height: 1.2;
}
.cta-final__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-final__sub strong { color: rgba(255,255,255,.9); }
.cta-final__fine {
  margin-top: 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: #222;
  color: rgba(255,255,255,.7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding: 64px 24px 48px;
}
.footer__logo { margin-bottom: 14px; }
.footer__logo .logo-text { color: #fff; }
.footer__tagline {
  font-size: .9rem;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 20px;
}
.footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: #25D366;
  transition: opacity var(--transition);
}
.footer__whatsapp:hover { opacity: .8; }
.footer__links-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--coral); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.5);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__trust { text-align: center; }
  .hero__visual { min-height: 300px; }
  .hero__blob { width: 280px; height: 280px; }
  .hero__illustration { width: 260px; height: 260px; }
  .illus__card--top { left: -8px; }
  .illus__card--bottom { right: -8px; }

  .pillars__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; gap: 24px; }

  .footer__inner { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

@media (max-width: 600px) {
  .hero { padding: 56px 0 72px; }
  .about, .services, .benefits, .testimonials, .cta-final { padding: 72px 0; }

  .hero__headline { font-size: 1.9rem; }
  .hero__visual { display: none; }

  .about__stats { gap: 28px; }
  .about__stat-num { font-size: 2rem; }

  .hero__ctas { flex-direction: column; align-items: center; }
  .btn--ghost { width: 100%; justify-content: center; }

  .cta-final__title { font-size: 1.8rem; }
}
