*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --coral:    #ff6b6b;
  --coral2:   #ff8e53;
  --peach:    #ffb347;
  --gold:     #f4c430;
  --rose:     #f5c6d0;
  --blush:    #ffd6e0;
  --magenta:  #e84393;
  --burgundy: #8b1a3a;
  --violet:   #2d1b4e;
  --night:    #0d0a1a;
  --midnight: #120d2e;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--night);
  color: #fff;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--night); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--coral), var(--magenta)); border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, backdrop-filter .4s;
}
nav.scrolled {
  background: rgba(13,10,26,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,107,107,.12);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  background: linear-gradient(135deg, var(--coral), var(--peach), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; text-decoration: none;
}
.nav-logo img{
  height: 40px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.3rem; border-radius: 50px;
  background: linear-gradient(135deg, var(--coral), var(--magenta));
  color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .88rem;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(232,67,147,.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,67,147,.45); }
.nav-back {
  font-size: .85rem; font-weight: 500; letter-spacing: .03em;
  color: rgba(255,255,255,.65); text-decoration: none;
  transition: color .2s;
}
@media (max-width: 991px){
  .nav-back { display: none; }
}
.nav-back:hover { color: #fff; }

/* ── HERO ── */
#hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
  position: relative; overflow: hidden;
}
/* ── HERO VIDEO ── */
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
}

.hero-bg {
      mix-blend-mode: plus-lighter;
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(232,67,147,.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255,107,107,.25) 0%, transparent 55%),
    radial-gradient(ellipse 70% 70% at 60% 80%, rgba(244,196,48,.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 70%, rgba(139,26,58,.4) 0%, transparent 55%),
    linear-gradient(160deg, #0d0a1a 0%, #1a0d2e 40%, #0d1a2e 80%, #0d0a1a 100%);
  animation: meshShift 12s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0%   { filter: hue-rotate(0deg) brightness(1); }
  50%  { filter: hue-rotate(8deg)  brightness(1.05); }
  100% { filter: hue-rotate(-5deg) brightness(.97); }
}

/* Decorative orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none; z-index: 2;
}
.orb-1 { width: 400px; height: 400px; background: rgba(255,107,107,.18); top: -100px; left: -100px; animation: float1 8s ease-in-out infinite; }
.orb-2 { width: 300px; height: 300px; background: rgba(232,67,147,.22); top: 30%; right: -80px; animation: float2 10s ease-in-out infinite; }
.orb-3 { width: 250px; height: 250px; background: rgba(244,196,48,.15); bottom: 10%; left: 20%; animation: float3 7s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-40px) scale(1.1); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-20px,30px) scale(.9); } }
@keyframes float3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(15px,-20px) scale(1.05); } }

/* Decorative shapes */
.shape {
  position: absolute; z-index: 2; pointer-events: none; opacity: .08;
}
.shape-ring {
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid var(--rose);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: spin 40s linear infinite;
}
.shape-ring-2 {
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px dashed var(--peach);
  top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(45deg);
  animation: spin 25s linear infinite reverse;
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero-eyebrow {
  font-family: var(--font-body); font-size: .8rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--peach); opacity: .9;
  position: relative; z-index: 1;
  margin-bottom: 1.2rem;
  animation: fadeUp .8s .2s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 11rem);
  font-weight: 700; line-height: .9;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #fff 0%, var(--rose) 30%, var(--coral) 55%, var(--peach) 75%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative; z-index: 1;
  animation: fadeUp .8s .35s both;
}
.hero-title img{
  width: 90%;
}
@media (min-width: 992px){
  .hero-title { width: 550px; }
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.85);
  margin-top: .8rem; position: relative; z-index: 1;
  animation: fadeUp .8s .5s both;
}
.hero-desc {
  max-width: 480px; margin: 1.6rem auto 0;
  font-size: clamp(.95rem, 2vw, 1.05rem);
  color: rgba(255,255,255,.6); line-height: 1.7;
  position: relative; z-index: 1;
  animation: fadeUp .8s .65s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin-top: 2.5rem; position: relative; z-index: 1;
  animation: fadeUp .8s .8s both;
}
.btn-primary {
  padding: .85rem 2rem; border-radius: 50px; font-weight: 600; font-size: 1rem;
  background: linear-gradient(135deg, var(--coral), var(--magenta));
  color: #fff; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 6px 30px rgba(232,67,147,.4);
  transition: transform .25s, box-shadow .25s;
  font-family: var(--font-body);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(232,67,147,.55); }
