
/* =========================================================
   SSTEC BLOG
   COLORES Y ESTILOS
========================================================= */

:root {

    --sstec-dark: #071A35;
    --sstec-blue: #0B4EA2;
    --sstec-blue-2: #1769D2;
    --sstec-cyan: #00B8D9;
    --sstec-purple: #6759E8;
    --sstec-orange: #F28C38;

    --sstec-bg: #F4F7FB;
    --sstec-white: #FFFFFF;

    --sstec-text: #172B4D;
    --sstec-gray: #68778D;

    --sstec-border: #E1E8F0;
}


/* =========================================================
   BLOG GENERAL
========================================================= */

.sstec-blog,
.sstec-blog * {

    box-sizing: border-box;

}

.sstec-blog {

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    font-family: 'Roboto', sans-serif;

    background: var(--sstec-bg) !important;

    color: var(--sstec-text) !important;

}


/* =========================================================
   CORRECCIÓN DE COLORES DE MOBIRISE
========================================================= */

.sstec-blog h1,
.sstec-blog h2,
.sstec-blog h3,
.sstec-blog h4,
.sstec-blog h5,
.sstec-blog p,
.sstec-blog span,
.sstec-blog article {

    color: inherit;

}


/* =========================================================
   HERO
========================================================= */

.sstec-hero {

    width: 100% !important;

    min-height: 440px;

    margin: 0 !important;

    padding: 120px 40px 70px !important;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:

        radial-gradient(
            circle at 10% 50%,
            rgba(0,184,217,.20),
            transparent 28%
        ),

        radial-gradient(
            circle at 90% 20%,
            rgba(23,105,210,.25),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #06152D 0%,
            #0B4EA2 100%
        ) !important;

    position: relative;

    overflow: hidden;

}


/* círculos decorativos */

.sstec-hero::before {

    content: "";

    position: absolute;

    width: 550px;

    height: 550px;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 50%;

    right: -260px;

    bottom: -350px;

}


.sstec-hero::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 50%;

    left: -230px;

    top: -260px;

}


/* =========================================================
   HERO TEXTO
========================================================= */

.sstec-hero-inner {

    width: 100%;

    max-width: 950px;

    position: relative;

    z-index: 2;

}


.sstec-label {

    display: inline-block;

    margin-bottom: 22px;

    padding: 9px 18px;

    border: 1px solid rgba(255,255,255,.22);

    border-radius: 30px;

    color: #6EE5F1 !important;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

}


.sstec-hero h1 {

    margin: 0;

    padding: 0;

    color: #FFFFFF !important;

    font-size: clamp(2.7rem, 5vw, 4.8rem);

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -2px;

}


.sstec-hero h1 strong {

    display: block;

    color: #65DCEB !important;

    font-weight: 900;

}


.sstec-hero p {

    width: 100%;

    max-width: 720px;

    margin: 28px auto 0;

    color: rgba(255,255,255,.82) !important;

    font-size: 1.1rem;

    line-height: 1.7;

}


/* =========================================================
   CONTENIDO PRINCIPAL
========================================================= */

.sstec-content {

    width: 100% !important;

    max-width: 1400px !important;

    margin: 0 auto !important;

    padding: 80px 60px 100px !important;

}


/* =========================================================
   DESTACADO
========================================================= */

.sstec-feature {

    width: 100% !important;

    min-height: 430px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(350px, .8fr);

    align-items: center;

    gap: 80px;

    margin: 0 0 85px !important;

    padding: 65px 75px !important;

    background: #FFFFFF !important;

    border: 1px solid var(--sstec-border);

    border-radius: 28px;

    box-shadow: 0 15px 45px rgba(7,26,53,.07);

    position: relative;

    overflow: hidden;

}


/* barra lateral */

.sstec-feature::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    bottom: 0;

    width: 7px;

    background: linear-gradient(
        180deg,
        var(--sstec-cyan),
        var(--sstec-blue-2)
    );

}


/* =========================================================
   TEXTO DESTACADO
========================================================= */

.sstec-feature-text {

    width: 100%;

    max-width: 720px;

}


.sstec-category {

    display: block;

    margin-bottom: 15px;

    color: var(--sstec-blue-2) !important;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;

}


