/* =========================================================
   HERO — CERTIFICADOS SSL
========================================================= */

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

    padding: 148px 24px 76px;

    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(47,155,87,.12),
            transparent 31%
        ),
        radial-gradient(
            circle at 72% 75%,
            rgba(242,138,26,.08),
            transparent 28%
        ),
        #f7f7f5;
}

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

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

    align-items: center;

    gap: 70px;
}


/* CONTENIDO */

.ssl-hero__eyebrow {
    display: block;

    margin-bottom: 12px;

    color: #2f9b57;

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

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

.ssl-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;
}

.ssl-hero h1 span {
    display: block;

    color: #2f9b57;
}

.ssl-hero__content > p {
    max-width: 680px;

    margin: 0 0 28px;

    color: #666;

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


/* BOTONES */

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

    gap: 12px;
}

.ssl-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;
}

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

.ssl-btn--primary {
    background: #2f9b57;
    color: #fff;
}

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

    background: #fff;
    color: #222;
}


/* ESTADO */

.ssl-hero__status {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-top: 24px;

    color: #666;

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

.ssl-hero__status-icon {
    width: 22px;
    height: 22px;

    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;
}


/* =========================================================
   VISUAL SSL
========================================================= */

.ssl-hero__visual {
    position: relative;

    min-height: 380px;

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


/* CANDADO */

.ssl-lock {
    position: relative;

    z-index: 3;

    width: 190px;

    filter:
        drop-shadow(
            0 28px 28px
            rgba(0,0,0,.13)
        );
}

.ssl-lock__shackle {
    width: 112px;
    height: 105px;

    margin: 0 auto -38px;

    border:
        18px solid
        #2f9b57;

    border-bottom: 0;

    border-radius:
        60px
        60px
        0
        0;
}

.ssl-lock__body {
    position: relative;

    height: 150px;

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

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            #30302e,
            #151514
        );
}

.ssl-lock__key {
    width: 38px;
    height: 38px;

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

    border-radius: 50%;

    background: #f28a1a;
}

.ssl-lock__key span {
    width: 7px;
    height: 34px;

    margin-top: 22px;

    border-radius: 5px;

    background: #f28a1a;
}


/* BARRA URL */

.ssl-address {
    position: absolute;

    z-index: 4;

    right: 0;
    bottom: 32px;

    min-width: 270px;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 13px 16px;

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

    background: rgba(255,255,255,.94);

    box-shadow:
        0 16px 45px
        rgba(0,0,0,.10);
}

.ssl-address__lock {
    color: #2f9b57;

    font-size: 14px;
}

.ssl-address small {
    display: block;

    margin-bottom: 2px;

    color: #999;

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

    text-transform: uppercase;
    letter-spacing: .5px;
}

.ssl-address strong {
    display: block;

    color: #333;

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


/* DECORACIÓN */

.ssl-orbit {
    position: absolute;

    border:
        1px solid
        rgba(47,155,87,.15);

    border-radius: 50%;
}

.ssl-orbit--1 {
    width: 310px;
    height: 310px;
}

.ssl-orbit--2 {
    width: 390px;
    height: 390px;

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


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

@media (max-width: 850px) {

    .ssl-hero__inner {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .ssl-hero__content {
        margin: 0 auto;
    }

    .ssl-hero__content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .ssl-hero__actions,
    .ssl-hero__status {
        justify-content: center;
    }

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

    .ssl-address {
        right: 50%;

        transform: translateX(50%);
    }

}


@media (max-width: 600px) {

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

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

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

    .ssl-btn {
        width: 100%;
    }

    .ssl-hero__visual {
        min-height: 290px;
    }

    .ssl-address {
        min-width: 245px;
    }

}
/* =========================================================
   SSL — ESTILOS GENERALES
========================================================= */

.ssl-eyebrow {
    display: block;
    margin-bottom: 8px;

    color: #2f9b57;

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

.ssl-section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.ssl-section-heading h2,
.ssl-about__intro h2 {
    margin: 0 0 15px;

    color: #191919;

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -1.4px;
}

.ssl-section-heading h2 strong,
.ssl-about__intro h2 strong {
    font-weight: 800;
}

.ssl-section-heading p,
.ssl-about__intro p {
    margin: 0 0 10px;

    color: #696969;

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


/* =========================================================
   QUÉ ES SSL
========================================================= */

.ssl-about {
    padding: 82px 24px;
    background: #fff;
}

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

    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
}

.ssl-about__points {
    border-top: 1px solid rgba(0,0,0,.08);
}

.ssl-about__points article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;

    padding: 22px 0;

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

.ssl-about__points article > span {
    color: #2f9b57;
    font-size: 10px;
    font-weight: 700;
}

.ssl-about__points h3 {
    margin: 0 0 6px;
    color: #222;
    font-size: 16px;
}

.ssl-about__points p {
    margin: 0;
    color: #707070;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   ADVERTENCIA
========================================================= */

.ssl-warning {
    padding: 42px 24px;
    background: #fff;
}

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

    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;

    padding: 25px;

    border-left: 3px solid #b83a32;

    background: #fff7f6;
}

.ssl-warning__icon {
    width: 38px;
    height: 38px;

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

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

    color: #b83a32;
    font-weight: 800;
}

.ssl-warning span {
    color: #a8322b;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.ssl-warning h2 {
    margin: 5px 0 10px;

    color: #222;

    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.2;
    font-weight: 500;
}

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

.ssl-warning p {
    margin: 0 0 8px;

    color: #655b5a;

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


/* =========================================================
   HTTP VS HTTPS
========================================================= */

.ssl-https {
    padding: 82px 24px;
    background: #f7f7f5;
}

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

.ssl-https__compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;

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

.ssl-https__card {
    padding: 26px;

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

    background: #fff;
}

.ssl-https__card--https {
    border-color: rgba(47,155,87,.25);
}

.ssl-https__state {
    display: inline-block;

    margin-bottom: 15px;

    color: #888;

    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.ssl-https__card--https .ssl-https__state {
    color: #2f9b57;
}

.ssl-browser {
    overflow: hidden;

    margin-bottom: 20px;

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

    background: #fafafa;
}

.ssl-browser__top {
    display: flex;
    gap: 5px;

    padding: 9px;

    background: #eee;
}

.ssl-browser__top i {
    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: #bbb;
}

.ssl-browser__address {
    padding: 14px;

    color: #777;

    font-size: 11px;
}

.ssl-browser__address strong {
    margin-right: 5px;
    color: #2f9b57;
}

.ssl-https__card h3 {
    margin: 0 0 7px;
    color: #222;
    font-size: 20px;
}

.ssl-https__card p {
    margin: 0;

    color: #707070;

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

.ssl-https__arrow {
    color: #2f9b57;
    font-size: 28px;
}


/* =========================================================
   USOS
========================================================= */

.ssl-uses {
    padding: 82px 24px;
    background: #181818;
}

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

.ssl-section-heading--light h2 {
    color: #fff;
}

.ssl-section-heading--light h2 strong {
    color: #2f9b57;
}

.ssl-section-heading--light p {
    color: rgba(255,255,255,.6);
}

.ssl-uses__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);
}

.ssl-uses__grid article {
    min-height: 190px;

    padding: 26px;

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

.ssl-uses__grid span {
    color: #2f9b57;
    font-size: 10px;
    font-weight: 700;
}

.ssl-uses__grid h3 {
    margin: 26px 0 7px;
    color: #fff;
    font-size: 17px;
}

.ssl-uses__grid p {
    margin: 0;

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

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


/* =========================================================
   HOSTING
========================================================= */

.ssl-hosting {
    padding: 86px 24px;
    background: #fff;
}

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

    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;

    gap: 70px;
}

.ssl-hosting__content h2,
.ssl-compatibility h2,
.ssl-renewal h2,
.ssl-external 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;
}

.ssl-hosting__content h2 strong,
.ssl-compatibility h2 strong,
.ssl-renewal h2 strong,
.ssl-external h2 strong {
    font-weight: 800;
}

.ssl-hosting__content p,
.ssl-compatibility p,
.ssl-renewal p,
.ssl-external p {
    margin: 0 0 11px;

    color: #696969;

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

.ssl-hosting__stack {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;
}

.ssl-hosting__stack > div {
    min-width: 90px;

    padding: 18px 12px;

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

    text-align: center;

    background: #f7f7f5;
}

.ssl-hosting__stack span {
    display: block;
    margin-bottom: 5px;

    color: #999;

    font-size: 9px;
}

.ssl-hosting__stack strong {
    color: #222;
    font-size: 12px;
}

.ssl-hosting__stack i {
    color: #aaa;
    font-style: normal;
}

.ssl-hosting__stack .ssl-hosting__result {
    background: #2f9b57;
}

.ssl-hosting__result span,
.ssl-hosting__result strong {
    color: #fff;
}


/* =========================================================
   TIPOS
========================================================= */

.ssl-types {
    padding: 82px 24px;
    background: #f7f7f5;
}

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

.ssl-types__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));

    gap: 18px;
}

.ssl-types__grid article {
    padding: 30px;

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

    background: #fff;
}

.ssl-types__tag {
    display: inline-block;

    margin-bottom: 20px;

    padding: 5px 8px;

    border-radius: 5px;

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

    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.ssl-types__grid h3 {
    margin: 0 0 9px;
    color: #222;
    font-size: 21px;
}

.ssl-types__grid p,
.ssl-types__grid li {
    color: #6d6d6d;
    font-size: 12px;
    line-height: 1.75;
}

.ssl-types__grid ul {
    margin: 18px 0 0;
    padding-left: 18px;
}


/* =========================================================
   INSTALACIÓN
========================================================= */

.ssl-install {
    padding: 82px 24px;
    background: #fff;
}

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

.ssl-install__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));

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

.ssl-install__steps article {
    padding: 27px 23px;

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

.ssl-install__steps article:first-child {
    border-left: 1px solid rgba(0,0,0,.08);
}

.ssl-install__steps span {
    color: #2f9b57;
    font-size: 10px;
    font-weight: 700;
}

.ssl-install__steps h3 {
    margin: 27px 0 7px;
    color: #222;
    font-size: 16px;
}

.ssl-install__steps p {
    margin: 0;
    color: #707070;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   COMPATIBILIDAD
========================================================= */

.ssl-compatibility {
    padding: 72px 24px;
    background: #f7f7f5;
}

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

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

    gap: 60px;
}


/* =========================================================
   RENOVACIÓN
========================================================= */

.ssl-renewal {
    padding: 70px 24px;
    background: #fff;
}

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

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

    gap: 28px;
}

.ssl-renewal__symbol {
    width: 60px;
    height: 60px;

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

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

    color: #2f9b57;

    font-size: 25px;
}


/* =========================================================
   SERVIDORES EXTERNOS
========================================================= */

.ssl-external {
    padding: 78px 24px;
    background: #f7f7f5;
}

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

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;

    gap: 60px;
}

.ssl-external__badge {
    width: 180px;
    height: 180px;

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

    border: 1px solid rgba(47,155,87,.25);
    border-radius: 50%;

    background: #fff;
}

.ssl-external__badge span {
    color: #2f9b57;
    font-size: 11px;
    font-weight: 700;
}

.ssl-external__badge strong {
    margin: 4px 0;
    color: #222;
    font-size: 25px;
}

.ssl-external__badge small {
    color: #888;
    font-size: 9px;
}


/* =========================================================
   FAQ
========================================================= */

.ssl-faq {
    padding: 82px 24px;
    background: #fff;
}

.ssl-faq__inner {
    width: min(900px, 100%);
    margin: 0 auto;
}

.ssl-faq__list {
    border-top: 1px solid rgba(0,0,0,.08);
}

.ssl-faq details {
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.ssl-faq summary {
    position: relative;

    padding: 21px 40px 21px 0;

    cursor: pointer;

    list-style: none;

    color: #222;

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

.ssl-faq summary::-webkit-details-marker {
    display: none;
}

.ssl-faq summary::after {
    content: "+";

    position: absolute;
    right: 5px;

    color: #2f9b57;

    font-size: 20px;
    font-weight: 400;
}

.ssl-faq details[open] summary::after {
    content: "−";
}

.ssl-faq details p {
    max-width: 760px;

    margin: -5px 0 20px;

    color: #6c6c6c;

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


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

.ssl-cta {
    padding: 74px 24px;
    background: #181818;
}

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

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

    align-items: center;

    gap: 50px;
}

.ssl-cta__eyebrow {
    display: block;
    margin-bottom: 8px;

    color: #2f9b57;

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

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

.ssl-cta h2 {
    margin: 0 0 12px;

    color: #fff;

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

    font-weight: 500;
}

.ssl-cta h2 strong {
    color: #2f9b57;
    font-weight: 800;
}

.ssl-cta p {
    max-width: 680px;
    margin: 0;

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

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

.ssl-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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


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

@media (max-width: 900px) {

    .ssl-about__inner,
    .ssl-hosting__inner,
    .ssl-compatibility__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

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

    .ssl-install__steps article:nth-child(3) {
        border-left: 1px solid rgba(0,0,0,.08);
    }

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

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

}


@media (max-width: 700px) {

    .ssl-https__compare {
        grid-template-columns: 1fr;
    }

    .ssl-https__arrow {
        justify-self: center;
        transform: rotate(90deg);
    }

    .ssl-types__grid {
        grid-template-columns: 1fr;
    }

    .ssl-hosting__stack {
        flex-wrap: wrap;
    }

    .ssl-external__inner {
        grid-template-columns: 1fr;
    }

    .ssl-external__badge {
        justify-self: center;
    }

}


@media (max-width: 600px) {

    .ssl-about,
    .ssl-https,
    .ssl-uses,
    .ssl-hosting,
    .ssl-types,
    .ssl-install,
    .ssl-compatibility,
    .ssl-renewal,
    .ssl-external,
    .ssl-faq,
    .ssl-cta {
        padding: 58px 20px;
    }

    .ssl-warning {
        padding: 30px 20px;
    }

    .ssl-warning__inner,
    .ssl-renewal__inner {
        grid-template-columns: 1fr;
    }

    .ssl-uses__grid,
    .ssl-install__steps {
        grid-template-columns: 1fr;
    }

    .ssl-install__steps article,
    .ssl-install__steps article:nth-child(3) {
        border-left: 1px solid rgba(0,0,0,.08);
    }

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

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

}
/* =========================================================
   SSL BENEFIT
========================================================= */

.ssl-benefit {
    padding: 56px 24px 66px;
    background: #fff;
}

.ssl-benefit__inner {
    width: min(1100px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.5fr .75fr;

    gap: 18px;
}


/* =========================================================
   CARD GENERAL
========================================================= */

.ssl-benefit__card {
    position: relative;

    border-radius: 18px;

    overflow: hidden;
}


/* =========================================================
   SSL INCLUIDO
========================================================= */

.ssl-benefit__card--included {
    display: grid;
    grid-template-columns: auto 1fr;

    gap: 24px;

    padding: 34px;

    border: 1px solid rgba(47,155,87,.18);

    background:
        radial-gradient(
            circle at 95% 10%,
            rgba(47,155,87,.10),
            transparent 35%
        ),
        #f8fbf9;
}

.ssl-benefit__icon {
    width: 58px;
    height: 58px;

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

    flex-shrink: 0;

    border-radius: 50%;

    background: #2f9b57;
    color: #fff;

    font-size: 22px;
    font-weight: 800;

    box-shadow:
        0 12px 28px
        rgba(47,155,87,.18);
}

.ssl-benefit__eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #2f9b57;

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

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

.ssl-benefit h2 {
    max-width: 760px;

    margin: 0 0 14px;

    color: #1b1b1b;

    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.16;

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

.ssl-benefit h2 strong {
    font-weight: 800;
}

.ssl-benefit__content > p {
    max-width: 780px;

    margin: 0;

    color: #666;

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


/* LISTA */

.ssl-benefit__list {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 22px;
}

.ssl-benefit__list span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 8px 11px;

    border: 1px solid rgba(47,155,87,.12);
    border-radius: 8px;

    background: #fff;

    color: #4c6656;

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

.ssl-benefit__list i {
    color: #2f9b57;
    font-style: normal;
    font-weight: 800;
}


/* =========================================================
   CERTIFICADO EXTRA
========================================================= */

.ssl-benefit__card--extra {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 30px;

    border: 1px solid rgba(242,138,26,.20);

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(242,138,26,.10),
            transparent 40%
        ),
        #fffaf4;
}

.ssl-benefit__extra-top {
    margin-bottom: 14px;
}

.ssl-benefit__extra-label {
    display: block;

    margin-bottom: 5px;

    color: #d67612;

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

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

.ssl-benefit__extra-top strong {
    display: block;

    color: #252525;

    font-size: 20px;
    line-height: 1.2;
}

.ssl-benefit__card--extra p {
    margin: 0 0 15px;

    color: #6b6259;

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

.ssl-benefit__extra-note {
    display: block;

    padding-top: 14px;

    border-top: 1px solid rgba(242,138,26,.16);

    color: #8a755f;

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


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

@media (max-width: 850px) {

    .ssl-benefit__inner {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .ssl-benefit {
        padding: 40px 20px 50px;
    }

    .ssl-benefit__card--included {
        grid-template-columns: 1fr;

        padding: 26px 22px;
    }

    .ssl-benefit__card--extra {
        padding: 24px 22px;
    }

    .ssl-benefit__list {
        flex-direction: column;
        align-items: stretch;
    }

}