/*
Theme Name: temabasico
Author: PRACTICAS
Version: 1.0
*/
    :root {
      --teal:        #2BBFB3;
      --teal-light:  #A8EDE9;
      --teal-pale:   #E4F9F8;
      --violet:      #6B5CE7;
      --violet-soft: #EDE9FF;
      --magenta:     #E91E8C;
      --magenta-mid: #FF6BBF;
      --magenta-pale:#FFE0F5;
      --rose:        #FF2D78;
      --sand:        #FDF7F0;
      --ink:         #1A1A2E;
      --ink-mid:     #4A4A6A;
      --ink-light:   #9999BB;
      --white:       #FFFFFF;
      --radius:      18px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw; height: 72px;
      background: rgba(255,255,255,.90);
      backdrop-filter: blur(14px);
      box-shadow: 0 1px 0 0 rgba(233,30,140,.15), 0 2px 16px rgba(233,30,140,.06);
    }

    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Syne', sans-serif;
      font-weight: 800; font-size: 1.25rem;
      color: var(--ink); text-decoration: none;
    }

    .nav-logo-badge {
      width: 38px; height: 38px;
      background: linear-gradient(135deg, var(--magenta), var(--teal));
      border-radius: 10px;
      display: grid; place-items: center;
      color: white; font-size: .75rem; font-weight: 800;
    }

    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      font-size: .9rem; font-weight: 500;
      color: var(--ink-mid); text-decoration: none; transition: color .2s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--magenta); }

    .nav-cta {
      background: linear-gradient(135deg, var(--magenta), #c4146e);
      color: white; padding: 9px 22px; border-radius: 50px;
      font-size: .88rem; font-weight: 600; text-decoration: none;
      transition: box-shadow .2s, transform .15s;
    }
    .nav-cta:hover { box-shadow: 0 4px 20px rgba(233,30,140,.45); transform: translateY(-1px); }

    /* ── PAGE HEADER ── */
    .page-header-me {
      padding: 72px 5vw 60px;
      background: linear-gradient(145deg, #fff0f8 0%, var(--teal-pale) 50%, #f5f0ff 100%);
      position: relative; overflow: hidden; text-align: center;
    }

    .page-header-me ::before {
      content: '';
      position: absolute; width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(233,30,140,.12) 0%, transparent 70%);
      top: -200px; left: -100px; pointer-events: none;
    }
    .page-header-me ::after {
      content: '';
      position: absolute; width: 380px; height: 380px; border-radius: 50%;
      background: radial-gradient(circle, rgba(43,191,179,.14) 0%, transparent 70%);
      bottom: -100px; right: -60px; pointer-events: none;
    }

    .page-header-me > * { position: relative; z-index: 1; }

    .breadcrumb {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .8rem; color: var(--ink-light); margin-bottom: 20px;
    }
    .breadcrumb a { color: var(--magenta); text-decoration: none; font-weight: 500; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb span { color: var(--ink-light); }


    .page-tag-me {
      display: inline-block;
      font-size: .78rem; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--magenta); margin-bottom: 14px;
    }

    .page-title-me {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.1; color: var(--ink);
      margin-bottom: 16px;
    }

    .page-title-me em {
      font-style: normal;
      background: linear-gradient(90deg, var(--magenta), var(--teal));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }

    .page-subtitle-me {
      font-size: 1.05rem; line-height: 1.7; color: var(--ink-mid);
      font-weight: 300; max-width: 600px; margin: 0 auto;
    }

    /* ── STATS BAND ── */
    .stats-band {
      background: white;
      border-top: 1px solid rgba(233,30,140,.1);
      border-bottom: 1px solid rgba(233,30,140,.1);
      display: flex; justify-content: center; flex-wrap: wrap;
      padding: 0 5vw;
    }

    .stat-item {
      flex: 1; min-width: 140px; max-width: 220px;
      text-align: center; padding: 28px 20px;
      border-right: 1px solid rgba(233,30,140,.08);
      transition: background .2s;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item:hover { background: var(--magenta-pale); }

    .stat-num {
      font-family: 'Syne', sans-serif; font-weight: 800; font-size: 2rem;
      background: linear-gradient(135deg, var(--magenta), var(--teal));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .stat-label { font-size: .8rem; color: var(--ink-mid); margin-top: 4px; }


  /* ── GOALS ── */
    .goals { background: white; }

    .goals-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 20px;
      margin-top: 48px;
    }

    .goal-chip {
      background: white; border-radius: 14px; padding: 22px 24px;
      display: flex; align-items: flex-start; gap: 14px;
      box-shadow: 0 2px 14px rgba(233,30,140,.08);
      transition: transform .2s, box-shadow .2s;
    }
    .goal-chip:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(233,30,140,.16); }

    .goal-icon {
      width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
      display: grid; place-items: center; font-size: 1.1rem;
    }
    .goal-icon.teal  { background: var(--teal-pale); }
    .goal-icon.vio   { background: var(--violet-soft); }
    .goal-icon.rose  { background: var(--magenta-pale); }
    .goal-icon.sand  { background: #FFF3E5; }

    .goal-body h4 {
      font-family: 'Syne', sans-serif; font-weight: 700; font-size: .92rem;
      color: var(--ink); margin-bottom: 4px;
    }
    .goal-body p { font-size: .82rem; line-height: 1.55; color: var(--ink-mid); }
