/*
Theme Name: Eden Jouannet Lead Generation
Theme URI: https://2asidof.com/
Author: 2A SIDOF SERVICES
Author URI: https://2asidof.com/
Description: Landing page de génération de leads pour Eden Jouannet — Consultant Facebook & Instagram Ads à Madrid. Thème compatible Elementor.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: eden-jouannet
Tags: one-page, landing-page, elementor
*/

/* ============================================================
   VARIABLES DE COULEURS & DESIGN SYSTEM
   ============================================================ */
:root {
  --radius: 0.875rem;

  /* Couleurs */
  --background:    #F7F7F5;
  --foreground:    #1E1E1E;
  --card:          #ffffff;
  --card-foreground: #1E1E1E;
  --primary:       #1F7772;
  --primary-glow:  #2A9E97;
  --primary-foreground: #FAFAF9;
  --secondary:     #F2F2F0;
  --secondary-foreground: #1E1E1E;
  --muted:         #F0F0EE;
  --muted-foreground: #6B6B7A;
  --gold:          #B07D2F;
  --gold-foreground: #FAFAF9;
  --whatsapp:      #25D366;
  --border:        #E5E5E3;
  --input:         #EBEBEA;

  /* Gradients */
  --gradient-hero: radial-gradient(ellipse at top left, rgba(31,119,114,0.18) 0%, transparent 60%),
                   radial-gradient(ellipse at bottom right, rgba(176,125,47,0.15) 0%, transparent 60%),
                   linear-gradient(180deg, #F7F7F5, rgba(31,119,114,0.04));
  --gradient-primary: linear-gradient(135deg, #1F7772, #2A9E97);
  --gradient-gold:    linear-gradient(135deg, #B07D2F, #C99040);

  /* Ombres */
  --shadow-soft:    0 1px 2px rgba(30,30,30,0.04), 0 4px 16px rgba(30,30,30,0.04);
  --shadow-card:    0 2px 6px rgba(31,119,114,0.06), 0 12px 40px -12px rgba(31,119,114,0.18);
  --shadow-elegant: 0 20px 60px -20px rgba(31,119,114,0.35);
  --shadow-gold:    0 10px 40px -10px rgba(176,125,47,0.45);

  /* Typographie */
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-display: 'Poppins', system-ui, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

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

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

/* WordPress admin bar fix */
.admin-bar .ej-navbar {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .ej-navbar {
    top: 46px;
  }
}

/* ============================================================
   UTILITAIRES
   ============================================================ */
.ej-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.ej-glass {
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(31,119,114,0.10);
}

.ej-text-balance { text-wrap: balance; }

.ej-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.ej-badge--primary {
  background: rgba(31,119,114,0.12);
  color: var(--primary);
}

.ej-badge--gold {
  background: rgba(176,125,47,0.12);
  color: var(--gold);
}

.ej-badge--white {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff;
  backdrop-filter: blur(8px);
}

.ej-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  animation: ej-pulse 2s infinite;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.ej-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.ej-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.ej-btn:active {
  transform: translateY(0);
}

.ej-btn--md { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.ej-btn--lg { padding: 1rem 1.75rem; font-size: 1rem; }

.ej-btn--primary {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-elegant);
}

.ej-btn--primary:hover {
  box-shadow: 0 25px 70px -15px rgba(31,119,114,0.50);
  color: var(--primary-foreground);
}

.ej-btn--gold {
  background: var(--gradient-gold);
  color: var(--gold-foreground);
  box-shadow: var(--shadow-gold);
}

.ej-btn--gold:hover {
  color: var(--gold-foreground);
}

.ej-btn--outline {
  border: 2px solid rgba(31,119,114,0.20);
  background: rgba(255,255,255,0.60);
  backdrop-filter: blur(8px);
  color: var(--primary);
}

.ej-btn--outline:hover {
  border-color: rgba(31,119,114,0.40);
  background: #fff;
  color: var(--primary);
}

.ej-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.ej-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding-top: 0.75rem;
}

.ej-navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ej-navbar__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(31,119,114,0.10);
  box-shadow: var(--shadow-soft);
}

.ej-navbar__logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.ej-navbar__nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ej-navbar__nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.ej-navbar__nav a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .ej-navbar__nav { display: flex; }
}

/* ============================================================
   SECTION HERO
   ============================================================ */
.ej-hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background: var(--gradient-hero);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .ej-hero {
    padding-top: 9rem;
    padding-bottom: 5rem;
  }
}

.ej-hero__blob1 {
  position: absolute;
  top: -5rem;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(31,119,114,0.10);
  filter: blur(60px);
  pointer-events: none;
}

