    :root {
      --beige: #F5EFE6;
      --lavanda: #E8DFF1;
      --gris: #6E6A65;
      --oscuro: #3E3A36;
      --blanco: #FFFFFF;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat', sans-serif;
    }

    body {
      position: relative;
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: radial-gradient(
        circle at top,
        #f3e8ff 0%,
        #f8f2ec 40%,
        #fdfcfb 100%
      );
      overflow-x: hidden;
    }

    header Title, h2{
        font-size: 3.8rem;      /* antes ~3.2 */
        font-weight: 600;
        letter-spacing: 1.5px;
        color: #3f2f57;
        margin-bottom: 22px;
    }

    @media (max-width: 768px) {
        header h1 {
          font-size: 2.6rem;
        }
    }


    header p {
        font-size: 1.3rem;     /* más legible */
        line-height: 1.8;
        max-width: 620px;
        margin: 0 auto 42px;
        color: #5f4d7a;
    }


    .btn {
      display: inline-block;
      padding: 15px 30px;
      background: var(--oscuro);
      color: var(--blanco);
      text-decoration: none;
      border-radius: 30px;
      transition: background 0.3s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(107, 76, 163, 0.4);
    }


    section {
      padding: 70px 20px;
      max-width: 1100px;
      margin: auto;
      scroll-margin-top: 80px;
    }

    section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 40px;
    }

    section:first-of-type {
        padding-top: 40px;
    }


    .section-title {
        text-align: center;
        font-size: 2.4rem;
        font-weight: 600;
        margin-bottom: 50px;
        color: #3f2f57;
        position: relative;
    }

    .section-title::after {
        content: "✦ ✦ ✦";
        display: block;
        margin-top: 12px;
        font-size: 1rem;
        color: #b79ce6;
        letter-spacing: 8px;
    }


    .cards {
      display: grid;
      gap: 30px;
      max-width: 1400px;
      margin: 0 auto;
      justify-content: center; /* 🔑 ESTA ES LA CLAVE */
    }

    /* Desktop grande */
    @media (min-width: 1200px) {
    .cards {
      grid-template-columns: repeat(4, minmax(340px, 1fr));
      }
    }

    /* Tablet */
    @media (max-width: 1199px) {
    .cards {
      grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
    .cards {
      grid-template-columns: 1fr;
      }
    }



    .card {
        background: linear-gradient(
          180deg,
          #ffffff,
          #faf6ff
        );
        padding: 45px 30px 50px;
        border-radius: 28px;
        box-shadow: 0 20px 40px rgba(120, 90, 180, 0.18);
        text-align: center;
        position: relative;
    }



    .card img {
        width: 100%;
        max-width: 260px;
        margin: 0 auto 20px;
        display: block;
        border-radius: 18px;
        box-shadow: 0 15px 30px rgba(120, 90, 180, 0.25);

        /* look místico */
        background: radial-gradient(circle at top, #a044bd, #8646a3);
        padding: 3px;

        /* glow suave */
        box-shadow:
          0 10px 30px rgba(120, 90, 180, 0.25),
          inset 0 0 20px rgba(255,255,255,0.4);
    }




    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 55px rgba(90, 60, 150, 0.18);
    }



    .card h3 {
        font-size: 1.35rem;
        margin-bottom: 14px;
        color: #3b2f52;
        font-weight: 600;
    }



    .card p {
        font-size: 1rem;
        line-height: 1.8;
        color: #5f4d7a;
        max-width: 800px;
        margin-bottom: 1px;
    }

    h1 {
      font-size: 1px;
    }


    .card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 24px;
        background: radial-gradient(circle at top, rgba(200,170,255,0.15), transparent 60%);
        pointer-events: none;
    }

    .card .btn {
      margin-top: 24px;
    }



    .sobre-mi {
      text-align: center;
      max-width: 700px;
      margin: auto;
    }

    .sobre-mi p {
      margin-bottom: 20px;
      color: var(--gris);
    }

    footer {
      text-align: center;
      padding: 40px 20px;
      background: var(--lavanda);
    }

    footer p {
      margin-bottom: 10px;
      color: var(--gris);
    }

    footer a {
      color: var(--oscuro);
      text-decoration: none;
      font-weight: bold;
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 2rem;
      }
    }


    /* =====================================
      SECCIÓN PRESENTACIÓN (HERO)
      ===================================== */

    .presentacion {
        padding: 120px 20px 80px; /* Espacio para la navbar fija */
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeInHero 1.2s ease-out;
    }

    /* Animación de entrada */
    @keyframes fadeInHero {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Contenedor del Título y Avatar */
    .header-title {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 25px;
    }

    .avatar {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 15px 35px rgba(139, 79, 214, 0.2);
        margin-bottom: 20px;
        transition: transform 0.3s ease;
    }

    .avatar:hover {
        transform: scale(1.05) rotate(2deg);
    }

    .presentacion h2 {
        font-size: 3.5rem;
        color: #3f2f57;
        font-weight: 700;
        letter-spacing: -1px;
        margin: 0;
    }

    .presentacion h1 {
        font-size: 0.1rem;
        font-weight: 10;
        letter-spacing: -1px;
        margin: 0;
        padding: 0;
    }

    .visually-hidden {
      position: absolute;
      left: -9999px;
    }
    

    /* Texto de descripción */
    .presentacion p {
        font-size: 1.3rem;
        line-height: 1.8;
        color: #5f4d7a;
        max-width: 700px;
        margin-bottom: 40px;
    }

    .presentacion .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(107, 76, 163, 0.4);
    }

    /* Redes Sociales del Header */
    .social-header {
        margin-top: 40px;
        display: flex;
        gap: 20px;
    }

    .social-header a {
        font-size: 1.5rem;
        color: #8b4fd6;
        transition: all 0.3s ease;
        opacity: 0.7;
    }

    .social-header a:hover {
        opacity: 1;
        transform: translateY(-3px);
        color: #3f2f57;
    }

    /* Ajustes para Mobile */
    @media (max-width: 768px) {
        .presentacion {
            padding: 100px 25px 60px;
        }
        .presentacion h2 {
            font-size: 2.5rem;
        }
        .presentacion p {
            font-size: 1.1rem;
        }
        .avatar {
            width: 120px;
            height: 120px;
        }
    }

    .main-header {
      min-height: 85vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      border-top: 1px solid rgba(139, 79, 214, 0.15);

      /* Ajustes de espacio */
      padding: 60px 20px 40px;
      padding-top: 40px; /* espacio justo para la barra fija */

      /* Fondo integrado con la barra */
      background: linear-gradient(
        180deg,
        rgba(139, 79, 214, 0.18) 0%,
        #f3eaff 25%,
        #faf6ff 55%,
        #ffffff 100%
      );
    }


    .main-header h1 {
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 1px;
        color: #3f2f57;
        margin-bottom: 10px;
    }

    .main-header p {
        max-width: 520px;
        font-size: 1.6rem;
        color: #6b5c82;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .btn {
        display: inline-block;
        font-size: 1rem;
        padding: 16px 38px;
        border-radius: 40px;
        background: linear-gradient(135deg, #6b4ca3, #b79ce6);
        color: #ffffff;
        text-decoration: none;
        box-shadow: 0 12px 30px rgba(107, 76, 163, 0.3);
        transition: all 0.3s ease;
        border: none;
        outline: none;
        white-space: nowrap;
    }


    .btn:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(107, 76, 163, 0.3);
    }


    .main-header .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 40px rgba(107, 76, 163, 0.4);
    }

    header .btn {
        display: inline-block;
        font-size: 1.25rem;          /* texto grande */
        padding: 20px 56px;          /* botón grande */
        border-radius: 60px;
        font-weight: 500;
        letter-spacing: 0.5px;

        background: linear-gradient(135deg, #6b4ca3, #b79ce6);
        color: #ffffff;

        box-shadow: 0 18px 40px rgba(107, 76, 163, 0.4);
    }

    header .btn:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 26px 55px rgba(107, 76, 163, 0.5);
    }


    header .avatar {
      width: 110px;          /* más grande */
      height: 110px;
      border-radius: 50%;
      object-fit: cover;

      box-shadow:
        0 0 0 6px rgba(183, 156, 230, 0.25),
        0 0 35px rgba(183, 156, 230, 0.55),
        0 15px 40px rgba(120, 90, 180, 0.45);

      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    header .avatar:hover {
      transform: scale(1.05);
      box-shadow:
        0 0 0 6px rgba(183, 156, 230, 0.35),
        0 0 45px rgba(183, 156, 230, 0.7),
        0 20px 55px rgba(120, 90, 180, 0.55);
    }

    @media (max-width: 768px) {
    header .avatar {
      width: 90px;
      height: 90px;
      }
    }


    .social-header {
      margin-top: 28px;
      display: flex;
      gap: 22px;
      justify-content: center;
    }

    .social-header a {
      font-size: 1.35rem;
      color: #6b4ca3;
      width: 46px;
      height: 46px;
      border-radius: 50%;

      display: flex;
      align-items: center;
      justify-content: center;

      background: rgba(255, 255, 255, 0.6);
      box-shadow: 0 8px 22px rgba(120, 90, 180, 0.25);

      transition: all 0.3s ease;
    }

    .social-header a:hover {
      transform: translateY(-3px);
      color: #ffffff;
      background: linear-gradient(135deg, #6b4ca3, #b79ce6);
      box-shadow: 0 14px 35px rgba(120, 90, 180, 0.45);
    }


    @media (max-width: 768px) {
    .header-title {
      flex-direction: column;
      gap: 12px;
      }
    }


    .social-header .avatar {
      width: 74px;
      height: 74px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 10px 25px rgba(120, 90, 180, 0.3);
    }

    .social-links {
      font-size: 0.95rem;
      color: #6b5c82;
    }

    .social-links a {
      color: #6b4ca3;
      text-decoration: none;
      font-weight: 500;
    }

    .social-links a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .social-header {
      margin-top: 35px;
    }

    .social-header .avatar {
      width: 64px;
      height: 64px;
    }
    }

    /* --- TOP BAR (Delgada y mística) --- */
    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 65px;
        /* Degradado violeta traslúcido */
        background: linear-gradient(
            135deg, 
            rgba(107, 76, 163, 0.85) 0%, 
            rgba(183, 156, 230, 0.75) 100%
        );
        /* Efecto de cristal esmerilado */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        
        z-index: 9999;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    /* IMPORTANTE: Como el fondo es violeta, los textos deben ser BLANCOS para que se lean */
    .top-bar .tagline {
        color: #ffffff !important;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .topbar-content {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 25px;
    }

    /* Tagline a la izquierda */
    .tagline {
        font-weight: 600;
        color: #6b4ca3;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    /* --- TAGLINE EN PC --- */
    @media (min-width: 769px) {
        .tagline {
            font-size: 1.2rem;       /* Aumentamos de 0.9rem a 1.2rem */
            letter-spacing: 1px;     /* Un poco más de aire entre letras */
            font-weight: 700;        /* Un poco más de grosor para que destaque */
            
        }

        /* Efecto sutil al pasar el mouse */
        .tagline:hover {
            transform: scale(1.05);
        }
    }

    /* --- MANTENER PEQUEÑO EN MÓVIL (para que no choque con el botón menú) --- */
    @media (max-width: 768px) {
        .tagline {
            font-size: 0.9rem;
            font-weight: 600;
        }
    }

    /* Navegación Desktop */
    .panel-nav.desktop-only {
        display: flex;
        gap: 25px;
        align-items: center;
    }

    .panel-nav a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 0.85rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        position: relative;
    }

    /* Línea sutil al pasar el mouse por los links */
    .panel-nav a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background: #8b4fd6;
        transition: width 0.3s;
    }

    .panel-nav a:hover::after {
        width: 100%;
    }

    .panel-nav a:hover {
        color: #8b4fd6;
    }

    /* --- AJUSTE PARA EL HERO (PRESENTACIÓN) --- */
    /* Esto evita que la barra tape el contenido al cargar */
    .presentacion, .main-header {
        padding-top: 130px !important; /* Altura de la barra + 40px de respiro */
    }

    /* --- BOTÓN MÓVIL --- */
    .menu-toggle {
        background: #f3ebff;
        border: none;
        color: #8b4fd6;
        padding: 8px 12px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* --- MEDIA QUERIES --- */
    @media (max-width: 768px) {
        .top-bar {
            height: 60px; /* Más delgada aún en móviles */
        }
        
        .desktop-only {
            display: none !important;
        }
        
        .presentacion, .main-header {
            padding-top: 100px !important;
        }
    }

    /* --- ASIDE: MENÚ LATERAL MÓVIL --- */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Totalmente oculto a la derecha */
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #ffffff 0%, #f3eaff 100%);
        z-index: 10000; /* Por encima de la top-bar */
        box-shadow: -10px 0 30px rgba(63, 47, 87, 0.2);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 80px 25px 40px; /* Espacio arriba para que no choque con la X */
        display: flex;
        flex-direction: column;
    }

    .mobile-menu.active {
        right: 0; /* Se desliza hacia adentro */
    }

    /* --- NAVEGACIÓN DENTRO DEL MENÚ --- */
    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-nav a {
        text-decoration: none;
        color: #3f2f57;
        font-size: 1.2rem;
        font-weight: 500;
        padding: 15px 20px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(139, 79, 214, 0.1);
        transition: all 0.3s ease;
    }

    .mobile-nav a:hover {
        background: #8b4fd6;
        color: #ffffff;
        transform: translateX(-5px);
    }

    /* --- OVERLAY (Fondo oscuro) --- */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(63, 47, 87, 0.5);
        backdrop-filter: blur(4px);
        z-index: 9998;
        display: none; /* Oculto por defecto */
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    /* --- BOTÓN CIERRE (Opcional pero recomendado) --- */
    /* Si quieres que el botón hamburguesa cambie o aparezca una X */
    .menu-toggle.active {
        background: #ffffff !important;
        color: #8b4fd6 !important;
    }



    /* =====================================
      SECCIÓN SOBRE MÍ
      ===================================== */
    .about {
      padding: 100px 20px 80px;
      background: transparent;
    }

    .about-content {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 70px;
    }

    .about-text h2 {
      font-size: 2.4rem;
      margin-bottom: 30px;
      color: #3f2f57;
    }

    .about-intro {
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 20px;
    }

    .about-text p {
      font-size: 1.25rem;   /* antes ~1rem */
      line-height: 1.9;
      max-width: 560px;
      color: #3f2f57;
    }

    .about-close {
      font-style: italic;
      color: #6b4ca3;
      margin-top: 25px;
    }

    .about-image img {
        width: 280px;
        height: 280px;
        object-fit: cover;
        border-radius: 50%;

        box-shadow:
          0 0 0 8px rgba(107, 76, 163, 0.15),
          0 20px 40px rgba(107, 76, 163, 0.25);
    }


    @media (max-width: 768px) {
    .about-content {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .about-image {
    display: flex;
    justify-content: center;
    }
    }

    @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 100%;
      }
    }

    .about-text p {
      font-size: 1.1rem;
      line-height: 1.8;
      max-width: 100%;
    }

    .contact {
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
      padding: 80px 20px 100px;
  }

    .contact-text {
      font-size: 1.3rem;
      line-height: 1.75;
      color: #5f4d7a;
      margin-bottom: 20px;
    }

    .contact-tagline {
      margin: 32px 0 42px;
      font-size: 1.25rem;
      font-style: italic;
      color: #6b4ca3;
      opacity: 0.95;
    }

    /* Ajustes mobile */
    @media (max-width: 768px) {
    .contact-text {
    font-size: 1.15rem;
    }

    .contact-tagline {
    font-size: 1.15rem;
    }
    }

    .no-stars::after {
      content: none;
    }


    .site-footer {
    text-align: center;
    padding: 50px 20px 60px;
    background: linear-gradient(
      180deg,
      #faf6ff,
      #f3eaff
    );
    border-top: 1px solid rgba(139, 79, 214, 0.15);
    }

    .site-footer p {
      margin-bottom: 14px;
      color: #6b5c82;
      font-size: 0.95rem;
    }

    .footer-brand {
      font-size: 1rem;
      color: #3f2f57;
    }

    .footer-contact a,
    .footer-social a {
      color: #6b4ca3;
      text-decoration: none;
      font-weight: 500;
    }

    .footer-contact a:hover,
    .footer-social a:hover {
      text-decoration: underline;
    }

    .footer-tagline {
      margin-top: 22px;
      font-style: italic;
      color: #6b4ca3;
      opacity: 0.85;
      font-size: 0.95rem;
    }

    .footer-social {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .social-icon {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #6b4ca3;
      text-decoration: none;
      font-weight: 500;
    }

    .social-icon i {
      font-size: 1.15rem;
    }

    .social-icon:hover {
      text-decoration: underline;
    }

    .social-separator {
      color: #b79ce6;
      font-size: 1rem;
    }

    body::before {
      content: "11:11   22:22   33   111   555   777   12:12   21:21   44   999   777   333  222   444   888   12:12   21:21 04:04 09:09";
      position: fixed;
      inset: 0;
      z-index: 0;

      font-size: 3.2rem;
      font-weight: 300;
      letter-spacing: 48px;
      line-height: 3.8;

      color: rgba(107, 76, 163, 0.09);
      white-space: pre-wrap;

      transform: rotate(-12deg);
      pointer-events: none;
    }

    header,
    section,
    footer {
      position: relative;
      z-index: 2;
    }


    .oracle {
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
      padding: 90px 20px 100px;
    }

    .oracle-intro {
      font-size: 1.25rem;
      line-height: 1.7;
      color: #5f4d7a;
      margin-bottom: 40px;
    }

    .oracle-btn {
      margin-bottom: 35px;
    }

    .oracle-message {
      font-size: 1.4rem;
      font-style: italic;
      color: #6b4ca3;
      min-height: 60px;
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    /* Animación suave al aparecer */
    .oracle-message.show {
      opacity: 1;
      transform: translateY(0);
    }

    .oracle-message {
      opacity: 0;
      transform: translateY(10px);
    }

    /* Mobile */
    @media (max-width: 768px) {
      .oracle-intro {
        font-size: 1.15rem;
      }

      .oracle-message {
        font-size: 1.25rem;
      }
    }

    .oracle-message {
      margin-top: 20px;
      font-size: 1.2rem;
      font-style: italic;
      color: #6b4ca3;
      animation: fadeIn 1.2s ease;
    }

    .oracle-cooldown {
      display: none;
      margin-top: 14px;
      font-size: 0.95rem;
      opacity: 0.75;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    #frase-bienvenida {
      position: fixed;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 90%;
      padding: 18px 26px;

      font-size: 1rem;
      text-align: center;
      font-weight: 500;
      letter-spacing: 0.4px;

      color: #3f2f57;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(10px);

      border-radius: 18px;
      box-shadow: 0 20px 40px rgba(120, 90, 180, 0.25);

      opacity: 0;
      animation: fadeInOut 6s ease forwards;
      z-index: 99999;
    }

    @keyframes fadeInOut {
      0%   { opacity: 0; transform: translate(-50%, -45%); }
      10%  { opacity: 1; transform: translate(-50%, -50%); }
      85%  { opacity: 1; }
      100% { opacity: 0; transform: translate(-50%, -55%); }
    }

    @media (max-width: 768px) {
      #frase-bienvenida {
        font-size: 1.1rem;
        padding: 14px 20px;
      }
    }

    .membership {
      padding: 90px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .membership-intro {
      max-width: 680px;
      margin: 0 auto 60px;
      font-size: 1.25rem;
      color: #5f4d7a;
      line-height: 1.7;
    }

    .membership-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
    }

    .membership-card {
      background: linear-gradient(180deg, #ffffff, #faf6ff);
      border-radius: 28px;
      padding: 45px 30px 50px;
      box-shadow: 0 20px 40px rgba(120, 90, 180, 0.18);
      position: relative;
    }

    .membership-card h3 {
      font-size: 1.4rem;
      color: #3f2f57;
      margin-bottom: 10px;
    }

    .price {
      display: block;
      font-size: 1.15rem;
      font-weight: 600;
      color: #6b4ca3;
      margin-bottom: 20px;
    }

    .membership-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 25px;
    }

    .membership-card ul li {
      margin-bottom: 10px;
      color: #5f4d7a;
    }

    .plan-note {
      font-style: italic;
      color: #6b4ca3;
      margin-bottom: 25px;
    }

    .membership-card .btn {
      margin-top: 10px;
    }

    /* Plan destacado */
    .membership-card.featured {
      background: linear-gradient(180deg, #f3eaff, #ffffff);
      transform: scale(1.03);
    }

    .membership-card .badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #6b4ca3, #b79ce6);
      color: white;
      padding: 6px 18px;
      border-radius: 20px;
      font-size: 0.85rem;
      box-shadow: 0 8px 20px rgba(107, 76, 163, 0.35);
    }

    .membership-disclaimer {
      margin-top: 50px;
      font-size: 0.95rem;
      color: #6b5c82;
      opacity: 0.9;
    }

    /* Mobile ajustes */
    @media (max-width: 768px) {
      .membership-intro {
        font-size: 1.15rem;
      }

      .membership-card.featured {
        transform: none;
      }
    }

    .card .btn {
      max-width: 100%;
      box-sizing: border-box;
      white-space: normal;      /* permite que el texto baje */
      text-align: center;
    }

    /* Mascotas – Energía */
    .pets-energy {
      padding: 80px 20px;
      max-width: 800px;
      margin: auto;
      text-align: center;
    }

    .pets-energy p {
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 18px;
      color: #5f4d7a;
    }

    .pets-intro {
      font-size: 1.2rem;
      margin-bottom: 26px;
    }

    .pets-note {
      margin-top: 24px;
      font-style: italic;
      opacity: 0.9;
    }

    /* Tiki */

    .pet-avatar {
      width: 190px;
      height: 190px;
      border-radius: 50%;
      object-fit: cover;
      image-rendering: auto;
      margin-bottom: 12px; /* probá entre 12px y 18px */

      filter: contrast(1.05) brightness(0.98);

      box-shadow:
        0 0 0 4px rgba(183, 156, 230, 0.18),
        0 0 18px rgba(183, 156, 230, 0.35),
        0 12px 28px rgba(120, 90, 180, 0.30);
    }

    .pet-personal p {
      font-size: 0.95rem;
      text-align: center;
      opacity: 0.9;
    }

    .pet-personal span {
      font-style: italic;
      opacity: 0.8;
    }

    /* Mobile */
    @media (max-width: 768px) {
      .pets-energy p {
        font-size: 1rem;
      }
      .pet-avatar {
        width: 160px;
        height: 160px;
      }

      .pet-sticker {
        width: 60px;
        height: 60px;
        right: -6px;
        bottom: -6px;
      }
    }


    .pet-photo-wrapper {
      position: relative;
      display: inline-block;
      width: fit-content;
    }

    .pet-sticker {
      position: absolute;
      width: 56px;
      height: 56px;            /* 👈 CLAVE */
      max-width: none;        /* 👈 CLAVE */
      max-height: none;       /* 👈 CLAVE */
      right: -10px;
      bottom: 20px;
      transform: rotate(-8deg);
      box-shadow: none !important;
      filter: none !important;
    }

    @media (max-width: 768px) {
      .pet-sticker {
        width: 50px;
        height: 50px;
        right: 2px;
        bottom: 5px;
      }
    }

    .oracle-wait {
      margin-top: 16px;
      font-size: 0.95rem;
      font-style: italic;
      color: #6b4ca3;
      opacity: 0.85;
    }

    /* TITULO */
    #curso-reiki h2 {
      font-size: 2.4rem;
      font-weight: 600;
      color: #3f2f57;
      margin-bottom: 20px;
      letter-spacing: -0.3px;
    }

    /* TEXTO DESCRIPTIVO */
    #curso-reiki p {
      max-width: 720px;
      margin: 0 auto 40px;
      font-size: 1.15rem;
      line-height: 1.7;
      color: #5f4d7a;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    /* FEATURES */
    .course-home-features {
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-bottom: 45px;
    }

    /* FEATURE ITEM */
    .course-home-features span {
      display: inline-flex;
      align-items: center;
      justify-content: center;

      padding: 12px 22px;
      font-size: .95rem;
      font-weight: 500;
      color: #6b4ca3;

      background: #ffffff;
      border-radius: 999px;
      box-shadow: 0 10px 24px rgba(107,76,163,.15);

      transition: transform .3s ease, box-shadow .3s ease;
    }

    .course-home-features span:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 32px rgba(107,76,163,.22);
    }

    .course-home-cta {
      text-align: center;
    }


    /* =========================
      RESPONSIVE
    ========================= */

    @media (max-width: 768px) {
      #curso-reiki {
        padding: 80px 18px;
      }

      #curso-reiki h2 {
        font-size: 2rem;
      }

      #curso-reiki p {
        font-size: 1.05rem;
      }

      .course-home-features {
        gap: 14px;
      }

      .course-home-features span {
        font-size: .9rem;
        padding: 10px 18px;
      }
    }

    /* =====================================
      TU OÍDO AMIGO – Acompañamiento 1 a 1
      Integrado al diseño Valcu222
    ===================================== */

    .acompanamiento {
      padding: 90px 20px 100px;
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
    }

    .acompanamiento-contenido {
      background: linear-gradient(
        180deg,
        rgba(255,255,255,0.85),
        rgba(250,246,255,0.9)
      );
      border-radius: 32px;
      padding: 70px 60px 75px;
      box-shadow: 0 25px 60px rgba(107, 76, 163, 0.18);
    }

    /* subtítulo chico arriba */
    .acompanamiento .eyebrow {
      display: block;
      font-size: 0.85rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #6b4ca3;
      opacity: 0.8;
      margin-bottom: 16px;
    }

    /* título principal */
    .acompanamiento h2 {
      font-size: 2.6rem;
      font-weight: 600;
      color: #3f2f57;
      margin-bottom: 8px;
    }

    /* subtítulo */
    .acompanamiento h2 span {
      display: block;
      font-size: 1.5rem;
      font-weight: 400;
      color: #6b5c82;
      margin-top: 6px;
    }

    /* frase manifiesto */
    .acompanamiento .frase {
      margin: 30px auto 40px;
      font-size: 1.25rem;
      font-style: italic;
      color: #6b4ca3;
      max-width: 720px;
    }

    /* texto */
    .acompanamiento .descripcion {
      max-width: 760px;
      margin: 0 auto 45px;
      font-size: 1.15rem;
      line-height: 1.8;
      color: #5f4d7a;
    }

    /* lista de detalles */
    .acompanamiento .detalles {
      list-style: none;
      max-width: 520px;
      margin: 0 auto 50px;
      padding: 0;
      text-align: left;
    }

    .acompanamiento .detalles li {
      padding: 10px 0;
      font-size: 1rem;
      color: #5f4d7a;
      border-bottom: 1px solid rgba(139, 79, 214, 0.15);
    }

    .acompanamiento .detalles li:last-child {
      border-bottom: none;
    }

    /* CTA usa tu botón nativo */
    .acompanamiento .cta {
      display: inline-block;
      margin-top: 10px;
      padding: 18px 46px;
      font-size: 1.05rem;
      border-radius: 40px;

      background: linear-gradient(135deg, #6b4ca3, #b79ce6);
      color: #ffffff;
      text-decoration: none;

      box-shadow: 0 18px 40px rgba(107, 76, 163, 0.35);
      transition: all 0.3s ease;
    }

    .acompanamiento .cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 26px 55px rgba(107, 76, 163, 0.45);
    }

    /* =========================
      MOBILE
    ========================= */

    @media (max-width: 768px) {
      .acompanamiento-contenido {
        padding: 55px 26px 60px;
      }

      .acompanamiento h2 {
        font-size: 2.1rem;
      }

      .acompanamiento h2 span {
        font-size: 1.3rem;
      }

      .acompanamiento .frase {
        font-size: 1.1rem;
      }

      .acompanamiento .descripcion {
        font-size: 1.05rem;
      }

      .acompanamiento .detalles {
        text-align: center;
      }
    }

    /* =====================================
      ENTRADAS PRINCIPALES – Cards grandes
    ===================================== */

    .entradas-principales {
      padding: 90px 20px 70px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .cards-principales {
        display: grid;
        /* Cambiamos a 3 columnas iguales en PC */
        grid-template-columns: repeat(3, 1fr); 
        gap: 30px; /* Espacio entre tarjetas */
        width: 100%;
        align-items: stretch; /* Hace que todas midan lo mismo de alto */
    }

    .card-principal {
        background: linear-gradient(
            180deg,
            rgba(255,255,255,0.9),
            rgba(247,242,255,0.95)
        );
        border-radius: 30px;
        padding: 50px 35px;
        text-align: center;
        box-shadow: 0 25px 60px rgba(107, 76, 163, 0.2);
        transition: all 0.35s ease;
        
        /* Para que el botón siempre quede abajo alineado si un texto es más corto */
        display: flex;
        flex-direction: column;
        justify-content: space-between; 
    }

    .card-principal:hover {
      transform: translateY(-6px);
      box-shadow: 0 35px 75px rgba(107, 76, 163, 0.35);
    }

    .card-principal h3 {
      font-size: 2.1rem;
      color: #3f2f57;
      margin-bottom: 12px;
    }

    .card-principal .sub {
      font-size: 1.1rem;
      color: #6b4ca3;
      margin-bottom: 20px;
      font-weight: 500;
    }

    .card-principal .texto {
      font-size: 1.05rem;
      line-height: 1.7;
      color: #5f4d7a;
      max-width: 420px;
      margin: 0 auto 35px;
    }

    /* Botón */
    .card-principal .btn-card {
      display: inline-block;
      padding: 16px 40px;
      border-radius: 40px;
      font-size: 1rem;
      text-decoration: none;
      color: #fff;

      background: linear-gradient(135deg, #6b4ca3, #b79ce6);
      box-shadow: 0 16px 40px rgba(107, 76, 163, 0.4);

      transition: all 0.3s ease;
    }

    .card-principal .btn-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 55px rgba(107, 76, 163, 0.55);
    }

    /* =========================
      MOBILE
    ========================= */

    @media (max-width: 900px) {
      .cards-principales {
        grid-template-columns: 1fr;
      }

      .card-principal {
        padding: 45px 30px 50px;
      }

      .card-principal h3 {
        font-size: 1.9rem;
      }
    }

    /* --- RESPONSIVE --- */

    /* Tablet (2 columnas) */
    @media (max-width: 1024px) {
        .cards-principales {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Mobile (1 sola columna) */
    @media (max-width: 768px) {
        .cards-principales {
            grid-template-columns: 1fr;
        }
        
        .entradas-principales {
            padding: 60px 20px;
        }
    }
    
    #acompanamiento,
    #curso-reiki,
    #entradas-principales {
      scroll-margin-top: -20px; /* ajustá si tu header es más alto */
    }

/* =====================================
   LLAMAS GEMELAS – Radiestesia consciente
===================================== */

.llamas {
  padding: 100px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.llamas-contenido {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.9),
    rgba(246,240,255,0.95)
  );
  border-radius: 32px;
  padding: 80px 60px;
  box-shadow: 0 30px 70px rgba(107, 76, 163, 0.25);
}

.llamas .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #6b4ca3;
  margin-bottom: 14px;
  display: block;
}

