/* =========================================================
   PLAN SEO INICIAL
========================================================= */

.seo-plan-eyebrow {
    display: block;
    margin-bottom: 9px;
    color: #f28a1a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}


/* =========================================================
   BOTONES
========================================================= */

.seo-plan-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform .2s ease,
        background .2s ease;
}

.seo-plan-btn:hover {
    transform: translateY(-2px);
}

.seo-plan-btn--primary {
    background: #f28a1a;
    color: #181818;
}

.seo-plan-btn--secondary {
    border: 1px solid rgba(0,0,0,.10);
    background: #fff;
    color: #222;
}

.seo-plan-btn--whatsapp {
    background: #2f9b57;
    color: #fff;
}


/* =========================================================
   HERO
========================================================= */

.seo-plan-hero {
    position: relative;
    overflow: hidden;
    padding: 148px 24px 76px;

    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(242,138,26,.12),
            transparent 31%
        ),
        #f7f7f5;
}

.seo-plan-hero__inner {
    width: min(1180px,100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0,1.08fr)
        minmax(330px,.92fr);

    align-items: center;
    gap: 70px;
}

.seo-plan-hero__eyebrow {
    display: block;
    margin-bottom: 12px;

    color: #f28a1a;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.seo-plan-hero h1 {
    max-width: 760px;
    margin: 0 0 20px;

    color: #171717;

    font-size: clamp(44px,6vw,72px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: -3px;
}

.seo-plan-hero h1 span {
    display: block;
    color: #f28a1a;
}

.seo-plan-hero__content > p {
    max-width: 680px;
    margin: 0 0 28px;

    color: #666;

    font-size: clamp(15px,1.8vw,18px);
    line-height: 1.7;
}

.seo-plan-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.seo-plan-hero__status {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
}

.seo-plan-hero__status > span {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(47,155,87,.12);
    color: #2f9b57;

    font-size: 11px;
    font-weight: 800;
}

.seo-plan-hero__status p {
    margin: 0;

    color: #777;

    font-size: 10px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.seo-plan-hero__visual {
    position: relative;
    min-height: 390px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-plan-search {
    position: relative;
    z-index: 2;

    width: min(410px,100%);

    padding: 20px;

    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 28px 70px
        rgba(0,0,0,.10);
}

.seo-plan-search__bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    gap: 10px;

    padding: 11px 14px;

    border: 1px solid #e4e4e2;
    border-radius: 100px;

    color: #777;

    font-size: 9px;
}

.seo-plan-search__bar > span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #f28a1a;
}

.seo-plan-search__bar strong {
    color: #555;
    font-size: 17px;
}

.seo-plan-search__content {
    padding: 25px 8px 20px;
}

.seo-plan-search__title small {
    display: block;
    margin-bottom: 5px;

    color: #777;

    font-size: 8px;
}

.seo-plan-search__title strong {
    display: block;
    margin-bottom: 13px;

    color: #d87815;

    font-size: 13px;
}

.seo-plan-search__content > span {
    display: block;

    width: 94%;
    height: 5px;

    margin-top: 5px;

    border-radius: 10px;

    background: #e7e7e5;
}

.seo-plan-search__content > span:nth-last-child(2) {
    width: 78%;
}

.seo-plan-search__content > span:last-child {
    width: 62%;
}

.seo-plan-search__checks {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 7px;

    padding-top: 14px;

    border-top: 1px solid rgba(0,0,0,.07);
}

.seo-plan-search__checks div {
    padding: 8px 5px;

    border-radius: 6px;

    background: #f7f7f5;

    color: #777;

    text-align: center;

    font-size: 8px;
}

.seo-plan-search__checks i {
    margin-right: 2px;

    color: #2f9b57;

    font-style: normal;
    font-weight: 800;
}

.seo-plan-hero__badge {
    position: absolute;
    z-index: 4;

    right: -5px;
    bottom: 29px;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 13px 16px;

    border-radius: 12px;

    background: #181818;

    box-shadow:
        0 18px 45px
        rgba(0,0,0,.15);
}

.seo-plan-hero__badge > span {
    color: #f28a1a;
    font-size: 18px;
    font-weight: 800;
}

.seo-plan-hero__badge small {
    display: block;
    color: rgba(255,255,255,.45);
    font-size: 8px;
}

.seo-plan-hero__badge strong {
    display: block;
    color: #fff;
    font-size: 10px;
}


/* =========================================================
   ABOUT
========================================================= */

.seo-plan-about,
.seo-plan-content,
.seo-plan-scope,
.seo-plan-time {
    padding: 82px 24px;
    background: #fff;
}

.seo-plan-about__inner,
.seo-plan-content__inner,
.seo-plan-scope__inner,
.seo-plan-time__inner {
    width: min(1020px,100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: .9fr 1.1fr;

    gap: 65px;
}

.seo-plan-about h2,
.seo-plan-content h2,
.seo-plan-scope h2,
.seo-plan-time h2,
.seo-plan-keywords h2,
.seo-plan-next h2 {
    margin: 0;

    color: #191919;

    font-size: clamp(30px,4vw,44px);
    line-height: 1.12;

    font-weight: 500;
    letter-spacing: -1.3px;
}

.seo-plan-about h2 strong,
.seo-plan-content h2 strong,
.seo-plan-scope h2 strong,
.seo-plan-time h2 strong,
.seo-plan-keywords h2 strong,
.seo-plan-next h2 strong {
    font-weight: 800;
}

.seo-plan-about p,
.seo-plan-content p,
.seo-plan-scope p,
.seo-plan-time p,
.seo-plan-keywords p,
.seo-plan-next p {
    margin: 0 0 11px;

    color: #696969;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   INCLUDES
========================================================= */

.seo-plan-includes {
    padding: 84px 24px;
    background: #181818;
}

.seo-plan-includes__inner {
    width: min(1080px,100%);
    margin: 0 auto;
}

.seo-plan-includes__header {
    max-width: 760px;
    margin-bottom: 40px;
}

.seo-plan-includes__header h2 {
    margin: 0 0 13px;

    color: #fff;

    font-size: clamp(30px,4vw,45px);
    line-height: 1.1;

    font-weight: 500;
}

.seo-plan-includes__header h2 strong {
    color: #f28a1a;
    font-weight: 800;
}

.seo-plan-includes__header p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.75;
}

.seo-plan-includes__grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));

    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 1px solid rgba(255,255,255,.1);
}