.btn-ghost {
  padding: .85rem 2rem; border-radius: 50px; font-weight: 600; font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,.25); color: #fff;
  text-decoration: none; backdrop-filter: blur(8px);
  background: rgba(255,255,255,.06);
  transition: border-color .25s, background .25s, transform .25s;
  font-family: var(--font-body);
}
.btn-ghost:hover {
  border-color: var(--coral); background: rgba(255,107,107,.1);
  transform: translateY(-3px);
}

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%) !important;
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .4rem;
  opacity: .4; animation: fadeUp 1s 1.2s both;
}
.scroll-hint span { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.scroll-dot {
  width: 20px; height: 32px; border: 1.5px solid rgba(255,255,255,.4); border-radius: 10px;
  display: flex; justify-content: center; padding-top: 5px;
}
.scroll-dot::before {
  content: ''; width: 4px; height: 8px; background: #fff; border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 1; } 75% { transform: translateY(10px); opacity: 0; } }

/* ── SECTION BASE ── */
section { position: relative; overflow: hidden; }

.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--coral);
  display: block; margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 300; line-height: .8;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-body {
  font-size: 1.05rem; color: rgba(255,255,255,.65); line-height: 1.75;
  max-width: 580px;
}

/* ── WHAT IS ── */
#what {
  padding: 0;
  background: linear-gradient(180deg, #0d0a1a 0%, #1a0f1e 50%, #100d1e 100%);
  overflow: hidden;
}
@media (min-width: 992px){
  #what { padding: 7rem 0; }
}
.what-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 0;
  position: relative; min-height: 520px;
  padding: 0 1.5rem;
}
@media(min-width: 768px) {
  .what-inner { grid-template-columns: 1fr 1fr; align-items: center; padding: 0 4rem; }
}

/* Image: right-half background */
.what-visual {
  position: absolute; inset: 0; left: 30%; z-index: 0;
  pointer-events: none;
}
@media(max-width: 767px) {
  .what-visual {
    position: relative; left: auto; inset: auto;
    height: 260px; margin: 0rem -1.5rem -7rem;
  }
}
.what-img-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .5s ease, transform .6s ease;
  object-position: center left;
}
.what-img-bg.switching {
  opacity: 0; transform: scale(1.04);
}

/* Left col needs z-index to sit above the bg image */
.what-inner > div:first-child {
  position: relative; z-index: 2;
  padding: 2rem 0;
}