.llamas h2 {
  font-size: 2.5rem;
  color: #3f2f57;
}

.llamas h2 span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  color: #6b5c82;
  margin-top: 6px;
}

.llamas .frase {
  margin: 30px auto;
  font-size: 1.2rem;
  font-style: italic;
  color: #6b4ca3;
  max-width: 720px;
}

.llamas .descripcion {
  max-width: 780px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5f4d7a;
}

/* Cards internas */
.llamas-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.llama-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 28px;
  box-shadow: 0 18px 40px rgba(107, 76, 163, 0.18);
}

.llama-card.destacado {
  background: linear-gradient(180deg, #f5efff, #ffffff);
  border: 2px solid rgba(107, 76, 163, 0.25);
}

.llama-card h3 {
  color: #3f2f57;
  margin-bottom: 6px;
}

.llama-card .tipo {
  font-size: 0.9rem;
  color: #6b4ca3;
  margin-bottom: 18px;
}

.llama-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.llama-card ul li {
  font-size: 0.95rem;
  color: #5f4d7a;
  padding: 6px 0;
}

.llama-card .precio {
  font-weight: 600;
  color: #3f2f57;
}

/* Nota final */
.llamas .nota {
  font-size: 0.95rem;
  color: #6b5c82;
  max-width: 760px;
  margin: 0 auto 35px;
}

/* Responsive */
@media (max-width: 900px) {
  .llamas-cards {
    grid-template-columns: 1fr;
  }

  .llamas-contenido {
    padding: 60px 30px;
  }
}

/* Ajuste ancla */
#llamas-gemelas {
  scroll-margin-top: -20px;
}