.seo-plan-includes__grid article {
    min-height: 210px;
    padding: 27px;

    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.seo-plan-includes__grid span {
    color: #f28a1a;
    font-size: 10px;
    font-weight: 700;
}

.seo-plan-includes__grid h3 {
    margin: 27px 0 7px;
    color: #fff;
    font-size: 17px;
}

.seo-plan-includes__grid p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   KEYWORDS
========================================================= */

.seo-plan-keywords {
    padding: 82px 24px;
    background: #f7f7f5;
}

.seo-plan-keywords__inner {
    width: min(1050px,100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr .9fr;

    align-items: center;
    gap: 70px;
}

.seo-plan-keywords__visual {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;
}

.seo-plan-keyword {
    padding: 11px 15px;

    border: 1px solid rgba(0,0,0,.08);
    border-radius: 100px;

    background: #fff;

    color: #555;

    font-size: 11px;

    box-shadow:
        0 8px 22px
        rgba(0,0,0,.04);
}

.seo-plan-keyword:nth-child(2) {
    margin-left: 35px;
}

.seo-plan-keyword:nth-child(3) {
    margin-left: 70px;

    border-color: rgba(242,138,26,.25);

    color: #c96f10;
}

.seo-plan-keyword:nth-child(4) {
    margin-left: 35px;
}


/* =========================================================
   CONTENT
========================================================= */

.seo-plan-content {
    background: #fff;
}


/* =========================================================
   INDEX
========================================================= */

.seo-plan-index {
    padding: 82px 24px;

    background: #f7f7f5;
}

.seo-plan-index__inner {
    width: min(1080px,100%);
    margin: 0 auto;
}

.seo-plan-index__header {
    max-width: 760px;

    margin-bottom: 42px;
}

.seo-plan-index__header h2 {
    margin: 0;

    color: #191919;

    font-size: clamp(30px,4vw,44px);
    line-height: 1.12;

    font-weight: 500;
}

.seo-plan-index__header h2 strong {
    font-weight: 800;
}

.seo-plan-index__flow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-plan-index__flow article {
    min-width: 155px;

    padding: 22px 16px;

    border: 1px solid rgba(0,0,0,.08);
    border-radius: 12px;

    background: #fff;

    text-align: center;
}

.seo-plan-index__flow article > span {
    display: block;

    margin-bottom: 16px;

    color: #f28a1a;

    font-size: 9px;
    font-weight: 700;
}

.seo-plan-index__flow strong {
    display: block;

    color: #222;

    font-size: 13px;
}

.seo-plan-index__flow small {
    display: block;

    margin-top: 4px;

    color: #888;

    font-size: 8px;
}

.seo-plan-index__flow > i {
    margin: 0 12px;

    color: #f28a1a;

    font-style: normal;
    font-size: 19px;
}

.seo-plan-index__result {
    border-color:
        rgba(47,155,87,.25) !important;
}


/* =========================================================
   REPORT
========================================================= */

.seo-plan-report {
    padding: 82px 24px;

    background: #fff;
}

.seo-plan-report__inner {
    width: min(1000px,100%);
    margin: 0 auto;
}

.seo-plan-report__header {
    max-width: 750px;

    margin-bottom: 38px;
}

.seo-plan-report__header h2 {
    margin: 0 0 13px;

    color: #191919;

    font-size: clamp(30px,4vw,44px);
    line-height: 1.12;

    font-weight: 500;
}

.seo-plan-report__header h2 strong {
    font-weight: 800;
}

.seo-plan-report__header p {
    margin: 0;

    color: #696969;

    font-size: 13px;
    line-height: 1.8;
}

.seo-plan-report__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;
    gap: 28px;
}

.seo-plan-report__grid article {
    padding: 28px;

    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;

    background: #f8f8f6;
}

.seo-plan-report__grid article > span {
    display: block;

    margin-bottom: 8px;

    color: #f28a1a;

    font-size: 9px;
    font-weight: 700;
}

.seo-plan-report__grid h3 {
    margin: 0 0 8px;

    color: #222;

    font-size: 19px;
}

.seo-plan-report__grid p {
    margin: 0;

    color: #707070;

    font-size: 12px;
    line-height: 1.75;
}

.seo-plan-report__grid > div {
    color: #f28a1a;

    font-size: 27px;
}

.seo-plan-report__final {
    border-color:
        rgba(47,155,87,.23) !important;
}


/* =========================================================
   SCOPE
========================================================= */

.seo-plan-scope {
    background: #f7f7f5;
}


/* =========================================================
   WARNING
========================================================= */

.seo-plan-warning {
    padding: 70px 24px;

    background: #fff;
}

.seo-plan-warning__inner {
    width: min(950px,100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: auto 1fr;

    gap: 27px;

    padding: 28px;

    border-left: 3px solid #f28a1a;

    background: #fffaf4;
}

.seo-plan-warning__icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #f28a1a;
    border-radius: 50%;

    color: #f28a1a;

    font-size: 23px;
}

.seo-plan-warning__inner > div:last-child > span {
    display: block;

    margin-bottom: 6px;

    color: #c96f10;

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.seo-plan-warning h2 {
    margin: 0 0 12px;

    color: #222;

    font-size: clamp(24px,3vw,33px);
    line-height: 1.18;

    font-weight: 500;
}

.seo-plan-warning h2 strong {
    font-weight: 800;
}

.seo-plan-warning p {
    margin: 0 0 8px;

    color: #695f55;

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   TIME
========================================================= */

.seo-plan-time {
    background: #f7f7f5;
}


/* =========================================================
   NEXT
========================================================= */

.seo-plan-next {
    padding: 78px 24px;

    background: #fff;
}

.seo-plan-next__inner {
    width: min(950px,100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: auto 1fr;

    gap: 30px;
}

.seo-plan-next__number {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #181818;
    color: #f28a1a;

    font-size: 16px;
    font-weight: 800;
}

.seo-plan-link {
    display: inline-block;

    margin-top: 10px;

    color: #d87815;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   CTA
========================================================= */

.seo-plan-cta {
    padding: 74px 24px;

    background: #181818;
}

.seo-plan-cta__inner {
    width: min(1050px,100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr auto;

    align-items: center;
    gap: 50px;
}

.seo-plan-cta__inner > div:first-child > span {
    display: block;

    margin-bottom: 8px;

    color: #f28a1a;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.seo-plan-cta h2 {
    margin: 0 0 12px;

    color: #fff;

    font-size: clamp(30px,4vw,44px);
    line-height: 1.1;

    font-weight: 500;
}

.seo-plan-cta h2 strong {
    color: #f28a1a;

    font-weight: 800;
}

.seo-plan-cta p {
    max-width: 670px;

    margin: 0;

    color: rgba(255,255,255,.62);

    font-size: 13px;
    line-height: 1.75;
}

.seo-plan-cta__actions {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .seo-plan-hero__inner,
    .seo-plan-about__inner,
    .seo-plan-keywords__inner,
    .seo-plan-content__inner,
    .seo-plan-scope__inner,
    .seo-plan-time__inner {
        grid-template-columns: 1fr;
    }

    .seo-plan-includes__grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .seo-plan-cta__inner {
        grid-template-columns: 1fr;
    }

    .seo-plan-cta__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

}


@media (max-width: 750px) {

    .seo-plan-index__flow {
        display: grid;
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .seo-plan-index__flow > i {
        margin: 0;

        justify-self: center;

        transform: rotate(90deg);
    }

    .seo-plan-report__grid {
        grid-template-columns: 1fr;
    }

    .seo-plan-report__grid > div {
        justify-self: center;

        transform: rotate(90deg);
    }

}


@media (max-width: 600px) {

    .seo-plan-hero {
        padding: 125px 20px 52px;
    }

    .seo-plan-hero h1 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }

    .seo-plan-hero__actions {
        flex-direction: column;
    }

    .seo-plan-hero__actions .seo-plan-btn {
        width: 100%;
    }

    .seo-plan-hero__visual {
        min-height: 320px;
    }

    .seo-plan-about,
    .seo-plan-includes,
    .seo-plan-keywords,
    .seo-plan-content,
    .seo-plan-index,
    .seo-plan-report,
    .seo-plan-scope,
    .seo-plan-warning,
    .seo-plan-time,
    .seo-plan-next,
    .seo-plan-cta {
        padding: 58px 20px;
    }

    .seo-plan-includes__grid {
        grid-template-columns: 1fr;
    }

    .seo-plan-warning__inner,
    .seo-plan-next__inner {
        grid-template-columns: 1fr;
    }

    .seo-plan-keyword:nth-child(2),
    .seo-plan-keyword:nth-child(3),
    .seo-plan-keyword:nth-child(4) {
        margin-left: 0;
    }

    .seo-plan-cta__actions {
        flex-direction: column;
    }

    .seo-plan-cta__actions .seo-plan-btn {
        width: 100%;
    }

}