.ej-hero__blob2 {
  position: absolute;
  bottom: -8rem;
  right: -5rem;
  width: 31rem;
  height: 31rem;
  border-radius: 50%;
  background: rgba(176,125,47,0.10);
  filter: blur(60px);
  pointer-events: none;
}

.ej-hero__grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .ej-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.ej-hero__content {
  animation: ej-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) both;
}

.ej-hero__title {
  margin-top: 1.5rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--foreground);
}

.ej-hero__title span {
  color: var(--primary);
}

.ej-hero__desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 36rem;
}

.ej-hero__ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.ej-hero__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(30,30,30,0.70);
  transition: color 0.2s;
}
.ej-hero__link:hover { color: var(--primary); }

.ej-hero__trust {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.ej-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ej-hero__trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Image side */
.ej-hero__image-wrap {
  position: relative;
  animation: ej-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}

.ej-hero__image-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--gradient-primary);
  filter: blur(60px);
  opacity: 0.30;
  border-radius: 50%;
  pointer-events: none;
}

.ej-hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  animation: ej-float 6s ease-in-out infinite;
}

.ej-hero__card {
  position: absolute;
  z-index: 10;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-card);
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(31,119,114,0.10);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ej-hero__card--conv {
  top: 3rem;
  left: -0.5rem;
  animation: ej-float 6s ease-in-out 1s infinite;
}

.ej-hero__card--users {
  bottom: 4rem;
  right: 0;
  animation: ej-float 6s ease-in-out 2s infinite;
}

@media (min-width: 640px) {
  .ej-hero__card--conv { left: 1rem; }
  .ej-hero__card--users { right: 0; }
}

.ej-hero__card-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ej-hero__card-icon--primary {
  background: var(--gradient-primary);
}

.ej-hero__card-icon--gold {
  background: var(--gradient-gold);
}

.ej-hero__card-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ej-hero__card-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.ej-hero__card-value {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--foreground);
}

/* ============================================================
   SECTION PROBLEM
   ============================================================ */
.ej-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 1024px) {
  .ej-section { padding-top: 5rem; padding-bottom: 5rem; }
}

.ej-section--secondary {
  background-color: rgba(242,242,240,0.40);
}

.ej-section__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ej-section__title {
  margin-top: 0.75rem;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
}

.ej-section__subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.ej-cards-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .ej-cards-grid--2 { grid-template-columns: 1fr 1fr; }
  .ej-cards-grid--4 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .ej-cards-grid--4 { grid-template-columns: repeat(4,1fr); }
  .ej-cards-grid--3 { grid-template-columns: repeat(3,1fr); }
}

/* Problem card */
.ej-problem-card {
  position: relative;
  background: var(--card);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.ej-problem-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(31,119,114,0.10);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}

.ej-problem-card:hover .ej-problem-card__icon {
  background: var(--gradient-primary);
}

.ej-problem-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 0.3s;
}

.ej-problem-card:hover .ej-problem-card__icon svg {
  color: #fff;
}

.ej-problem-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--foreground);
}

.ej-problem-card__text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================================
   SECTION SOLUTION
   ============================================================ */
.ej-section--gradient-down {
  background: linear-gradient(180deg, var(--background), rgba(242,242,240,0.40));
}

.ej-section--center { text-align: center; }

.ej-solution-card {
  position: relative;
  background: var(--card);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ej-solution-card:hover {
  box-shadow: var(--shadow-elegant);
}

.ej-solution-card__num {
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.ej-solution-card__icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-elegant);
}

.ej-solution-card__icon-wrap svg {
  width: 20px;
  height: 20px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ej-solution-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--foreground);
}

.ej-solution-card__text {
  margin-top: 0.375rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* ============================================================
   SECTION RESULTS
   ============================================================ */
.ej-stat-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border-radius: calc(var(--radius) + 12px);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.ej-stat-card::before {
  content: '';
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(31,119,114,0.10);
  filter: blur(40px);
  pointer-events: none;
}

.ej-stat-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--muted-foreground);
  position: relative;
}

.ej-stat-card__meta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ej-stat-card__value {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 3.75rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  position: relative;
}

.ej-stat-card__label {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--foreground);
  position: relative;
}

.ej-stat-card__sub {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  position: relative;
}

/* ============================================================
   SECTION LOCAL
   ============================================================ */
.ej-local {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background: rgba(242,242,240,0.40);
}

@media (min-width: 1024px) {
  .ej-local { padding-top: 5rem; padding-bottom: 5rem; }
}

.ej-local__card {
  position: relative;
  background: var(--card);
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: grid;
}

@media (min-width: 1024px) {
  .ej-local__card { grid-template-columns: 1fr 1fr; }
}

.ej-local__content {
  padding: 2.5rem;
}

@media (min-width: 1024px) {
  .ej-local__content { padding: 3.5rem; }
}