.llamas-cta {
  margin-top: 50px;
  text-align: center;
}

/* =====================================
   CURSO DE REIKI – Estilo Valcu222
   ===================================== */

#curso-reiki {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* El contenedor principal con el fondo degradado */
.course-reiki-container {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.9),
        rgba(248, 244, 255, 0.95)
    );
    border-radius: 32px;
    padding: 80px 60px;
    box-shadow: 0 30px 70px rgba(107, 76, 163, 0.22); /* Sombra coherente con el resto */
    border: 1px solid rgba(139, 79, 214, 0.1);
}

#curso-reiki h2 {
    font-size: 2.6rem;
    font-weight: 600;
    color: #3f2f57;
    margin-bottom: 10px;
}

/* Subtítulo o frase corta debajo del h2 (opcional si lo tenés) */
#curso-reiki .course-subtitle {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: #6b5c82;
    margin-bottom: 25px;
}

#curso-reiki p {
    max-width: 760px;
    margin: 0 auto 45px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5f4d7a;
}

/* Los tags/features flotantes */
.course-home-features {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.course-home-features span {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b4ca3;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(107, 76, 163, 0.12);
    transition: all 0.3s ease;
}

.course-home-features span:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(107, 76, 163, 0.2);
    color: #3f2f57;
}

/* El botón de acción */
.course-home-cta {
    margin-top: 20px;
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .course-reiki-container {
        padding: 60px 25px;
    }
    
    #curso-reiki h2 {
        font-size: 2.1rem;
    }
}


