/* Base de todos los bloques */
.mw-box {
    padding: 18px 20px;
    border-radius: 16px;
    margin: 20px 0;
    font-size: 1.3rem;
    line-height: 1.5;
    border-left: 6px solid;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    font-family: 'Nunito', sans-serif;
}

/* 💡 SABÍAS QUE */
.mw-sabias {
    background-color: hsl(var(--sunshine) / 0.4);
    padding: 1rem;
    border: 1px solid hsl(var(--sunshine));
    color: hsl(var(--sunshine-foreground));
}

/* ⚠️ AVISO */
.mw-aviso {
    background-color: hsl(var(--peach) / 0.4);
    padding: 1rem;
    border: 1px solid hsl(var(--peach));
    color: hsl(var(--peach-foreground));
}

/* ℹ️ INFO */
.mw-info {
    background-color: hsl(var(--sky) / 0.4);
    border: 1px solid hsl(var(--sky));
    color: hsl(var(--sky-foreground));
}

/* 🌱 TIP */
.mw-tip {
    background-color: hsl(var(--leaf-light));
    border: 1px solid hsl(var(--leaf));
    color: hsl(var(--leaf-foreground));
}

/* CTA */
.cta {
    background: #fff;
    border: 2px dashed hsl(var(--peach));
    border-radius: 18px;
    padding: 22px;
    margin: 24px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    font-family: var(--font-cute);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta__badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    background: hsl(var(--peach));
    color: hsl(var(--peach-foreground));
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    z-index: 2;
}

.cta__title {
    font-size: 2rem;
    font-weight: 1000;
    margin: 2rem 0 10px;
    color: hsl(var(--foreground));
    text-align: center;
}

.cta__desc {
    padding: 1rem 5rem;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: hsl(var(--muted-foreground));
    text-align: center;
}

.cta__steps {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    justify-content: center;
}

.cta__step {
    background: hsl(var(--muted));
    border: 1px solid hsl(var(--border));
    padding: 10px 13px;
    border-radius: 999px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    color: hsl(var(--primary));
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    background: hsl(var(--peach));
    color: hsl(var(--peach-foreground));
}

/* FACT CARD */
.fact-card {
    position: relative;
    background: hsl(var(--sunshine) / 0.4);
    border: 1px solid hsl(var(--sunshine));
    border-radius: 40px;
    padding: 28px 22px 22px;
    margin: 24px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    font-family: var(--font-cute);
}

.fact-card__sticker {
    position: absolute;
    top: -14px;
    right: -3%;
    transform: translateX(-50%) rotate(-3deg);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    background: hsl(var(--primary));
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.fact-card__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0 12px;
    color: hsl(var(--foreground));
    line-height: 1.3;
}

.fact-card__title .fact-card__highlight { color: hsl(var(--leaf)); }

/* REVEAL CARD */
.reveal {
    border-radius: 22px;
    padding: 26px;
    margin: 24px 0;
    font-family: var(--font-cute);
}

.reveal__eyebrow {
    display: inline-block;
    background: hsl(var(--sunshine, 50 90% 60%));
    color: #000;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    transform: rotate(-2deg);
    margin-bottom: 12px;
}

.reveal__title {
    font-size: 2rem;
    font-weight: 900;
    margin: 12px 0 14px;
    line-height: 1.3;
}

/* TERM TOOLTIP */
.term {
    position: relative;
    font-weight: 700;
    color: hsl(var(--leaf, 120 60% 40%));
    cursor: help;
}

.term__tip {
    position: absolute;
    left: 50%;
    top: 120%;
    transform: translateX(-50%);
    width: 240px;
    background: #111;
    color: #fff;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    z-index: 10;
}

.term:hover .term__tip { opacity: 1; visibility: visible; }

/* CALLOUT */
.callout {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: hsl(var(--sky, 210 80% 92%) / 0.4);
    border: 1px solid hsl(var(--sky, 210 80% 60%));
    padding: 14px;
    border-radius: 14px;
    margin: 18px 0;
}

/* COMPARE CARD */
.compare__card {
    background: #fff;
    border: 2px solid hsl(var(--leaf-light));
    border-radius: 24px;
    padding: 24px;
    margin: 24px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    font-family: var(--font-cute);
}

.compare__icon { font-size: 2.5rem; text-align: center; }
.compare__name { font-size: clamp(1rem, 1.5vw, 1.8rem); font-weight: 900; text-align: center; }
.compare__list { list-style: none; padding: 0; display: grid; gap: 10px; }
.compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.compare__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 35px;
  height: 35px;

  background: hsl(var(--leaf-light));
  color: hsl(var(--leaf));

  border-radius: 50%;

  font-size: 12px;
  font-weight: bold;

  flex: 0 0 auto;
  line-height: 1;
}

.post_hero__title.internal_title {
    font-family: "Nunito";
    font-weight: 900;
    font-size: clamp(2rem, 3vw, 5rem);
}

.post_hero__title.internal_title .sub_post_title { color: hsl(var(--primary)); }


.numitem{
    display: flex;
    align-items: center;
}
.numitem__num {
    width: 50px;
    height: 50px;
    top: -14px;
    right: -3%;
    transform: rotate(-3deg);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 23px;
    font-weight: 800;
    background: hsl(var(--primary));
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    font-family: "Nunito";
    line-height: 0;
}
.numitem__title{
    margin:0 0 0 5px;
    /* font-size: 1.5rem; */
    font-size: clamp(1rem, 1.5vw, 2.5rem);
}


/* media */
@media (max-width: 480px) { 
    .cta__desc { 
        padding: 0; 
    } 
}


@media (max-width: 720px) {
    .numitem__num {
        /* position: relative; */
        top: 0;
        left: 0;
        margin-bottom: 0.75rem;
    }

    /* .compare__name { 
        font-size: clamp(1rem, 1.5vw, 1.8rem) 
    } */
}

@media (max-width: 1023px) {
    .numitem__num {
        width: 25px;
        height: 25px;
        top: -14px;
        right: -3%;
        transform: rotate(-3deg);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 8px;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 800;
        background: hsl(var(--primary));
        color: #ffffff;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
        font-family: "Nunito";
        line-height: 0;
    }
}