.ej-local__content h2 {
  margin-top: 1.25rem;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--foreground);
}

.ej-local__content p {
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.ej-local__content .ej-btn {
  margin-top: 1.75rem;
}

.ej-local__visual {
  position: relative;
  min-height: 280px;
  background: linear-gradient(135deg, rgba(31,119,114,0.10), var(--background), rgba(176,125,47,0.10));
  display: grid;
  place-items: center;
  padding: 2rem;
  overflow: hidden;
}

.ej-local__dots {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle at 1px 1px, currentColor 1px, transparent 0);
  background-size: 24px 24px;
}

.ej-local__circle-outer {
  position: relative;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  border: 2px dashed rgba(31,119,114,0.30);
  display: grid;
  place-items: center;
  animation: ej-float 6s ease-in-out infinite;
}

.ej-local__circle-inner {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(31,119,114,0.10);
  display: grid;
  place-items: center;
}

.ej-local__pin {
  text-align: center;
}

.ej-local__pin svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin: 0 auto;
}

.ej-local__pin-city {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--foreground);
}

.ej-local__pin-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ============================================================
   SECTION OFFER (CTA BANNER)
   ============================================================ */
.ej-offer {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 1024px) { .ej-offer { padding-top: 5rem; padding-bottom: 5rem; } }

.ej-offer__inner {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 12px);
  background: var(--gradient-primary);
  padding: 2.5rem;
  color: var(--primary-foreground);
  box-shadow: var(--shadow-elegant);
}

@media (min-width: 1024px) {
  .ej-offer__inner { padding: 4rem; }
}

.ej-offer__blob1 {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(176,125,47,0.30);
  filter: blur(60px);
  pointer-events: none;
}

.ej-offer__blob2 {
  position: absolute;
  bottom: -8rem;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(42,158,151,0.30);
  filter: blur(60px);
  pointer-events: none;
}

.ej-offer__content { position: relative; }

.ej-offer__title {
  margin-top: 1.25rem;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  max-width: 48rem;
  color: #fff;
}

.ej-offer__title span { color: var(--gold); }

.ej-offer__desc {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.80);
  max-width: 36rem;
  line-height: 1.7;
}

.ej-offer__pills {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .ej-offer__pills { grid-template-columns: repeat(3, 1fr); }
}

.ej-offer__pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}

.ej-offer__pill svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ej-offer__cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.ej-offer__note {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.70);
}

/* ============================================================
   SECTION FINAL CTA
   ============================================================ */
.ej-finalcta {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background: var(--gradient-hero);
  overflow: hidden;
  text-align: center;
}

@media (min-width: 1024px) {
  .ej-finalcta { padding-top: 5rem; padding-bottom: 5rem; }
}

.ej-finalcta__blob1 {
  position: absolute;
  top: 33%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(31,119,114,0.15);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.ej-finalcta__blob2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(176,125,47,0.15);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.ej-finalcta__content {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
}

.ej-finalcta__title {
  margin-top: 1rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--foreground);
}

.ej-finalcta__desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.ej-finalcta__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ej-finalcta__note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ej-finalcta__note svg {
  width: 16px; height: 16px;
  color: var(--primary);
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.ej-finalcta__email-badge {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(31,119,114,0.10);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.ej-finalcta__email-badge svg {
  width: 16px; height: 16px;
  color: var(--primary);
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.ej-finalcta__email-badge a {
  color: inherit;
  transition: color 0.2s;
}
.ej-finalcta__email-badge a:hover { color: var(--primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.ej-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.ej-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .ej-footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.ej-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ej-footer__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  color: var(--primary-foreground);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
}

.ej-footer__name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--foreground);
}

.ej-footer__sep {
  color: rgba(107,107,122,0.60);
}

.ej-footer__copy a {
  color: var(--primary);
  font-weight: 500;
}
.ej-footer__copy a:hover { text-decoration: underline; }

/* ============================================================
   WHATSAPP FLOTTANT
   ============================================================ */
.ej-whatsapp-sticky {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: #25D366;
  color: #fff;
  padding: 0.875rem 1.25rem 0.875rem 1rem;
  box-shadow: var(--shadow-elegant);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  transition: transform 0.2s;
  text-decoration: none;
  animation: ej-pulse-ring 2s infinite;
}

.ej-whatsapp-sticky:hover {
  transform: scale(1.05);
  color: #fff;
  text-decoration: none;
}

.ej-whatsapp-sticky svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.ej-whatsapp-sticky span {
  display: none;
}

@media (min-width: 640px) {
  .ej-whatsapp-sticky span { display: inline; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes ej-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ej-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes ej-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

@keyframes ej-pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.50); }
  100% { box-shadow: 0 0 0 18px transparent; }
}