/* Contenedor de Precios */
.contenedor-precio {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.precio-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(139, 79, 214, 0.2);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(10px);
    max-width: 500px;
    width: 100%;
    transition: transform 0.3s ease;
}

.precio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 79, 214, 0.4);
}

.precio-tag {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8b4fd6;
    margin-bottom: 20px;
    font-weight: 600;
}

.divisa-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 15px;
}

.precio-item {
    display: flex;
    flex-direction: column;
}

.moneda {
    font-size: 0.85rem;
    color: #6b5c82;
    font-weight: 500;
}

.monto {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3f2f57;
    font-family: 'Outfit', sans-serif; /* O la fuente que uses */
}

.separador-precio {
    width: 1px;
    height: 50px;
    background: rgba(139, 79, 214, 0.2);
}

.precio-aclaracion {
    font-size: 0.85rem;
    color: #8c7ea0;
    font-style: italic;
    margin: 0;
}

/* Ajuste para mobile */
@media (max-width: 480px) {
    .divisa-grid {
        flex-direction: column;
        gap: 15px;
    }
    .separador-precio {
        width: 50px;
        height: 1px;
    }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.brand:hover .panel-brand {
  opacity: .85;
}

/* VISIBILIDAD */
.desktop-only { display: flex; }
.mobile-only { display: none; }

/* Asegúrate de que estas reglas existan al final de tu CSS */

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: flex !important; /* Fuerza a que el botón aparezca */
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
    .desktop-only {
        display: flex !important;
    }
}