.sstec-feature h2 {

    margin: 0 0 10px;

    color: var(--sstec-blue) !important;

    font-size: clamp(2.4rem, 4vw, 3.6rem);

    line-height: 1.1;

    font-weight: 900;

}


.sstec-feature h3 {

    margin: 0 0 20px;

    color: var(--sstec-dark) !important;

    font-size: clamp(1.3rem, 2vw, 1.8rem);

    line-height: 1.35;

    font-weight: 700;

}


.sstec-feature p {

    width: 100%;

    max-width: 680px;

    margin: 0 0 30px;

    color: var(--sstec-gray) !important;

    font-size: 1.05rem;

    line-height: 1.75;

}


/* =========================================================
   BOTÓN PRINCIPAL
========================================================= */

.sstec-primary-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 25px;

    background: linear-gradient(
        135deg,
        var(--sstec-blue),
        var(--sstec-blue-2)
    ) !important;

    border-radius: 9px;

    color: #FFFFFF !important;

    text-decoration: none !important;

    font-size: 14px;

    font-weight: 800;

    transition: .3s ease;

}


.sstec-primary-btn:hover {

    color: #FFFFFF !important;

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(23,105,210,.25);

}


.sstec-primary-btn span {

    color: #FFFFFF !important;

    font-size: 20px;

}


/* =========================================================
   ILUSTRACIÓN
========================================================= */

.sstec-feature-art {

    position: relative;

    width: 100%;

    height: 320px;

}


.art-ring {

    position: absolute;

    border-radius: 50%;

}


.ring-1 {

    width: 300px;

    height: 300px;

    top: 10px;

    left: 50%;

    transform: translateX(-50%);

    background: rgba(23,105,210,.06);

}


.ring-2 {

    width: 220px;

    height: 220px;

    top: 50px;

    left: 50%;

    transform: translateX(-50%);

    border: 1px solid rgba(0,184,217,.35);

}


.art-center {

    position: absolute;

    width: 130px;

    height: 130px;

    top: 95px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        var(--sstec-blue),
        var(--sstec-blue-2)
    );

    color: #FFFFFF !important;

    font-size: 58px;

    font-weight: 900;

    box-shadow: 0 20px 45px rgba(11,78,162,.25);

}


.art-tag {

    position: absolute;

    padding: 11px 17px;

    background: #FFFFFF !important;

    border: 1px solid var(--sstec-border);

    border-radius: 9px;

    box-shadow: 0 8px 25px rgba(7,26,53,.10);

    color: var(--sstec-text) !important;

    font-size: 12px;

    font-weight: 800;

}


/* =========================================================
   TÍTULO DE CONTENIDOS
========================================================= */

.content-heading {

    width: 100%;

    margin-bottom: 35px;

}


.content-heading span {

    color: var(--sstec-blue-2) !important;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;

}


.content-heading h2 {

    max-width: 750px;

    margin: 10px 0 0;

    color: var(--sstec-dark) !important;

    font-size: 2.2rem;

    line-height: 1.25;

    font-weight: 800;

}


/* =========================================================
   GRID
========================================================= */

.sstec-cards {

    width: 100% !important;

    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;

    gap: 30px !important;

    margin: 0 !important;

    padding: 0 !important;

}


/* =========================================================
   TARJETAS
========================================================= */

.sstec-card {

    width: 100% !important;

    min-width: 0 !important;

    min-height: 330px;

    margin: 0 !important;

    padding: 35px !important;

    background: #FFFFFF !important;

    border: 1px solid var(--sstec-border);

    border-radius: 20px;

    box-shadow: 0 12px 35px rgba(7,26,53,.06);

    transition: .3s ease;

}


.sstec-card:hover {

    transform: translateY(-7px);

    box-shadow: 0 20px 45px rgba(7,26,53,.12);

}


/* =========================================================
   HEADER TARJETA
========================================================= */

.sstec-card-header {

    width: 100%;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 25px;

}


.sstec-card-header > span {

    color: #AEBAC8 !important;

    font-size: 12px;

    font-weight: 900;

}


/* =========================================================
   ICONOS
========================================================= */

.sstec-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    font-size: 26px;

}


.sstec-icon.blue {

    background: rgba(23,105,210,.10);

}


.sstec-icon.cyan {

    background: rgba(0,184,217,.11);

}


.sstec-icon.purple {

    background: rgba(103,89,232,.11);

    color: var(--sstec-purple) !important;

    font-size: 28px;

    font-weight: 900;

}


