/* =========================================================
   SEO / OPTIMIZACIÓN WEB
========================================================= */

.seo-eyebrow {
    display: block;

    margin-bottom: 9px;

    color: #f28a1a;

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

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


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

.seo-hero {
    position: relative;
    overflow: hidden;

    padding: 148px 24px 78px;

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

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

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

    align-items: center;

    gap: 70px;
}

.seo-hero__eyebrow {
    display: block;

    margin-bottom: 12px;

    color: #f28a1a;

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

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

.seo-hero h1 {
    max-width: 750px;

    margin: 0 0 20px;

    color: #171717;

    font-size: clamp(44px,6vw,72px);
    line-height: .98;

    font-weight: 800;
    letter-spacing: -3px;
}

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

.seo-hero__content > p {
    max-width: 670px;

    margin: 0 0 28px;

    color: #666;

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


/* BOTONES */

.seo-hero__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.seo-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-btn:hover {
    transform: translateY(-2px);
}

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

.seo-btn--secondary {
    border: 1px solid rgba(0,0,0,.10);

    background: #fff;
    color: #222;
}

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


/* PROMESA */

.seo-hero__promise {
    max-width: 600px;

    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 26px;
}

.seo-hero__promise > span {
    width: 28px;
    height: 28px;

    flex: 0 0 28px;

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

    border-radius: 50%;

    background: rgba(242,138,26,.12);
    color: #f28a1a;

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

.seo-hero__promise p {
    margin: 0;

    color: #777;

    font-size: 11px;
    line-height: 1.6;
}

.seo-hero__promise strong {
    color: #333;
}


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

.seo-hero__visual {
    position: relative;

    min-height: 390px;

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

.seo-search {
    position: relative;

    z-index: 2;

    width: min(410px,100%);

    padding: 18px;

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

    background: #fff;

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

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

    align-items: center;

    gap: 10px;

    padding: 10px 13px;

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

    color: #777;

    font-size: 10px;
}

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

    border-radius: 50%;

    background: #f28a1a;
}

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

.seo-search__results {
    padding: 17px 4px 3px;
}

.seo-search__result {
    padding: 12px 8px;

    border-bottom: 1px solid rgba(0,0,0,.06);
}

.seo-search__result:last-child {
    border-bottom: 0;
}

.seo-search__result small {
    display: block;

    margin-bottom: 4px;

    color: #888;

    font-size: 8px;
}

.seo-search__result strong {
    display: block;

    margin-bottom: 7px;

    color: #444;

    font-size: 11px;
}

.seo-search__result > span {
    display: block;

    width: 90%;
    height: 5px;

    margin-top: 4px;

    border-radius: 10px;

    background: #e8e8e6;
}

.seo-search__result > span:last-child {
    width: 68%;
}

.seo-search__result--main strong {
    color: #d87815;
    font-size: 13px;
}

.seo-position {
    position: absolute;

    z-index: 4;

    right: -5px;
    bottom: 28px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    border-radius: 12px;

    background: #181818;

    box-shadow:
        0 18px 40px
        rgba(0,0,0,.16);
}

.seo-position > span {
    color: #2f9b57;

    font-size: 22px;
}

.seo-position small {
    display: block;

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

    font-size: 8px;
    text-transform: uppercase;
}

.seo-position strong {
    color: #fff;

    font-size: 11px;
}


/* =========================================================
   NUESTRO MAYOR ESFUERZO
========================================================= */

.seo-effort {
    padding: 82px 24px;

    background: #fff;
}

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

    display: grid;
    grid-template-columns: .85fr 1.15fr;

    gap: 70px;
}

.seo-effort h2 {
    margin: 0;

    color: #191919;

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

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

.seo-effort h2 strong {
    display: block;

    font-weight: 800;
}

.seo-effort__content p {
    margin: 0 0 13px;

    color: #666;

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


/* =========================================================
   INFORMES
========================================================= */

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

    background: #f7f7f5;
}

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

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

    margin-bottom: 40px;
}

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

    color: #191919;

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

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

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

.seo-report__header p,
.seo-work__header p {
    margin: 0;

    color: #696969;

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

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

    align-items: center;

    gap: 28px;
}

.seo-report__grid article {
    padding: 30px;

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

    background: #fff;
}

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

.seo-report__number {
    display: block;

    margin-bottom: 25px;

    color: #aaa;

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

.seo-report__grid small {
    display: block;

    margin-bottom: 5px;

    color: #f28a1a;

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

    text-transform: uppercase;
}

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

    color: #222;

    font-size: 20px;
}

.seo-report__grid p {
    margin: 0;

    color: #6c6c6c;

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

.seo-report__arrow {
    color: #f28a1a;

    font-size: 28px;
}


/* =========================================================
   QUÉ TRABAJAMOS
========================================================= */

.seo-work {
    padding: 84px 24px;

    background: #181818;
}

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

.seo-work__header {
    max-width: 760px;

    margin-bottom: 42px;
}

.seo-work__header h2 {
    color: #fff;
}

.seo-work__header h2 strong {
    color: #f28a1a;
}

.seo-work__header p {
    color: rgba(255,255,255,.60);
}

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

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

.seo-work__grid article {
    min-height: 205px;

    padding: 27px;

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

.seo-work__grid span {
    color: #f28a1a;

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

.seo-work__grid h3 {
    margin: 27px 0 7px;

    color: #fff;

    font-size: 17px;
}

.seo-work__grid p {
    margin: 0;

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

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


/* =========================================================
   REALIDAD SEO
========================================================= */

.seo-reality {
    padding: 76px 24px;

    background: #fff;
}

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

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

    gap: 28px;
}

.seo-reality__symbol {
    width: 62px;
    height: 62px;

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

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

    color: #f28a1a;

    font-size: 28px;
}

.seo-reality h2,
.seo-time h2,
.seo-foundation h2 {
    margin: 0 0 17px;

    color: #191919;

    font-size: clamp(29px,3.6vw,42px);
    line-height: 1.15;

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

.seo-reality h2 strong,
.seo-time h2 strong,
.seo-foundation h2 strong {
    font-weight: 800;
}

.seo-reality p,
.seo-time p,
.seo-foundation p {
    margin: 0 0 10px;

    color: #696969;

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


/* =========================================================
   TIEMPO
========================================================= */

.seo-time {
    padding: 82px 24px;

    background: #f7f7f5;
}

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

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

    align-items: center;

    gap: 70px;
}

.seo-time__timeline {
    display: flex;
    align-items: center;

    justify-content: center;
}

.seo-time__timeline article {
    min-width: 100px;

    text-align: center;
}

.seo-time__timeline article > span {
    width: 32px;
    height: 32px;

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

    margin: 0 auto 8px;

    border-radius: 50%;

    background: #181818;
    color: #f28a1a;

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

.seo-time__timeline strong {
    display: block;

    color: #222;

    font-size: 11px;
}

.seo-time__timeline small {
    display: block;

    margin-top: 3px;

    color: #888;

    font-size: 8px;
}

.seo-time__timeline > i {
    width: 35px;
    height: 1px;

    margin-top: -25px;

    background: #ccc;
}


/* =========================================================
   BASE / DESARROLLO
========================================================= */

.seo-foundation {
    padding: 78px 24px;

    background: #fff;
}

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

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

    gap: 60px;
}

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

    margin-top: 12px;

    color: #d87815;

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

    text-decoration: none;
}


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

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

    background: #181818;
}

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

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

    align-items: center;

    gap: 50px;
}

.seo-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-cta h2 {
    margin: 0 0 12px;

    color: #fff;

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

    font-weight: 500;
}

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

    font-weight: 800;
}

.seo-cta p {
    max-width: 680px;

    margin: 0;

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

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

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

    gap: 10px;
}


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

@media (max-width: 900px) {

    .seo-hero__inner,
    .seo-effort__inner,
    .seo-time__inner,
    .seo-foundation__inner {
        grid-template-columns: 1fr;
    }

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

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

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

}


@media (max-width: 700px) {

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

    .seo-report__arrow {
        justify-self: center;

        transform: rotate(90deg);
    }

    .seo-time__timeline {
        display: grid;
        grid-template-columns: repeat(2,1fr);

        gap: 22px;
    }

    .seo-time__timeline > i {
        display: none;
    }

}


@media (max-width: 600px) {

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

    .seo-hero h1 {
        font-size: 42px;

        letter-spacing: -1.8px;
    }

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

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

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

    .seo-effort,
    .seo-report,
    .seo-work,
    .seo-reality,
    .seo-time,
    .seo-foundation,
    .seo-cta {
        padding: 58px 20px;
    }

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

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

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

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

}