.elementor-78924 .elementor-element.elementor-element-fc48ef1{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-6a0cbc6 */:root {
      --bg-primary: #0a0a0a;
      --bg-secondary: #111111;
      --accent: #ffe100;
      --accent-warm: #e2c374;
      --text-primary: #ffffff;
      --text-muted: #b8b8b8;
      --border-subtle: rgba(255,255,255,0.08);
      --accent-danger: #7f1d1d;
      --font-main: 'Montserrat', sans-serif;
      --radius-card: 20px;
      --radius-btn: 10px;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-main);
      background-color: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── LAYOUT ── */
    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .row {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
    }
    .col { flex: 1; min-width: 280px; }
    .col-text { flex: 1.1; }
    .col-form { flex: 0.9; min-width: 300px; }

    /* ── TYPOGRAPHY ── */
    .eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 4px;
      padding: 6px 14px;
      margin-bottom: 24px;
    }
    .text-accent { color: var(--accent); }
    .text-muted { color: var(--text-muted); }

    h1.hero-name {
      font-size: clamp(52px, 7vw, 80px);
      font-weight: 900;
      color: var(--accent);
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }
    h1.hero-sub {
      font-size: clamp(22px, 3.5vw, 36px);
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .hero-desc {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 520px;
      margin-bottom: 32px;
      line-height: 1.7;
    }

    /* ── BUTTONS ── */
    .btn-cta {
      background-color: var(--accent);
      color: #000000;
      font-family: var(--font-main);
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: none;
      border-radius: var(--radius-btn);
      padding: 16px 40px;
      cursor: pointer;
      display: inline-block;
      text-decoration: none;
      transition: background-color 0.2s ease, transform 0.15s ease;
      width: 100%;
      text-align: center;
    }
    .btn-cta:hover {
      background-color: #f5d800;
      transform: translateY(-2px);
    }

    /* ── HERO ── */
    .section-hero {
      position: relative;
      padding: 100px 0 80px;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://estulin.media/wp-content/uploads/2026/06/hero_bg.jpg');
      background-size: cover;
      background-position: center;
      opacity: 0.22;
      z-index: 0;
    }
    .hero-bg-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(10,10,10,0.95) 40%, rgba(10,10,10,0.5) 100%);
      z-index: 1;
    }
    .hero-fade-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 120px;
      background: linear-gradient(to bottom, transparent, var(--bg-primary));
      z-index: 2;
    }
    .section-hero .container { position: relative; z-index: 3; }

    /* ── FORM CARD ── */
    .form-card {
      background: #111111;
      border: 1px solid rgba(255,225,0,0.2);
      border-radius: var(--radius-card);
      padding: 36px 32px;
    }
    .form-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 8px;
    }
    .form-card p.form-sub {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 24px;
      line-height: 1.5;
    }
    .form-card .mailpoet-shortcode {
      /* El shortcode [mailpoet_form id="3"] se renderiza aquí */
    }

    /* Estilos base para formulario MailPoet (override theme) */
    .form-card input[type="text"],
    .form-card input[type="email"] {
      width: 100%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 14px 16px;
      color: #ffffff;
      font-family: var(--font-main);
      font-size: 14px;
      margin-bottom: 12px;
      outline: none;
      transition: border-color 0.2s ease;
    }
    .form-card input[type="text"]:focus,
    .form-card input[type="email"]:focus {
      border-color: rgba(255,225,0,0.5);
    }
    .form-card input[type="submit"] {
      background-color: var(--accent);
      color: #000000;
      font-family: var(--font-main);
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: none;
      border-radius: var(--radius-btn);
      padding: 16px 40px;
      cursor: pointer;
      width: 100%;
      transition: background-color 0.2s ease, transform 0.15s ease;
    }
    .form-card input[type="submit"]:hover {
      background-color: #f5d800;
      transform: translateY(-2px);
    }
    .form-note {
      font-size: 11px;
      color: var(--text-muted);
      text-align: center;
      margin-top: 14px;
      letter-spacing: 0.03em;
    }

    /* ── WHAT YOU GET ── */
    .section-benefits {
      padding: 80px 0;
      background: var(--bg-secondary);
    }
    .section-benefits h2 {
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 40px;
      text-align: center;
    }
    .benefits-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .benefit-item {
      background: var(--bg-primary);
      border: 0.94px solid var(--border-subtle);
      border-radius: var(--radius-card);
      padding: 28px 24px;
      flex: 1;
      min-width: 240px;
      max-width: 340px;
      transition: border-color 0.25s ease;
    }
    .benefit-item:hover { border-color: rgba(255,225,0,0.25); }
    .benefit-icon {
      font-size: 22px;
      color: var(--accent);
      margin-bottom: 14px;
    }
    .benefit-item h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 8px;
    }
    .benefit-item p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ── 300 SEMANAS ── */
    .section-journey {
      padding: 80px 0;
      background: var(--bg-primary);
    }
    .section-journey h2 {
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 16px;
    }
    .journey-number {
      font-size: clamp(80px, 12vw, 140px);
      font-weight: 900;
      color: var(--accent);
      line-height: 1;
      opacity: 0.15;
      position: absolute;
      top: 0;
      right: 0;
      pointer-events: none;
    }
    .journey-wrapper {
      position: relative;
      overflow: hidden;
    }
    .journey-lead {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 560px;
      margin-bottom: 32px;
      line-height: 1.75;
    }
    .topics-list {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .topics-list li {
      background: var(--bg-secondary);
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      padding: 10px 18px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: 0.04em;
      transition: border-color 0.2s ease, color 0.2s ease;
    }
    .topics-list li:hover {
      border-color: rgba(255,225,0,0.3);
      color: var(--text-primary);
    }
    .journey-closing {
      margin-top: 28px;
      font-size: 15px;
      color: var(--text-muted);
      font-style: italic;
      line-height: 1.7;
      border-left: 3px solid rgba(255,225,0,0.4);
      padding-left: 20px;
    }

    /* ── REFLEXIÓN EXTRAORDINARIA ── */
    .section-reflection {
      padding: 80px 0;
      background: var(--bg-secondary);
    }
    .section-reflection h2 {
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 32px;
      text-align: center;
    }
    .questions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin-top: 32px;
    }
    .question-card {
      background: var(--bg-primary);
      border: 0.94px solid var(--border-subtle);
      border-radius: var(--radius-card);
      padding: 24px;
      transition: border-color 0.25s ease;
    }
    .question-card:hover { border-color: rgba(255,225,0,0.2); }
    .question-mark {
      font-size: 28px;
      font-weight: 900;
      color: var(--accent);
      opacity: 0.4;
      line-height: 1;
      margin-bottom: 10px;
    }
    .question-card p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .reflection-intro {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
      line-height: 1.75;
    }

    /* ── ABOUT ── */
    .section-about {
      padding: 80px 0;
      background: var(--bg-primary);
    }
    .about-image-wrap {
      text-align: center;
    }
    .about-image-wrap img {
      max-width: 340px;
      width: 100%;
      border-radius: 16px;
      filter: grayscale(15%);
    }
    .section-about h2 {
      font-size: clamp(22px, 3vw, 30px);
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .section-about p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 16px;
    }

    /* ── CTA FINAL ── */
    .section-cta-final {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .cta-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://estulin.media/wp-content/uploads/2026/06/cta_footer_bg.jpg');
      background-size: cover;
      background-position: center;
      opacity: 0.18;
      z-index: 0;
    }
    .cta-bg-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, var(--bg-primary), rgba(10,10,10,0.85), var(--bg-primary));
      z-index: 1;
    }
    .section-cta-final .container { position: relative; z-index: 2; }
    .cta-card {
      border: 1px solid var(--accent);
      background: rgba(17,17,17,0.9);
      border-radius: var(--radius-card);
      padding: 52px 40px;
      max-width: 680px;
      margin: 0 auto;
    }
    .cta-card h2 {
      font-size: clamp(22px, 3vw, 30px);
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 12px;
    }
    .cta-card h3 {
      font-size: clamp(18px, 2.5vw, 24px);
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 24px;
    }
    .cta-card p {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 32px;
      line-height: 1.65;
    }
    .btn-cta-lg {
      background-color: var(--accent);
      color: #000000 !important;
      font-family: var(--font-main);
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: none;
      border-radius: var(--radius-btn);
      padding: 20px 52px;
      cursor: pointer;
      display: inline-block;
      text-decoration: none;
      transition: background-color 0.2s ease, transform 0.15s ease;
    }
    .btn-cta-lg:hover {
      background-color: #f5d800;
      transform: translateY(-2px);
    }

    /* ── FOOTER ── */
    .site-footer {
      background: var(--bg-secondary);
      border-top: 1px solid var(--border-subtle);
      padding: 32px 0;
      text-align: center;
    }
    .site-footer p {
      font-size: 12px;
      color: var(--text-muted);
      letter-spacing: 0.04em;
    }
    .site-footer a {
      color: var(--accent-warm);
      text-decoration: none;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .section-hero { padding: 70px 0 60px; }
      .row { flex-direction: column; gap: 24px; }
      .col-form { width: 100%; }
      .journey-number { font-size: 80px; }
      .cta-card { padding: 36px 24px; }
      .section-cta-final { padding: 70px 0; }
    }
    
    .form-card input[type="text"]::placeholder, .form-card input[type="email"]::placeholder{
        color: #cccccc !important;
    }/* End custom CSS */