.sstec-icon.orange {

    background: rgba(242,140,56,.12);

}


/* =========================================================
   TEXTO TARJETAS
========================================================= */

.sstec-card h3 {

    margin: 0 0 13px;

    color: var(--sstec-dark) !important;

    font-size: 1.5rem;

    font-weight: 800;

}


.sstec-card p {

    width: 100%;

    margin: 0;

    color: var(--sstec-gray) !important;

    font-size: .98rem;

    line-height: 1.7;

}


/* =========================================================
   ENLACES TARJETAS
========================================================= */

.sstec-card > a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 25px;

    color: var(--sstec-blue-2) !important;

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 800;

}


.sstec-card > a:hover {

    color: var(--sstec-blue) !important;

}


.sstec-card > a strong {

    color: inherit !important;

    font-size: 18px;

}


/* =========================================================
   EVENTOS
========================================================= */

.sstec-event {

    width: 100%;

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 12px;

    padding: 10px;

    background: #F7F9FC !important;

    border: 1px solid var(--sstec-border);

    border-radius: 10px;

}


.sstec-event-date {

    width: 48px;

    min-width: 48px;

    padding: 6px;

    border-radius: 8px;

    background: var(--sstec-dark) !important;

    color: #FFFFFF !important;

    text-align: center;

}


.sstec-event-date strong {

    display: block;

    color: #FFFFFF !important;

    font-size: 18px;

    line-height: 1;

}


.sstec-event-date small {

    display: block;

    margin-top: 3px;

    color: #FFFFFF !important;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

}


.sstec-event > span {

    color: var(--sstec-text) !important;

    font-size: 12px;

    line-height: 1.4;

}


/* =========================================================
   CTA
========================================================= */

.sstec-cta {

    width: 100%;

    min-height: 180px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    margin-top: 75px;

    padding: 45px 55px;

    background:

        radial-gradient(
            circle at 100% 0%,
            rgba(0,184,217,.25),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            var(--sstec-dark),
            var(--sstec-blue)
        ) !important;

    border-radius: 22px;

}


.sstec-cta > div {

    max-width: 750px;

}


.sstec-cta span {

    color: #69DFED !important;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

}


.sstec-cta h2 {

    margin: 8px 0;

    color: #FFFFFF !important;

    font-size: 2rem;

    font-weight: 800;

}


.sstec-cta p {

    margin: 0;

    color: rgba(255,255,255,.72) !important;

}


.sstec-cta > a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 15px 25px;

    background: #FFFFFF !important;

    border-radius: 9px;

    color: var(--sstec-blue) !important;

    text-decoration: none !important;

    font-size: 14px;

    font-weight: 800;

}


.sstec-cta > a strong {

    color: var(--sstec-blue) !important;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .sstec-content {

        padding-left: 35px !important;

        padding-right: 35px !important;

    }


    .sstec-feature {

        grid-template-columns: 1fr;

        gap: 20px;

        padding: 50px !important;

    }


    .sstec-feature-art {

        max-width: 400px;

        margin: 0 auto;

    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 700px) {

    .sstec-hero {

        min-height: 400px;

        padding: 100px 20px 55px !important;

    }


    .sstec-hero h1 {

        font-size: 2.4rem;

    }


    .sstec-content {

        padding: 45px 18px 70px !important;

    }


    .sstec-feature {

        padding: 35px 25px !important;

        margin-bottom: 55px !important;

    }


    .sstec-feature h2 {

        font-size: 2.3rem;

    }


    .sstec-feature h3 {

        font-size: 1.3rem;

    }


    .sstec-feature-art {

        height: 280px;

        transform: scale(.85);

    }


    .sstec-cards {

        grid-template-columns: 1fr !important;

        gap: 20px !important;

    }


    .sstec-card {

        min-height: 280px;

    }


    .sstec-cta {

        flex-direction: column;

        align-items: flex-start;

        padding: 35px 28px;

    }


    .sstec-cta > a {

        width: 100%;

        justify-content: center;

    }

}


/* =========================================================
   PANTALLAS GRANDES
========================================================= */

@media (min-width: 1600px) {

    .sstec-content {

        max-width: 1500px !important;

        padding-left: 30px !important;

        padding-right: 30px !important;

    }

}