.what-bullets { display: flex; flex-direction: column; gap: 1.8rem; margin-top: 2rem; }
.what-bullet {
  display: flex; gap: 1.2rem; align-items: flex-start;
  opacity: 0; transform: translateX(-20px);
  transition: opacity .6s, transform .6s;
}
.what-bullet.visible { opacity: 1; transform: none; }
.what-bullet:nth-child(2) { transition-delay: .15s; }
.what-bullet:nth-child(3) { transition-delay: .3s; }
.bullet-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: rgba(255,255,255,.6);
  background: linear-gradient(135deg, rgba(255,107,107,.1), rgba(232,67,147,.1));
  border: 1px solid rgba(255,107,107,.15);
  transition: background .3s, border-color .3s, color .3s;
}
.bullet-text h3 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  margin-bottom: .3rem;
}
.bullet-text p { font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── Bullet active/hover state ── */
.what-bullet {
  cursor: pointer;
  border-radius: 16px;
  padding: .75rem;
  transition: background .25s;
}
.what-bullet:hover,
.what-bullet.active {
  background: rgba(255,107,107,.07);
}
.what-bullet.active .bullet-icon {
  background: linear-gradient(135deg, rgba(255,107,107,.25), rgba(232,67,147,.25));
  border-color: rgba(255,107,107,.4);
  color: var(--coral);
}
.what-bullet.active .bullet-text h3 { color: var(--rose); }

/* ── FEATURES ── */
#features {
  padding: 7rem 1.5rem;
  background:
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(255,107,107,.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(244,196,48,.06) 0%, transparent 50%),
    linear-gradient(180deg, #1e1428 0%, #221830 50%, #1a1228 100%);
}
.features-header { text-align: center; max-width: 620px; margin: 0 auto 4rem; }
.features-header .section-body { margin: 1rem auto 0; text-align: center; }
.features-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}
.feature-card {
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 1.75rem;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s, transform .5s, border-color .3s, box-shadow .3s;
  cursor: default;
}
.feature-card.visible { opacity: 1; transform: none; }
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,107,.3);
  box-shadow: 0 16px 48px rgba(255,107,107,.1);
}
.feature-card:nth-child(1) { --accent: var(--coral); }
.feature-card:nth-child(2) { --accent: var(--magenta); }
.feature-card:nth-child(3) { --accent: var(--peach); }
.feature-card:nth-child(4) { --accent: var(--gold); }
.feature-card:nth-child(5) { --accent: #4fc3f7; }
.feature-card:nth-child(6) { --accent: #ab47bc; }
.feature-card:nth-child(7) { --accent: #66bb6a; }
.feature-card:nth-child(8) { --accent: #25d366; }
.feature-icon {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 20%, transparent), color-mix(in srgb, var(--accent) 10%, transparent));
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}
.feature-card h3 {
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  margin-bottom: .4rem; color: var(--accent); letter-spacing: -.01em;
}
.feature-card p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── SHOWCASE ── */
#showcase {
  padding: 7rem 1.5rem;
  background:
    radial-gradient(ellipse 90% 60% at 50% 50%, rgba(45,27,78,.8) 0%, transparent 70%),
    linear-gradient(180deg, #0a1020 0%, #0d0a1a 30%, #120d2e 70%, #0d0a1a 100%);
}
.showcase-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media(min-width: 900px) {
  .showcase-inner { grid-template-columns: 1fr 1.4fr; }
}
.showcase-text { max-width: 420px; }
.showcase-text .section-title { margin-bottom: 1rem; }
.showcase-text p { margin-bottom: 2rem; }

.showcase-device {
  position: relative; display: flex; justify-content: center;
}
.device-desktop {
  width: 100%; max-width: 580px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.05);
}
.device-bar {
  background: rgba(255,255,255,.06);
  padding: .7rem 1rem;
  display: flex; align-items: center; gap: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.device-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.device-dot:nth-child(1) { background: #ff5f57; }
.device-dot:nth-child(2) { background: #febc2e; }
.device-dot:nth-child(3) { background: #28c840; }
.device-bar-url {
  flex: 1; background: rgba(255,255,255,.08); border-radius: 6px;
  padding: .3rem .7rem; font-size: .7rem; color: rgba(255,255,255,.4);
  margin-left: .5rem;
}
.device-screen img {
  width: 100%; display: block;
  filter: brightness(.9);
}

.phone-float {
  position: absolute;
  bottom: -20px; right: -15px;
  width: 120px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.phone-float img { width: 100%; display: block; }
@media(max-width: 480px) { .phone-float { display: none; } }

/* ── EVENTS ── */
#events {
  padding: 7rem 1.5rem;
  background:
    radial-gradient(ellipse 80% 50% at 0% 50%, rgba(255,107,107,.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(244,196,48,.06) 0%, transparent 55%),
    linear-gradient(180deg, #0d0a1a 0%, #120e18 50%, #0d0a1a 100%);
}
.events-header { text-align: center; max-width: 580px; margin: 0 auto 4rem; }
.events-header .section-body { margin: 1rem auto 0; text-align: center; }
.events-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media(min-width: 640px) { .events-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width: 900px) { .events-grid { grid-template-columns: repeat(6, 1fr); } }

.event-card {
  border-radius: 16px; overflow: hidden; position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  opacity: 0; transform: scale(.93);
  transition: opacity .5s, transform .5s, box-shadow .3s;
}
.event-card.visible { opacity: 1; transform: scale(1); }
.event-card:hover { transform: scale(1.04); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.event-card:nth-child(2) { transition-delay: .08s; }
.event-card:nth-child(3) { transition-delay: .16s; }
.event-card:nth-child(4) { transition-delay: .24s; }
.event-card:nth-child(5) { transition-delay: .32s; }
.event-card:nth-child(6) { transition-delay: .40s; }
.event-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 30%, transparent 70%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: .9rem;
}
.event-emoji { font-size: 1.4rem; margin-bottom: .2rem; }
.event-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: .95rem; color: #fff; line-height: 1.2;
}

/* ── PROCESS ── */
#process {
  padding: 7rem 1.5rem;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(232,67,147,.12) 0%, transparent 60%),
    linear-gradient(180deg, #0d0a1a 0%, #14101e 50%, #0d0a1a 100%);
}
.process-inner { max-width: 800px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-header .section-body { margin: 1rem auto 0; text-align: center; }
.steps { display: flex; flex-direction: column; gap: 2rem; position: relative; }
.steps::before {
  content: '';
  position: absolute; left: 28px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--coral), var(--magenta), var(--gold));
  opacity: .3;
}
.step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  opacity: 0; transform: translateX(-20px);
  transition: opacity .6s, transform .6s;
}
.step.visible { opacity: 1; transform: none; }
.step:nth-child(2) { transition-delay: .15s; }
.step:nth-child(3) { transition-delay: .3s; }
.step-num {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 1.5rem; font-weight: 700;
  position: relative; z-index: 1;
}
.step:nth-child(1) .step-num { background: linear-gradient(135deg, var(--coral), var(--coral2)); box-shadow: 0 8px 24px rgba(255,107,107,.3); }
.step:nth-child(2) .step-num { background: linear-gradient(135deg, var(--magenta), var(--burgundy)); box-shadow: 0 8px 24px rgba(232,67,147,.3); }
.step:nth-child(3) .step-num { background: linear-gradient(135deg, var(--peach), var(--gold)); color: var(--night); box-shadow: 0 8px 24px rgba(244,196,48,.3); }
.step-content h3 {
  font-family: var(--font-body); font-size: 1.4rem; font-weight: 600;
  margin-bottom: .4rem;
}
.step-content p { font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ── CTA FINAL ── */
#contact {
  padding: 8rem 1.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(232,67,147,.15) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 10%, rgba(255,107,107,.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(244,196,48,.08) 0%, transparent 55%),
    linear-gradient(180deg, #1e1428 0%, #221830 50%, #1e1428 100%);
}
.cta-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
  position: relative;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  font-weight: 300; line-height: .8;
  margin-bottom: 1.2rem;
  position: relative;
}
.cta-title em{
  position: absolute; left: 35%; top: 20%; transform: translate(-50%,-50%);
  white-space: nowrap;

}
.cta-title .accent {
  background: linear-gradient(135deg, var(--coral), var(--peach), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-title .accent img{
  width: 600px;
}
.logo-gradient {
  position: relative;
  display: inline-block;
  line-height: 0;
}
.logo-gradient img {
  display: block;
  width: 600px;
  max-width: 90vw;
  height: auto;
}
.logo-gradient::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--coral), var(--peach), var(--gold));
  mix-blend-mode: darken;
  border-radius: 4px;
}
.cta-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.65); margin-bottom: 3rem;
  line-height: 1.7;
}
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: 1.1rem 2.4rem; border-radius: 50px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff; font-weight: 700; font-size: 1.1rem;
  text-decoration: none; font-family: var(--font-body);
  box-shadow: 0 8px 40px rgba(37,211,102,.35);
  transition: transform .25s, box-shadow .25s;
}
.btn-whatsapp:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(37,211,102,.5); }
.btn-whatsapp svg { width: 26px; height: 26px; fill: #fff; }

.cta-email {
  font-size: .88rem; color: rgba(255,255,255,.4);
  text-decoration: none; transition: color .2s;
}
.cta-email:hover { color: var(--rose); }

/* floating WhatsApp bubble */
.wa-bubble {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  animation: pulse 3s ease-in-out infinite;
}
.wa-bubble:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,.6); }
.wa-bubble svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse {
  0%,100% { box-shadow: 0 8px 30px rgba(37,211,102,.45); }
  50% { box-shadow: 0 8px 30px rgba(37,211,102,.45), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ── FOOTER ── */
footer {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  background: var(--night);
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: inline-block; margin-bottom: .6rem;
}
.footer-text {
  font-size: .85rem; color: rgba(255,255,255,.35); line-height: 1.8;
}
.footer-text a { color: var(--coral); text-decoration: none; }
.footer-text a:hover { text-decoration: underline; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s, transform .7s;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media(max-width: 600px) {
  .hero-title { letter-spacing: -.03em; }
  .steps::before { display: none; }
  .what-inner { gap: 2rem; }
}