.card p {
    min-height: 80px; /* Ajusta según el tamaño de letra */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}


/* Integración con estilo Valcu222 */

.angel-services-section {
    padding-top: 50px;
}

.card-icon-angel {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

/* Ajuste de precios para que combine con tus variables */
.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: #6b4ca3; /* Usando el violeta de tus botones */
    margin-bottom: 15px;
}

/* Estilo para la tarjeta destacada (Limpieza Profunda) */
.featured-angel {
    background: linear-gradient(180deg, var(--lavanda), var(--blanco)) !important;
    border: 2px solid #b79ce6;
    transform: scale(1.05);
}

/* Si el usuario está en móvil, quitamos el scale para que no se vea raro */
@media (max-width: 768px) {
    .featured-angel {
        transform: none;
        margin-top: 20px;
    }
}

/* Alineación de los botones en las tarjetas para que queden parejos */
.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card p {
    flex-grow: 1;
}

/* Reutilizando tu estilo de Badge de membresía */
.featured-angel .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6b4ca3, #b79ce6);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    box-shadow: 0 8px 20px rgba(107, 76, 163, 0.35);
    z-index: 10;
}

/* Estilo para las listas dentro de las tarjetas */
.angel-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
    font-size: 0.95rem;
    color: #5f4d7a; /* Tu color lavanda oscuro */
}

.angel-list li {
    margin-bottom: 8px;
    padding-left: 5px;
    line-height: 1.4;
}

.descripcion-extensa {
    font-weight: 500;
    margin-bottom: 10px;
}

.nota-adicional {
    font-size: 0.9rem;
    font-style: italic;
    color: #6b4ca3;
    margin-bottom: 20px;
}

/* Ajuste de tarjetas para texto largo */
.card {
    min-height: 650px; /* Un poco más de altura para que el texto respire */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}