:root {
    --orange: #ff6500;
    --orange2: #ff8a00;
    --blue: #0b2f68;
    --dark: #030b15;
    --text: #121212;
    --light: #f7f8fa;
    --white: #fff;
    --shadow: 0 8px 25px rgba(0, 0, 0, .09)
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}
html {
    scroll-behavior: smooth
}
body {
    font-family: Montserrat, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden
}
a {
    text-decoration: none;
    color: inherit
}




.preloader {
    position: fixed;
    inset: 0;
    background: #030d1d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 9999;
    font-weight: 800;
    letter-spacing: 2px;
    transition: opacity .5s, visibility .5s
}
.preloader.hide {
    opacity: 0;
    visibility: hidden
}
.loader-ring {
    width: 52px;
    height: 52px;
    border: 5px solid rgba(255, 255, 255, .15);
    border-top-color: var(--orange);
    border-right-color: #1164e8;
    border-radius: 50%;
    animation: spin .9s linear infinite
}
@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}




.site-header {
    height: 86px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08)
}
.header-inner {
    max-width: 1440px;
    height: 100%;
    margin: auto;
    padding: 0 34px;
    display: flex;
    align-items: center;
    gap: 30px
}
.brand {
    display: flex;
    align-items: center;
    min-width: 360px
}
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0
}
.brand-logo {
    display: block;
    width: 280px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease
}
.brand:hover .brand-logo {
    transform: scale(1.03)
}
.brand-mark {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #555, #050505 52%, #222);
    border: 3px solid #aaa;
    box-shadow: inset 0 0 0 5px #111;
    display: grid;
    place-items: center;
    margin-right: 12px
}
.brand-mark span {
    color: #fff;
    background: linear-gradient(135deg, #ffea00, #ff4b00);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    width: 26px;
    height: 32px;
    font-size: 0;
    filter: drop-shadow(0 0 4px #ff6800)
}





.main-nav {
    margin-left: auto;
    flex-shrink: 0
}

.main-nav > ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0
}

.main-nav > ul > li {
    flex-shrink: 0;
    white-space: nowrap;
}

.main-nav a {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    padding: 32px 2px 27px;
    transition: .3s
}

.main-nav a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 0;
    height: 3px;
    background: var(--orange);
    transform: translateX(-50%);
    transition: .3s
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--orange);
    transform: translateY(-2px)
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%
}


/* =========================================
   MENÚ DESPLEGABLE
   ========================================= */

.main-nav li.has-dropdown {
    position: relative
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.dropdown-toggle .arrow {
    font-size: 10px;
    line-height: 1;
    transition: transform .3s ease
}

.has-dropdown:hover .arrow {
    transform: rotate(180deg)
}


/* =========================================
   CAJA DESPLEGABLE
   ========================================= */

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);

    width: 225px;
    padding: 9px 0;

    background: #fff;
    border-radius: 8px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .14);

    list-style: none;
    margin: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    z-index: 9999
}


/* Mostrar desplegable */

.has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}


/* =========================================
   ITEMS DEL DESPLEGABLE
   ========================================= */

.dropdown-menu li {
    width: 100%;
    display: block;
    flex-shrink: 0
}


/* Enlaces del desplegable */

.main-nav .dropdown-menu li a {
    display: block;

    width: 100%;
    box-sizing: border-box;

    padding: 11px 20px;

    color: #14233c;
    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    text-decoration: none;

    white-space: nowrap;

    transition:
        background .2s ease,
        color .2s ease,
        padding-left .2s ease
}


/* Hover */

.main-nav .dropdown-menu li a:hover {
    color: var(--orange);
    background: #f7f8fa;
    padding-left: 25px;
    transform: none
}


/* Eliminar línea naranja del menú desplegable */

.main-nav .dropdown-menu li a:after {
    display: none
}


/* =========================================
   SEPARADOR
   ========================================= */

.dropdown-menu .dropdown-separator {
    display: block;
    width: auto;
    height: 1px;
    margin: 7px 15px;
    background: #e9ebee
}


/* =========================================
   BOTÓN COTIZAR
   ========================================= */

.quote-btn {
    background: #07111e;
    color: #fff;
    padding: 13px 22px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    transition: .3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    flex-shrink: 0
}

.quote-btn span {
    color: var(--orange);
    margin-right: 7px
}

.quote-btn:hover {
    background: var(--orange);
    transform: translateY(-3px)
}


/* =========================================
   MENÚ MÓVIL
   ========================================= */

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 45px;
    height: 45px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer
}

.menu-toggle span {
    width: 27px;
    height: 3px;
    background: #091a2e;
    border-radius: 4px;
    transition: .3s
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}






.hero {
    min-height: 386px;
    background: #030b15;
    display: grid;
    grid-template-columns: 38% 62%;
    position: relative;
    overflow: hidden
}
.hero-content {
    color: #fff;
    padding: 50px 25px 45px max(5vw, 40px);
    position: relative;
    z-index: 3;
    background: linear-gradient(90deg, #030b15 75%, rgba(3, 11, 21, .7));
    display: flex;
    flex-direction: column;
    justify-content: center
}
.hero h1 {
    font-size: 35px;
    line-height: 1.16;
    text-transform: uppercase;
    font-weight: 800
}
.hero h1 span {
    color: var(--orange)
}
.hero h2 {
    font-size: 16px;
    margin-top: 10px
}
.hero p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 520px;
    margin-top: 20px
}
.hero-actions {
    display: flex;
    gap: 18px;
    margin-top: 26px
}
.btn {
    padding: 13px 20px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    transition: .3s
}
.btn b {
    font-size: 19px;
    margin-left: 8px
}
.btn-primary {
    background: var(--orange);
    color: #fff
}
.btn-outline {
    border: 1px solid #fff;
    color: #fff
}
.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2)
}
.hero-visual {
    width: 100%;
    height: auto;
    display: block;
}
.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center
}
.section {
    padding: 22px 5% 24px
}
.section-title {
    text-align: center;
    margin-bottom: 14px
}
.section-title h2 {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 800
}
.section-title span {
    color: var(--orange)
}
.section-title i {
    display: block;
    width: 40px;
    height: 3px;
    background: var(--orange);
    margin: 7px auto 0
}
.cards-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px
}
.specialty-card {
    min-height: 222px;
    padding: 12px 20px 14px;
    background: #fff;
    border-radius: 6px;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
    transition: .35s;
    position: relative;
    overflow: hidden
}
.specialty-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s
}
.specialty-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .13)
}
.specialty-card:hover:before {
    transform: scaleX(1)
}
.icon {
    height: 65px;
    display: grid;
    place-items: center;
    color: var(--orange);
    margin-bottom: 10px
}
.icon svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}
.specialty-card h3 {
    text-align: center;
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 10px
}
.specialty-card ul {
    padding-left: 18px;
    font-size: 11px;
    font-weight: 500;
    color: #666;
    line-height: 2.2
}
.specialty-card a {
    display: inline-block;
    margin-top: 9px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase
}
.specialty-card a b {
    font-size: 18px;
    margin-left: 5px
}
.stats {
    background: #050c14;
    color: #fff
}
.stats-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 18px 20px
}
.stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-right: 1px solid rgba(255, 255, 255, .35)
}
.stat:last-child {
    border: 0
}
.stat-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--orange);
    flex-shrink: 0
}
.stat-icon svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}
.stat strong {
    font-size: 27px
}
.stat small {
    font-size: 11px;
    line-height: 1.45;
    margin-left: 5px
}
.sector-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px
}
.sector {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
    transition: .35s;
    text-align: center
}
.sector:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 25px rgba(0, 0, 0, .14)
}
.sector-img {
    height: 180px;
    background-size: cover;
    background-position: center
}
.empresas {
    background-image: url('../img/01_empresas.webp?auto=format&fit=crop&w=700&q=85')
}
.industrias {
    background-image: url('../img/02_industrias.webp?auto=format&fit=crop&w=700&q=85')
}
.instituciones {
    background-image: url('../img/03_instituciones.webp?auto=format&fit=crop&w=700&q=85')
}
.iglesias {
    background-image: url('../img/04_iglesias.webp?auto=format&fit=crop&w=700&q=85')
}
.comercios {
    background-image: url('../img/05_comercios.webp?auto=format&fit=crop&w=700&q=85')
}
.hogares {
    background-image: url('../img/06_hogares.webp?auto=format&fit=crop&w=700&q=85')
}
.sector h3 {
    font-size: 13px;
    text-transform: uppercase;
    padding: 12px
}
.extra-services {
    background: #f8f9fb
}
.extra-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}
.extra-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--orange);
    transition: .35s
}
.extra-card:hover {
    transform: translateY(-7px)
}
.extra-card>b {
    color: var(--orange);
    font-size: 12px;
    letter-spacing: 1px
}
.extra-card h3 {
    margin: 10px 0;
    font-size: 17px
}
.extra-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #555
}
.special-services {
    width: 100%;
    padding: 55px 5%;
    background: #f7f8fa
}
.special-services .section-title {
    text-align: center;
    margin-bottom: 35px
}
.special-services .section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #07152d;
    margin: 0
}
.special-services .section-title h2 span {
    color: #ff5a00
}
.special-services .section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #ff5a00;
    margin: 12px auto 0
}
.special-services-grid {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}
.special-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border-top: 4px solid #ff5a00;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    min-width: 0
}
.special-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15)
}
.special-service-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
}
.special-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease
}
.special-service-card:hover .special-service-image img {
    transform: scale(1.08)
}
.special-service-content {
    padding: 22px 25px 25px
}
.service-tag {
    display: inline-block;
    font-size: 15px;
    font-weight: 800;
    color: #ff5a00;
    margin-bottom: 10px
}
.special-service-content h3 {
    font-size: 21px;
    line-height: 1.25;
    color: #07152d;
    margin: 0 0 12px;
    font-weight: 800
}
.special-service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #667085;
    margin: 0
}


/* =========================================
   STREAMING RADIO - INICIO
   ========================================= */

.inicio-stream-radio {
    background: #07111e;
    padding: 70px 30px;
}

.inicio-stream-radio-content {
    max-width: 1050px;
    margin: auto;
    text-align: center;
}

.inicio-stream-radio-content > span {
    display: block;
    margin-bottom: 12px;

    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.inicio-stream-radio-content h2 {
    margin: 0 0 18px;

    color: #fff;
    font-size: 60px;
    line-height: 1.15;
}

.inicio-stream-radio-content h2 strong {
    color: var(--orange);
    font-weight: 800;
}

.inicio-stream-radio-content p {
    max-width: 700px;
    margin: 0 auto 28px;

    color: #c7cdd5;
    font-size: 20px;
    line-height: 1.7;
}

.inicio-stream-radio-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 23px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 6px;

    color: #fff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;

    transition: .3s ease;
}

.inicio-stream-radio-content a b {
    color: var(--orange);
    font-size: 22px;
    line-height: 10px;
}

.inicio-stream-radio-content a:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.inicio-stream-radio-content a:hover b {
    color: #fff;
}



.back-top {
    position: fixed;
    right: 25px;
    bottom: 100px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #555;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
    z-index: 900
}
.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s ease, transform .7s ease
}
.reveal.visible {
    opacity: 1;
    transform: none
}
.about-section {
    width: 100%;
    padding: 75px 5%;
    background: #fff;
    overflow: hidden
}
.about-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 65px;
    align-items: center
}
.about-content {
    position: relative
}
.about-tag {
    display: inline-block;
    color: #ff5a00;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px
}
.about-content h2 {
    margin: 0 0 22px;
    color: #07152d;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800
}
.about-content h2 span {
    color: #ff5a00
}
.about-content p {
    margin: 0 0 17px;
    color: #667085;
    font-size: 16px;
    line-height: 1.7
}
.about-content .about-intro {
    color: #263b5c;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500
}
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
    margin-top: 28px
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px
}
.feature-icon {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ff5a00;
    color: #fff;
    font-size: 14px;
    font-weight: 800
}
.about-feature strong {
    display: block;
    color: #07152d;
    font-size: 15px;
    margin-bottom: 3px
}
.about-feature small {
    display: block;
    color: #7a8799;
    font-size: 13px;
    line-height: 1.4
}
.about-visual {
    position: relative
}
.about-image {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 18px;
    overflow: hidden;
    background: #07152d;
    display: block;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14)
}
.about-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #ff5a00;
    z-index: 3
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease
}
.about-image:hover img {
    transform: scale(1.06)
}
.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(3, 13, 29, 0.85), rgba(3, 13, 29, 0.05) 65%);
    z-index: 1
}
.about-image-overlay {
    position: absolute;
    left: 30px;
    bottom: 28px;
    z-index: 2;
    color: #fff
}
.about-logo-circle {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #07152d;
    border: 2px solid #ff5a00;
    color: #ff5a00;
    font-size: 20px;
    margin-bottom: 12px
}
.about-image-overlay strong {
    display: block;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: 1px
}
.about-image-overlay span {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 15px
}
.about-content,
.about-visual {
    opacity: 0;
    transform: translateY(35px);
    animation: aboutReveal 0.9s ease forwards
}
.about-visual {
    animation-delay: 0.15s
}
@keyframes aboutReveal {
    from {
        opacity: 0;
        transform: translateY(35px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}





/****************  AQUI  COMIENZA LOS LINK  ****************************/


/* ==========================================
   SERVISTREAM TECHNOLOGY
   ========================================== */

.technology-page {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}


/* ==========================================
   BANNER
   ========================================== */

.technology-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.technology-banner img {
    width: 100%;
    height: auto;
    display: block;
    
}


/* ==========================================
   CABECERA
   ========================================== */

.technology-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 30px 55px;
    text-align: center;
}

.technology-label {
    display: block;
    color: #ff5a00;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.technology-header h1 {
    margin: 0;
    color: #071a3d;
    font-size: clamp(50px, 6vw, 86px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -3px;
}

.technology-line {
    width: 85px;
    height: 5px;
    background: #ff5a00;
    margin: 25px auto 22px;
    border-radius: 10px;
}

.technology-header p {
    max-width: 780px;
    margin: 0 auto;
    color: #667085;
    font-size: 21px;
    line-height: 1.6;
}


/* ==========================================
   GRID DE SERVICIOS
   ========================================== */

.technology-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 70px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}


/* ==========================================
   TARJETAS
   ========================================== */

.technology-card {
    position: relative;

    min-height: 290px;

    background: #ffffff;

    border: 1px solid #e8ebf0;
    border-radius: 18px;

    padding: 42px 45px;

    display: flex;
    align-items: flex-start;
    gap: 30px;

    box-shadow: 0 12px 35px rgba(7, 26, 61, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* EFECTO AL PASAR EL MOUSE */

.technology-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(7, 26, 61, 0.12);
}


/* ==========================================
   ICONOS
   ========================================== */

.technology-icon {
    flex-shrink: 0;

    width: 105px;
    height: 105px;

    border-radius: 50%;

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

    font-size: 43px;

    color: #ffffff;
}

.technology-orange .technology-icon {
    background: #ff5a00;
}

.technology-blue .technology-icon {
    background: #1473ea;
}

.technology-green .technology-icon {
    background: #159b62;
}

.technology-purple .technology-icon {
    background: #5b19d8;
}


/* ==========================================
   CONTENIDO
   ========================================== */

.technology-card-content {
    flex: 1;
}

.technology-card h2 {
    margin: 4px 0 14px;

    color: #071a3d;

    font-size: 31px;
    line-height: 1.1;

    font-weight: 850;

    letter-spacing: -0.7px;
}


/* ==========================================
   LINEA DE COLOR
   ========================================== */

.card-line {
    width: 70px;
    height: 5px;

    border-radius: 10px;

    margin-bottom: 18px;
}

.technology-orange .card-line {
    background: #ff5a00;
}

.technology-blue .card-line {
    background: #1473ea;
}

.technology-green .card-line {
    background: #159b62;
}

.technology-purple .card-line {
    background: #5b19d8;
}


/* ==========================================
   DESCRIPCIÓN
   ========================================== */

.technology-card p {
    margin: 0;

    color: #667085;

    font-size: 18px;
    line-height: 1.65;
}


/* ==========================================
   CIERRE
   ========================================== */

.technology-closing {
    text-align: center;

    max-width: 1000px;

    margin: 10px auto 0;

    padding: 55px 30px 80px;

    position: relative;
}

.closing-line {
    width: 110px;
    height: 2px;

    background: #d8dce3;

    margin: 0 auto 25px;
}

.technology-closing h2 {
    margin: 0;

    color: #071a3d;

    font-size: 36px;
    font-weight: 850;
}

.technology-closing h2 span {
    color: #ff5a00;
}

.technology-closing p {
    margin: 14px 0 0;

    color: #7a8497;

    font-size: 18px;
}





/* =========================================================
   SERVISTREAM SECURITY
   ========================================================= */

.security-page {
    width: 100%;
    background: #ffffff;
    color: #071b41;
}


/* =========================================================
   BANNER
   ========================================================= */

.security-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.security-banner img {
    width: 100%;
    height: auto;
    display: block;
    
}


/* =========================================================
   HEADER
   ========================================================= */

.security-header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 25px 45px;
    text-align: center;
}

.security-overline {
    display: block;
    margin-bottom: 8px;

    font-size: 18px;
    font-weight: 800;
    letter-spacing: 4px;

    color: #ff5a00;
}

.security-header h1 {
    margin: 0;

    font-size: clamp(52px, 7vw, 86px);
    line-height: 1;

    font-weight: 900;
    letter-spacing: -2px;

    color: #071b41;
}

.security-line {
    width: 95px;
    height: 5px;

    margin: 28px auto 25px;

    border-radius: 10px;
    background: #ff5a00;
}

.security-header p {
    max-width: 850px;
    margin: 0 auto;

    font-size: 20px;
    line-height: 1.6;

    color: #71809b;
}


/* =========================================================
   SERVICIOS
   ========================================================= */

.security-services {
    max-width: 1200px;
    margin: 0 auto;

    padding: 20px 25px 70px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}


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

.security-card {
    min-height: 280px;

    padding: 45px;

    display: flex;
    align-items: flex-start;
    gap: 35px;

    background: #ffffff;

    border: 1px solid #e5e9f0;
    border-radius: 22px;

    box-shadow: 0 12px 35px rgba(7, 27, 65, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(7, 27, 65, 0.12);
}


/* =========================================================
   ICONOS
   ========================================================= */

.security-icon {
    width: 125px;
    height: 125px;

    min-width: 125px;

    display: grid;
    place-items: center;

    border-radius: 50%;
}

.security-icon svg {
    width: 58px;
    height: 58px;

    fill: none;

    stroke: #ffffff;
    stroke-width: 3;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* COLORES */

.security-orange {
    background: #ff5a00;
}

.security-blue {
    background: #2477e8;
}

.security-green {
    background: #159c68;
}

.security-purple {
    background: #5821d6;
}


/* =========================================================
   CONTENIDO CARD
   ========================================================= */

.security-card-content {
    flex: 1;
    padding-top: 5px;
}

.security-card h2 {
    margin: 0;

    font-size: 30px;
    line-height: 1.15;

    font-weight: 800;

    color: #071b41;
}

.security-card-line {
    width: 85px;
    height: 5px;

    margin: 18px 0 20px;

    border-radius: 10px;

    background: #ff5a00;
}

.security-card:nth-child(2) .security-card-line {
    background: #2477e8;
}

.security-card:nth-child(3) .security-card-line {
    background: #159c68;
}

.security-card:nth-child(4) .security-card-line {
    background: #5821d6;
}

.security-card p {
    margin: 0;

    font-size: 18px;
    line-height: 1.65;

    color: #71809b;
}


/* =========================================================
   CIERRE
   ========================================================= */

.security-closing {
    max-width: 900px;

    margin: 0 auto;

    padding: 10px 25px 80px;

    text-align: center;
}

.security-closing h3 {
    margin: 0 0 15px;

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

    color: #071b41;
}

.security-closing p {
    margin: 0;

    font-size: 18px;
    line-height: 1.6;

    color: #71809b;
}





/* =========================================================
   SERVISTREAM SMART
   ========================================================= */

.smart-page {
    width: 100%;
    background: #ffffff;
    color: #071b41;
}


/* =========================================================
   BANNER
   ========================================================= */

.smart-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.smart-banner img {
    width: 100%;
    height: auto;
    display: block;
    
}


/* =========================================================
   HEADER
   ========================================================= */

.smart-header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 25px 45px;
    text-align: center;
}

.smart-overline {
    display: block;
    margin-bottom: 8px;

    font-size: 18px;
    font-weight: 800;
    letter-spacing: 4px;

    color: #ff5a00;
}

.smart-header h1 {
    margin: 0;

    font-size: clamp(52px, 7vw, 86px);
    line-height: 1;

    font-weight: 900;
    letter-spacing: -2px;

    color: #071b41;
}

.smart-line {
    width: 95px;
    height: 5px;

    margin: 28px auto 25px;

    border-radius: 10px;
    background: #ff5a00;
}

.smart-header p {
    max-width: 850px;
    margin: 0 auto;

    font-size: 20px;
    line-height: 1.6;

    color: #71809b;
}


/* =========================================================
   SERVICIOS
   ========================================================= */

.smart-services {
    max-width: 1200px;
    margin: 0 auto;

    padding: 20px 25px 70px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}


/* =========================================================
   CARDS
   ========================================================= */

.smart-card {
    min-height: 280px;

    padding: 45px;

    display: flex;
    align-items: flex-start;
    gap: 35px;

    background: #ffffff;

    border: 1px solid #e5e9f0;
    border-radius: 22px;

    box-shadow: 0 12px 35px rgba(7, 27, 65, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.smart-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(7, 27, 65, 0.12);
}


/* =========================================================
   ICONOS
   ========================================================= */

.smart-icon {
    width: 125px;
    height: 125px;

    min-width: 125px;

    display: grid;
    place-items: center;

    border-radius: 50%;
}

.smart-icon svg {
    width: 58px;
    height: 58px;

    fill: none;

    stroke: #ffffff;
    stroke-width: 3;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* COLORES */

.smart-orange {
    background: #ff5a00;
}

.smart-blue {
    background: #2477e8;
}

.smart-green {
    background: #159c68;
}

.smart-purple {
    background: #5821d6;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.smart-card-content {
    flex: 1;
    padding-top: 5px;
}

.smart-card h2 {
    margin: 0;

    font-size: 30px;
    line-height: 1.15;

    font-weight: 800;

    color: #071b41;
}

.smart-card-line {
    width: 85px;
    height: 5px;

    margin: 18px 0 20px;

    border-radius: 10px;

    background: #ff5a00;
}

.smart-card:nth-child(2) .smart-card-line {
    background: #2477e8;
}

.smart-card:nth-child(3) .smart-card-line {
    background: #159c68;
}

.smart-card:nth-child(4) .smart-card-line {
    background: #5821d6;
}

.smart-card p {
    margin: 0;

    font-size: 18px;
    line-height: 1.65;

    color: #71809b;
}


/* =========================================================
   CIERRE
   ========================================================= */

.smart-closing {
    max-width: 900px;

    margin: 0 auto;

    padding: 10px 25px 80px;

    text-align: center;
}

.smart-closing h3 {
    margin: 0 0 15px;

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

    color: #071b41;
}

.smart-closing h3 span {
    color: #ff5a00;
}

.smart-closing p {
    margin: 0;

    font-size: 18px;
    line-height: 1.6;

    color: #71809b;
}





/* =========================================================
   SERVISTREAM AUDIO & VIDEO
   ========================================================= */

.av-page {
    width: 100%;
    background: #ffffff;
    color: #071b41;
}


/* =========================================================
   BANNER
   ========================================================= */

.av-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.av-banner img {
    width: 100%;
    height: auto;
    display: block;
    
}


/* =========================================================
   HEADER
   ========================================================= */

.av-header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 25px 45px;
    text-align: center;
}

.av-overline {
    display: block;
    margin-bottom: 8px;

    font-size: 18px;
    font-weight: 800;
    letter-spacing: 4px;

    color: #ff5a00;
}

.av-header h1 {
    margin: 0;

    font-size: clamp(48px, 6.5vw, 82px);
    line-height: 1;

    font-weight: 900;
    letter-spacing: -2px;

    color: #071b41;
}

.av-line {
    width: 95px;
    height: 5px;

    margin: 28px auto 25px;

    border-radius: 10px;

    background: #ff5a00;
}

.av-header p {
    max-width: 850px;
    margin: 0 auto;

    font-size: 20px;
    line-height: 1.6;

    color: #71809b;
}


/* =========================================================
   SERVICIOS
   ========================================================= */

.av-services {
    max-width: 1200px;
    margin: 0 auto;

    padding: 20px 25px 70px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}


/* =========================================================
   CARDS
   ========================================================= */

.av-card {
    min-height: 280px;

    padding: 45px;

    display: flex;
    align-items: flex-start;
    gap: 35px;

    background: #ffffff;

    border: 1px solid #e5e9f0;
    border-radius: 22px;

    box-shadow: 0 12px 35px rgba(7, 27, 65, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.av-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(7, 27, 65, 0.12);
}


/* =========================================================
   ICONOS
   ========================================================= */

.av-icon {
    width: 125px;
    height: 125px;

    min-width: 125px;

    display: grid;
    place-items: center;

    border-radius: 50%;
}

.av-icon svg {
    width: 58px;
    height: 58px;

    fill: none;

    stroke: #ffffff;
    stroke-width: 3;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* COLORES */

.av-orange {
    background: #ff5a00;
}

.av-blue {
    background: #2477e8;
}

.av-green {
    background: #159c68;
}

.av-purple {
    background: #5821d6;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.av-card-content {
    flex: 1;
    padding-top: 5px;
}

.av-card h2 {
    margin: 0;

    font-size: 30px;
    line-height: 1.15;

    font-weight: 800;

    color: #071b41;
}

.av-card-line {
    width: 85px;
    height: 5px;

    margin: 18px 0 20px;

    border-radius: 10px;

    background: #ff5a00;
}

.av-card:nth-child(2) .av-card-line {
    background: #2477e8;
}

.av-card:nth-child(3) .av-card-line {
    background: #159c68;
}

.av-card:nth-child(4) .av-card-line {
    background: #5821d6;
}

.av-card p {
    margin: 0;

    font-size: 18px;
    line-height: 1.65;

    color: #71809b;
}


/* =========================================================
   CIERRE
   ========================================================= */

.av-closing {
    max-width: 900px;

    margin: 0 auto;

    padding: 10px 25px 80px;

    text-align: center;
}

.av-closing h3 {
    margin: 0 0 15px;

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

    color: #071b41;
}

.av-closing p {
    margin: 0;

    font-size: 18px;
    line-height: 1.6;

    color: #71809b;
}




/* =========================================
   STREAMING RADIO
   ========================================= */

.streaming-radio-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.streaming-radio-banner img {
    width: 100%;
    height: auto;
   
    display: block;
}


/* =========================================
   INTRO
   ========================================= */

.streaming-radio-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 30px;

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

.streaming-radio-intro-content {
    max-width: 650px;
}

.streaming-radio-label {
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.streaming-radio-intro h1 {
    margin: 0 0 25px;
    color: #14233c;
    font-size: 46px;
    line-height: 1.12;
    font-weight: 800;
}

.streaming-radio-intro h1 span {
    color: var(--orange);
}

.streaming-radio-destacado {
    color: #14233c;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 20px;
}

.streaming-radio-intro p {
    color: #626a75;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.streaming-radio-intro-image {
    width: 100%;
    height: auto;
}

.streaming-radio-intro-image img {
    width: 100%;
    height: auto;
    
    display: block;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}


/* =========================================
   SERVICIO
   ========================================= */

.streaming-radio-servicio {
    background: #f7f8fa;
    padding: 100px 30px;
}

.streaming-radio-section-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.streaming-radio-section-header span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.streaming-radio-section-header h2 {
    margin: 12px 0 15px;
    color: #14233c;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.streaming-radio-section-header p {
    margin: 0 auto;
    color: #626a75;
    font-size: 16px;
    line-height: 1.7;
}

.streaming-radio-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.streaming-radio-card {
    background: #fff;
    padding: 38px;
    border-radius: 14px;
    border: 1px solid #e9ebee;
    transition: .3s ease;
}

.streaming-radio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.streaming-radio-card-number {
    color: var(--orange);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.streaming-radio-card h3 {
    margin: 0 0 12px;
    color: #14233c;
    font-size: 22px;
    font-weight: 800;
}

.streaming-radio-card p {
    margin: 0;
    color: #626a75;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   PROCESO
   ========================================= */

.streaming-radio-proceso {
    padding: 100px 30px;
    background: #fff;
}

.streaming-radio-steps {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.streaming-radio-step {
    padding: 10px 10px 10px 0;
}

.streaming-radio-step strong {
    display: block;
    color: var(--orange);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
}

.streaming-radio-step h3 {
    margin: 0 0 10px;
    color: #14233c;
    font-size: 20px;
    font-weight: 800;
}

.streaming-radio-step p {
    margin: 0;
    color: #626a75;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   DISPOSITIVOS
   ========================================= */

.streaming-radio-dispositivos {
    background: #f7f8fa;
    padding: 100px 30px;
}

.streaming-radio-devices {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.streaming-radio-device {
    background: #fff;
    padding: 32px 25px;
    border-radius: 12px;
    border: 1px solid #e9ebee;
}

.streaming-radio-device h3 {
    margin: 0 0 10px;
    color: #14233c;
    font-size: 19px;
    font-weight: 800;
}

.streaming-radio-device p {
    margin: 0;
    color: #626a75;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   CIERRE
   ========================================= */

.streaming-radio-cierre {
    padding: 100px 30px;
    
    text-align: center;
}

.streaming-radio-cierre span {
    display: block;
    margin-bottom: 12px;

    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.streaming-radio-cierre h2 {
    margin: 0 0 15px;

    color: #14233c;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}

.streaming-radio-cierre p {
    max-width: 650px;
    margin: 0 auto 30px;

    color: #626a75;
    font-size: 16px;
    line-height: 1.7;
}

.btn-streaming-radio {
    display: inline-block;

    padding: 15px 28px;

    background: var(--orange);
    color: #fff;

    border-radius: 7px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;

    transition: .3s ease;
}

.btn-streaming-radio:hover {
    background: #fff;
    color: #14233c;
    transform: translateY(-3px);
}










/* =========================================================
   SERVISTREAM TELECOM
   ========================================================= */

.telecom-page {
    width: 100%;
    background: #ffffff;
    color: #071b41;
}


/* =========================================================
   BANNER
   ========================================================= */

.telecom-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.telecom-banner img {
    width: 100%;
    height: auto;
    display: block;
    
}


/* =========================================================
   HEADER
   ========================================================= */

.telecom-header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 25px 45px;
    text-align: center;
}

.telecom-overline {
    display: block;
    margin-bottom: 8px;

    font-size: 18px;
    font-weight: 800;
    letter-spacing: 4px;

    color: #ff5a00;
}

.telecom-header h1 {
    margin: 0;

    font-size: clamp(52px, 7vw, 86px);
    line-height: 1;

    font-weight: 900;
    letter-spacing: -2px;

    color: #071b41;
}

.telecom-line {
    width: 95px;
    height: 5px;

    margin: 28px auto 25px;

    border-radius: 10px;

    background: #ff5a00;
}

.telecom-header p {
    max-width: 850px;
    margin: 0 auto;

    font-size: 20px;
    line-height: 1.6;

    color: #71809b;
}


/* =========================================================
   SERVICIOS
   ========================================================= */

.telecom-services {
    max-width: 1200px;
    margin: 0 auto;

    padding: 20px 25px 70px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}


/* =========================================================
   CARDS
   ========================================================= */

.telecom-card {
    min-height: 280px;

    padding: 45px;

    display: flex;
    align-items: flex-start;
    gap: 35px;

    background: #ffffff;

    border: 1px solid #e5e9f0;
    border-radius: 22px;

    box-shadow: 0 12px 35px rgba(7, 27, 65, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.telecom-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(7, 27, 65, 0.12);
}


/* =========================================================
   ICONOS
   ========================================================= */

.telecom-icon {
    width: 125px;
    height: 125px;

    min-width: 125px;

    display: grid;
    place-items: center;

    border-radius: 50%;
}

.telecom-icon svg {
    width: 58px;
    height: 58px;

    fill: none;

    stroke: #ffffff;
    stroke-width: 3;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* COLORES */

.telecom-orange {
    background: #ff5a00;
}

.telecom-blue {
    background: #2477e8;
}

.telecom-green {
    background: #159c68;
}

.telecom-purple {
    background: #5821d6;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.telecom-card-content {
    flex: 1;
    padding-top: 5px;
}

.telecom-card h2 {
    margin: 0;

    font-size: 30px;
    line-height: 1.15;

    font-weight: 800;

    color: #071b41;
}

.telecom-card-line {
    width: 85px;
    height: 5px;

    margin: 18px 0 20px;

    border-radius: 10px;

    background: #ff5a00;
}

.telecom-card:nth-child(2) .telecom-card-line {
    background: #2477e8;
}

.telecom-card:nth-child(3) .telecom-card-line {
    background: #159c68;
}

.telecom-card:nth-child(4) .telecom-card-line {
    background: #5821d6;
}

.telecom-card p {
    margin: 0;

    font-size: 18px;
    line-height: 1.65;

    color: #71809b;
}


/* =========================================================
   CIERRE
   ========================================================= */

.telecom-closing {
    max-width: 900px;

    margin: 0 auto;

    padding: 10px 25px 80px;

    text-align: center;
}

.telecom-closing h3 {
    margin: 0 0 15px;

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

    color: #071b41;
}

.telecom-closing p {
    margin: 0;

    font-size: 18px;
    line-height: 1.6;

    color: #71809b;
}



/* =========================================================
   SERVISTREAM PRO
   ========================================================= */

.pro-page {
    width: 100%;
    background: #ffffff;
    color: #071b41;
}


/* =========================================================
   BANNER
   ========================================================= */

.pro-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.pro-banner img {
    width: 100%;
    height: auto;
    display: block;
    
}


/* =========================================================
   HEADER
   ========================================================= */

.pro-header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 25px 45px;
    text-align: center;
}

.pro-overline {
    display: block;
    margin-bottom: 8px;

    font-size: 18px;
    font-weight: 800;
    letter-spacing: 4px;

    color: #ff5a00;
}

.pro-header h1 {
    margin: 0;

    font-size: clamp(52px, 7vw, 86px);
    line-height: 1;

    font-weight: 900;
    letter-spacing: -2px;

    color: #071b41;
}

.pro-line {
    width: 95px;
    height: 5px;

    margin: 28px auto 25px;

    border-radius: 10px;

    background: #ff5a00;
}

.pro-header p {
    max-width: 850px;
    margin: 0 auto;

    font-size: 20px;
    line-height: 1.6;

    color: #71809b;
}


/* =========================================================
   SERVICIOS
   ========================================================= */

.pro-services {
    max-width: 1200px;
    margin: 0 auto;

    padding: 20px 25px 70px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}


/* =========================================================
   CARDS
   ========================================================= */

.pro-card {
    min-height: 280px;

    padding: 45px;

    display: flex;
    align-items: flex-start;
    gap: 35px;

    background: #ffffff;

    border: 1px solid #e5e9f0;
    border-radius: 22px;

    box-shadow: 0 12px 35px rgba(7, 27, 65, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.pro-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(7, 27, 65, 0.12);
}


/* =========================================================
   ICONOS
   ========================================================= */

.pro-icon {
    width: 125px;
    height: 125px;

    min-width: 125px;

    display: grid;
    place-items: center;

    border-radius: 50%;
}

.pro-icon svg {
    width: 58px;
    height: 58px;

    fill: none;

    stroke: #ffffff;
    stroke-width: 3;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* COLORES */

.pro-orange {
    background: #ff5a00;
}

.pro-blue {
    background: #2477e8;
}

.pro-green {
    background: #159c68;
}

.pro-purple {
    background: #5821d6;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.pro-card-content {
    flex: 1;
    padding-top: 5px;
}

.pro-card h2 {
    margin: 0;

    font-size: 30px;
    line-height: 1.15;

    font-weight: 800;

    color: #071b41;
}

.pro-card-line {
    width: 85px;
    height: 5px;

    margin: 18px 0 20px;

    border-radius: 10px;

    background: #ff5a00;
}

.pro-card:nth-child(2) .pro-card-line {
    background: #2477e8;
}

.pro-card:nth-child(3) .pro-card-line {
    background: #159c68;
}

.pro-card:nth-child(4) .pro-card-line {
    background: #5821d6;
}

.pro-card p {
    margin: 0;

    font-size: 18px;
    line-height: 1.65;

    color: #71809b;
}


/* =========================================================
   CIERRE
   ========================================================= */

.pro-closing {
    max-width: 900px;

    margin: 0 auto;

    padding: 10px 25px 80px;

    text-align: center;
}

.pro-closing h3 {
    margin: 0 0 15px;

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

    color: #071b41;
}

.pro-closing p {
    margin: 0;

    font-size: 18px;
    line-height: 1.6;

    color: #71809b;
}





/* =========================================================
   SERVISTREAM LED
   ALQUILER DE PANTALLAS LED
   ========================================================= */

.led-page {
    width: 100%;
    background: #ffffff;
    color: #071b41;
}


/* =========================================================
   BANNER
   ========================================================= */

.led-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.led-banner img {
    width: 100%;
    height: auto;
    display: block;
   
}


/* =========================================================
   PRESENTACIÓN
   ========================================================= */

.led-intro {
    max-width: 1200px;
    margin: 0 auto;

    padding: 80px 30px;

    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 70px;
}

.led-intro-content {
    max-width: 700px;
}

.led-overline {
    display: block;

    margin-bottom: 10px;

    font-size: 18px;
    font-weight: 800;
    letter-spacing: 4px;

    color: #ff5a00;
}

.led-intro h1 {
    margin: 0;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;

    font-weight: 900;
    letter-spacing: -2px;

    color: #071b41;
}

.led-intro h1 span {
    display: block;
    color: #ff5a00;
}

.led-title-line {
    width: 90px;
    height: 5px;

    margin: 25px 0;

    border-radius: 10px;

    background: #ff5a00;
}

.led-intro h2 {
    margin: 0 0 18px;

    font-size: 22px;
    line-height: 1.45;

    font-weight: 600;

    color: #52637e;
}

.led-intro p {
    margin: 0;

    font-size: 18px;
    line-height: 1.75;

    color: #71809b;
}


/* IMAGEN */

.led-intro-image {
    overflow: hidden;

    border-radius: 22px;

    box-shadow: 0 15px 40px rgba(7, 27, 65, .14);
}

.led-intro-image img {
    width: 100%;
    height: auto;

    display: block;

    

    transition: transform .4s ease;
}

.led-intro-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   ENCABEZADOS DE SECCIÓN
   ========================================================= */

.led-section-header {
    text-align: center;

    margin-bottom: 45px;
}

.led-section-header h2 {
    margin: 0;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;

    font-weight: 900;

    color: #071b41;
}

.led-section-header h2 span {
    color: #ff5a00;
}

.led-section-line {
    width: 65px;
    height: 4px;

    margin: 18px auto 0;

    border-radius: 10px;

    background: #ff5a00;
}


/* =========================================================
   NUESTRO SERVICIO
   ========================================================= */

.led-services-section {
    padding: 80px 25px;

    background: #f5f7fa;
}

.led-services-grid {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.led-service-card {
    padding: 35px 28px;

    background: #ffffff;

    border-radius: 18px;

    border: 1px solid #e5e9f0;

    box-shadow: 0 10px 30px rgba(7, 27, 65, .06);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.led-service-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 35px rgba(7, 27, 65, .12);
}


/* ICONOS */

.led-service-icon {
    width: 76px;
    height: 76px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    border-radius: 50%;
}

.led-service-icon svg {
    width: 40px;
    height: 40px;

    fill: none;

    stroke: #ffffff;
    stroke-width: 3;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.led-orange {
    background: #ff5a00;
}

.led-blue {
    background: #2477e8;
}

.led-green {
    background: #159c68;
}

.led-purple {
    background: #5821d6;
}

.led-yellow {
    background: #e5a400;
}

.led-darkblue {
    background: #071b41;
}


/* CONTENIDO */

.led-service-card h3 {
    margin: 0 0 18px;

    font-size: 22px;
    line-height: 1.2;

    font-weight: 800;

    color: #071b41;
}

.led-service-card p {
    margin: 0;

    font-size: 16px;
    line-height: 1.65;

    color: #71809b;
}


/* =========================================================
   APLICACIONES
   ========================================================= */

.led-applications {
    max-width: 1300px;

    margin: 0 auto;

    padding: 90px 25px;
}

.led-application-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 12px;
}

.led-application-card {
    position: relative;

    height: 230px;

    overflow: hidden;

    border-radius: 12px;

    background: #071b41;
}

.led-application-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .4s ease;
}

.led-application-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(3, 12, 30, .9),
            rgba(3, 12, 30, .05)
        );
}

.led-application-card:hover img {
    transform: scale(1.08);
}

.led-application-card span {
    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 18px;

    z-index: 2;

    text-align: center;

    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;

    color: #ffffff;
}


/* =========================================================
   PROCESO
   ========================================================= */

.led-process {
    padding: 85px 25px;

    background: #f5f7fa;
}

.led-process-grid {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 20px;
}

.led-process-item {
    text-align: center;

    position: relative;
}

.led-process-number {
    width: 72px;
    height: 72px;

    margin: 0 auto 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    font-size: 19px;
    font-weight: 900;

    color: #ffffff;
}

.led-process-item h3 {
    margin: 0 0 12px;

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

    color: #071b41;
}

.led-process-item p {
    margin: 0;

    font-size: 14px;
    line-height: 1.55;

    color: #71809b;
}


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

.led-cta {
    position: relative;

    min-height: 390px;

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

    padding: 70px 25px;

    
    
    
}

.led-cta-overlay {
    position: absolute;

    inset: 0;

    
}

.led-cta-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    text-align: center;

    color: #071b41;
}

.led-cta-content h2 {
    margin: 0 0 18px;

    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;

    font-weight: 900;
}

.led-cta-content h2 span {
    color: #ff5a00;
}

.led-cta-content p {
    margin: 0 auto 30px;

    max-width: 700px;

    font-size: 20px;
    line-height: 1.6;

    color: #71809b;
}

.led-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 16px 30px;

    border-radius: 8px;

    background: #ff5a00;

    color: #ffffff;

    text-decoration: none;

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

    transition:
        transform .3s ease,
        background .3s ease;
}

.led-cta-button:hover {
    transform: translateY(-3px);

    background: #e84f00;
}

.led-cta-button span {
    font-size: 28px;
    line-height: 15px;
}







/* =========================================
   SERVISTREAM LINE
========================================= */

:root {
    --line-navy: #071b45;
    --line-orange: #ff5a00;
    --line-blue: #2878e8;
    --line-green: #16a06b;
    --line-purple: #5425d8;
    --line-yellow: #efa900;
    --line-text: #6d7d99;
    --line-light: #f5f7fa;
}


/* =========================================
   BANNER
========================================= */

.line-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.line-banner img {
    width: 100%;
    height: auto;
    display: block;
    
}


/* =========================================
   PRESENTACIÓN
========================================= */

.line-intro {
    background: #ffffff;
    padding: 70px 8%;
}

.line-intro-content {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
}

.line-label {
    display: block;

    color: var(--line-orange);

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 3px;

    margin-bottom: 12px;
}

.line-intro-text h1 {
    color: var(--line-navy);

    font-size: clamp(42px, 4vw, 62px);
    line-height: 1.02;

    font-weight: 900;

    margin: 0;
}

.line-intro-text h1 span {
    display: block;
    color: var(--line-orange);
}

.line-divider {
    width: 75px;
    height: 4px;

    background: var(--line-orange);

    margin: 28px 0;
}

.line-intro-text h2 {
    color: var(--line-navy);

    font-size: 20px;
    line-height: 1.45;

    font-weight: 700;

    max-width: 620px;

    margin-bottom: 18px;
}

.line-intro-text p {
    color: var(--line-text);

    font-size: 17px;
    line-height: 1.75;

    max-width: 650px;
}

.line-intro-image {
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 18px 45px rgba(7, 27, 69, .14);
}

.line-intro-image img {
    width: 100%;
    height: 350px;

    display: block;

    object-fit: cover;
}


/* =========================================
   TÍTULOS
========================================= */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--line-navy);

    font-size: clamp(32px, 3vw, 44px);

    font-weight: 900;

    margin: 0;
}

.section-title h2 span {
    color: var(--line-orange);
}

.title-line {
    width: 55px;
    height: 4px;

    background: var(--line-orange);

    margin: 18px auto 0;
}


/* =========================================
   NUESTRO SERVICIO
========================================= */

.line-service {
    background: var(--line-light);
    padding: 70px 7%;
}

.line-service-grid {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.line-service-card {
    background: #ffffff;

    border: 1px solid #e1e6ee;

    border-radius: 14px;

    padding: 30px 24px;

    min-height: 250px;

    box-shadow: 0 12px 30px rgba(7, 27, 69, .06);

    transition: .3s ease;
}

.line-service-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 35px rgba(7, 27, 69, .12);
}

.line-service-icon {
    width: 62px;
    height: 62px;

    border-radius: 50%;

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

    color: #ffffff;

    font-size: 25px;

    margin-bottom: 22px;
}

.line-service-icon.orange {
    background: var(--line-orange);
}

.line-service-icon.blue {
    background: var(--line-blue);
}

.line-service-icon.green {
    background: var(--line-green);
}

.line-service-icon.purple {
    background: var(--line-purple);
}

.line-service-card h3 {
    color: var(--line-navy);

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

    margin-bottom: 14px;
}

.line-service-card p {
    color: var(--line-text);

    font-size: 15px;
    line-height: 1.6;

    margin: 0;
}


/* =========================================
   APLICACIONES
========================================= */

.line-applications {
    background: #ffffff;
    padding: 75px 7%;
}

.line-application-grid {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(6, 1fr);

    gap: 10px;
}

.line-application-card {
    position: relative;

    height: 190px;

    border-radius: 11px;

    overflow: hidden;

    background: var(--line-navy);
}

.line-application-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: .4s ease;
}

.line-application-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(2, 12, 35, .85),
        rgba(2, 12, 35, .05)
    );
}

.line-application-card:hover img {
    transform: scale(1.06);
}

.line-application-card span {
    position: absolute;

    z-index: 2;

    left: 10px;
    right: 10px;
    bottom: 18px;

    text-align: center;

    color: #ffffff;

    font-size: 14px;
    font-weight: 900;

    line-height: 1.15;
}


/* =========================================
   PROCESO
========================================= */

.line-process {
    background: var(--line-light);

    padding: 70px 7%;
}

.line-process-grid {
    max-width: 1150px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(6, 1fr);

    gap: 20px;
}

.line-process-item {
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;

    border-radius: 50%;

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

    color: #ffffff;

    font-size: 16px;
    font-weight: 900;

    margin: 0 auto 18px;
}

.orange-bg {
    background: var(--line-orange);
}

.blue-bg {
    background: var(--line-blue);
}

.green-bg {
    background: var(--line-green);
}

.purple-bg {
    background: var(--line-purple);
}

.yellow-bg {
    background: var(--line-yellow);
}

.navy-bg {
    background: var(--line-navy);
}

.line-process-item h3 {
    color: var(--line-navy);

    font-size: 16px;

    margin-bottom: 10px;
}

.line-process-item p {
    color: var(--line-text);

    font-size: 14px;

    line-height: 1.5;

    margin: 0;
}


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

.line-cta {
    position: relative;

    min-height: 310px;

    display: flex;
    align-items: center;

    padding: 60px 8%;

    background-image: url("../img/line-cta.jpg");

    background-size: cover;
    background-position: center;
}

.line-cta-overlay {
    position: absolute;

    inset: 0;

    
}

.line-cta-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    margin: auto;

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

    gap: 40px;
}

.line-cta-content h2 {
    color: #071b45;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.05;

    font-weight: 900;

    margin: 0;
}

.line-cta-content h2 span {
    color: var(--line-orange);
    display: block;
}

.line-cta-content p {
    color: #6d7d99;

    font-size: 17px;

    line-height: 1.5;

    max-width: 550px;

    margin-top: 18px;
}

.line-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 17px 28px;

    border-radius: 40px;

    background: var(--line-orange);

    color: #ffffff;

    text-decoration: none;

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

    white-space: nowrap;

    transition: .3s ease;
}

.line-cta-button:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(255, 90, 0, .3);
}






/* =========================================
   SERVISTREAM LIGHT
========================================= */

.light-page {
    width: 100%;
    background: #fff;
}


/* =========================================
   BANNER
========================================= */

.light-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.light-banner img {
    width: 100%;
    height: auto;
    display: block;
    
}


/* =========================================
   PRESENTACIÓN
========================================= */

.light-intro {
    background: #fff;
    padding: 70px 8%;
}

.light-intro-content {
    max-width: 1200px;
    margin: 0 auto;

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

    align-items: center;

    gap: 80px;
}

.light-label {
    display: block;

    color: #ff5a00;

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

    letter-spacing: 3px;

    margin-bottom: 12px;
}

.light-intro h1 {
    margin: 0;

    color: #08224f;

    font-size: 52px;
    line-height: 1.08;

    font-weight: 900;
}

.light-intro h1 strong {
    color: #ff5a00;
}

.light-line {
    width: 62px;
    height: 4px;

    background: #ff5a00;

    margin: 28px 0;
}

.light-intro h2 {
    color: #08224f;

    font-size: 18px;
    line-height: 1.55;

    max-width: 580px;

    margin-bottom: 20px;
}

.light-intro p {
    color: #71809b;

    font-size: 16px;
    line-height: 1.8;

    max-width: 580px;

    margin: 0;
}

.light-intro-image img {
    width: 100%;
    max-width: 700px;

    display: block;

    margin: 0 auto;

    border-radius: 16px;

    box-shadow: 0 18px 40px rgba(8, 34, 79, 0.15);
}


/* =========================================
   TÍTULOS
========================================= */

.light-section-title {
    text-align: center;

    margin-bottom: 55px;
}

.light-section-title h2 {
    margin: 0;

    color: #08224f;

    font-size: 38px;

    font-weight: 900;
}

.light-section-title h2 span {
    color: #ff5a00;
}

.light-section-line {
    width: 55px;
    height: 3px;

    background: #ff5a00;

    margin: 18px auto 0;
}


/* =========================================
   NUESTRO SERVICIO
========================================= */

.light-features {
    background: #f5f7fa;

    padding: 75px 8%;
}

.light-features-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.light-feature-card {
    background: #fff;

    padding: 28px 24px;

    border: 1px solid #e2e7ef;

    border-radius: 14px;

    min-height: 245px;

    box-shadow: 0 12px 30px rgba(8, 34, 79, 0.08);
}

.light-feature-icon {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    display: flex;

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

    color: #fff;

    font-size: 20px;

    margin-bottom: 20px;
}

.light-feature-icon.orange {
    background: #ff5a00;
}

.light-feature-icon.blue {
    background: #2878e8;
}

.light-feature-icon.green {
    background: #12a36d;
}

.light-feature-icon.purple {
    background: #5725d8;
}

.light-feature-card h3 {
    color: #08224f;

    font-size: 18px;

    line-height: 1.25;

    margin: 0 0 12px;

    font-weight: 800;
}

.light-feature-card p {
    color: #71809b;

    font-size: 14px;

    line-height: 1.65;

    margin: 0;
}


/* =========================================
   DÓNDE PUEDES UTILIZARLO
========================================= */

.light-uses {
    background: #fff;

    padding: 75px 8%;
}

.light-uses-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 8px;
}

.light-use-card {
    height: 158px;

    position: relative;

    overflow: hidden;

    border-radius: 10px;

    background: #061738;
}

.light-use-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.light-use-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(2, 15, 40, 0.9),
        rgba(2, 15, 40, 0.05)
    );
}

.light-use-card:hover img {
    transform: scale(1.06);
}

.light-use-card span {
    position: absolute;

    left: 8px;
    right: 8px;
    bottom: 12px;

    z-index: 2;

    text-align: center;

    color: #fff;

    font-size: 12px;

    font-weight: 900;

    line-height: 1.15;
}


/* =========================================
   QUÉ INCLUYE
========================================= */

.light-process {
    background: #f5f7fa;

    padding: 70px 8%;
}

.light-process-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 15px;
}

.light-process-item {
    text-align: center;
}

.light-process-number {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    margin: 0 auto 15px;

    display: flex;

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

    color: #fff;

    font-size: 14px;

    font-weight: 900;
}

.light-process-number.orange {
    background: #ff5a00;
}

.light-process-number.blue {
    background: #2878e8;
}

.light-process-number.green {
    background: #12a36d;
}

.light-process-number.purple {
    background: #5725d8;
}

.light-process-number.yellow {
    background: #f2aa00;
}

.light-process-number.navy {
    background: #08224f;
}

.light-process-item h3 {
    color: #08224f;

    font-size: 14px;

    margin: 0 0 8px;

    font-weight: 800;
}

.light-process-item p {
    color: #71809b;

    font-size: 13px;

    line-height: 1.5;

    margin: 0;
}


/* =========================================
   CIERRE
========================================= */

.light-closing {
    background: #fff;

    text-align: center;

    padding: 70px 20px 85px;
}

.light-closing h2 {
    color: #08224f;

    font-size: 46px;

    line-height: 1.05;

    font-weight: 900;

    margin: 0 0 22px;
}

.light-closing h2 span {
    color: #ff5a00;
}

.light-closing p {
    color: #71809b;

    font-size: 17px;

    line-height: 1.6;

    max-width: 650px;

    margin: 0 auto;
}







/* =========================================
   ASESORÍA RADIAL
   ========================================= */

.asesoria-radial-banner {
    width: 100%;
    overflow: hidden;
}

.asesoria-radial-banner img {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================================
   INTRO
   ========================================= */

.asesoria-radial-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 30px;

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

.asesoria-radial-intro-content {
    max-width: 650px;
}

.asesoria-radial-label {
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.asesoria-radial-intro h1 {
    margin: 0 0 25px;
    color: #14233c;
    font-size: 46px;
    line-height: 1.12;
    font-weight: 800;
}

.asesoria-radial-intro h1 span {
    color: var(--orange);
}

.asesoria-radial-destacado {
    color: #14233c;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 20px;
}

.asesoria-radial-intro p {
    color: #626a75;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.asesoria-radial-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}


/* =========================================
   ÁREAS DE ASESORÍA
   ========================================= */

.asesoria-radial-servicio {
    background: #f7f8fa;
    padding: 100px 30px;
}

.asesoria-radial-section-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.asesoria-radial-section-header span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.asesoria-radial-section-header h2 {
    margin: 12px 0 15px;
    color: #14233c;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.asesoria-radial-section-header p {
    margin: 0 auto;
    color: #626a75;
    font-size: 16px;
    line-height: 1.7;
}

.asesoria-radial-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.asesoria-radial-card {
    background: #fff;
    padding: 38px;
    border-radius: 14px;
    border: 1px solid #e9ebee;
    transition: .3s ease;
}

.asesoria-radial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.asesoria-radial-card-number {
    color: var(--orange);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.asesoria-radial-card h3 {
    margin: 0 0 12px;
    color: #14233c;
    font-size: 22px;
    font-weight: 800;
}

.asesoria-radial-card p {
    margin: 0;
    color: #626a75;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   PROCESO
   ========================================= */

.asesoria-radial-proceso {
    padding: 100px 30px;
    background: #fff;
}

.asesoria-radial-steps {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.asesoria-radial-step {
    padding: 10px 10px 10px 0;
}

.asesoria-radial-step strong {
    display: block;
    color: var(--orange);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
}

.asesoria-radial-step h3 {
    margin: 0 0 10px;
    color: #14233c;
    font-size: 20px;
    font-weight: 800;

}

.asesoria-radial-step p {
    margin: 0;
    color: #626a75;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   REVISIÓN
   ========================================= */

.asesoria-radial-revision {
    background: #f7f8fa;
    padding: 100px 30px;
}

.asesoria-radial-revision-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.asesoria-radial-revision-item {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid #e9ebee;
}

.asesoria-radial-revision-item span {
    display: block;
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 15px;
}

.asesoria-radial-revision-item h3 {
    margin: 0 0 10px;
    color: #14233c;
    font-size: 19px;
    font-weight: 800;
}

.asesoria-radial-revision-item p {
    margin: 0;
    color: #626a75;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   CIERRE
   ========================================= */

.asesoria-radial-cierre {
    padding: 100px 30px;
   
    text-align: center;
}

.asesoria-radial-cierre span {
    display: block;
    margin-bottom: 12px;

    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.asesoria-radial-cierre h2 {
    margin: 0 0 15px;
    font-weight: 800;
    color: #14233c;
    font-size: 42px;
    line-height: 1.2;
}

.asesoria-radial-cierre p {
    max-width: 650px;
    margin: 0 auto 30px;

    color: #626a75;
    font-size: 16px;
    line-height: 1.7;
}

.btn-asesoria-radial {
    display: inline-block;

    padding: 15px 28px;

    background: var(--orange);
    color: #fff;

    border-radius: 7px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;

    transition: .3s ease;
}

.btn-asesoria-radial:hover {
    background: #fff;
    color: #14233c;
    transform: translateY(-3px);
}
















/* =========================================================
   SERVISTREAM - PÁGINA NOSOTROS
========================================================= */

:root {
    --navy: #071a3d;
    --navy-dark: #031027;
    --orange: #ff5a00;
    --text: #243858;
    --text-light: #71809a;
    --white: #ffffff;
    --light: #f6f8fb;
    --border: #e7ebf2;
}


/* =========================================================
   BANNER
========================================================= */

.nosotros-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.nosotros-banner img {
    width: 100%;
    height: auto;
    display: block;
    
}


/* =========================================================
   INTRO
========================================================= */

.nosotros-intro {
    max-width: 1380px;
    margin: 0 auto;
    padding: 100px 50px;

    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 80px;
    align-items: center;
}

.nosotros-label {
    color: var(--orange);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.nosotros-intro-content h1 {
    margin: 0 0 28px;

    color: var(--navy);
    font-size: clamp(42px, 4vw, 62px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.nosotros-intro-content h1 span {
    color: var(--orange);
}

.nosotros-intro-content p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 22px;
    max-width: 720px;
}

.nosotros-intro-content .nosotros-destacado {
    color: var(--text);
    font-size: 21px;
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 28px;
}

.nosotros-intro-image {
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(7, 26, 61, 0.15);
}

.nosotros-intro-image img {
    width: 100%;
    height: auto;
    
    display: block;
}


/* =========================================================
   ENCABEZADOS DE SECCIÓN
========================================================= */

.nosotros-section-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.nosotros-section-header span {
    display: block;
    color: var(--orange);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.nosotros-section-header h2 {
    color: var(--navy);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    margin: 0 0 20px;
    font-weight: 800;
}

.nosotros-section-header h2 strong {
    color: var(--orange);
}

.nosotros-section-header p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.7;
    margin: 0 auto;
}


/* =========================================================
   SOLUCIONES
========================================================= */

.nosotros-soluciones {
    background: var(--light);
    padding: 100px 50px;
}

.nosotros-soluciones-grid {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.nosotros-solucion-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 38px 40px;

    position: relative;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.nosotros-solucion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(7, 26, 61, 0.10);
}

.nosotros-card-number {
    color: var(--orange);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.nosotros-solucion-card h3 {
    color: var(--navy);
    font-size: 25px;
    margin: 0 0 12px;
}

.nosotros-solucion-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   PROCESO
========================================================= */

.nosotros-proceso {
    padding: 100px 50px;
    background: var(--white);
}

.nosotros-proceso-grid {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.nosotros-proceso-item {
    padding: 15px 25px 20px;
    border-left: 3px solid var(--orange);
}

.proceso-number {
    color: var(--orange);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.nosotros-proceso-item h3 {
    color: var(--navy);
    font-size: 24px;
    margin: 0 0 12px;
}

.nosotros-proceso-item p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   SECTORES
========================================================= */

.nosotros-sectores {
    background: var(--light);
    padding: 100px 50px;
}

.nosotros-sectores-grid {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.nosotros-sector {
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--navy);
}

.nosotros-sector img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 0.5s ease;
}

.nosotros-sector:hover img {
    transform: scale(1.06);
}

.nosotros-sector::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(3, 16, 39, 0.85),
        rgba(3, 16, 39, 0.05)
    );
}

.nosotros-sector div {
    position: absolute;
    left: 25px;
    bottom: 22px;
    z-index: 2;

    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
}


/* =========================================================
   CIERRE
========================================================= */

.nosotros-cierre {
   
    padding: 100px 30px;
    text-align: center;
}

.nosotros-cierre-content {
    max-width: 850px;
    margin: 0 auto;
}

.nosotros-cierre-content span {
    color: var(--orange);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nosotros-cierre-content h2 {
    color: var(--navy);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;
    margin: 18px 0;
    font-weight: 800;
}

.nosotros-cierre-content h2 strong {
    color: var(--orange);
}

.nosotros-cierre-content p {
    color: #71809b;
    font-size: 18px;
    line-height: 1.7;
    margin: 0 auto 32px;
}

.btn-nosotros {
    display: inline-block;

    background: var(--orange);
    color: var(--white);

    padding: 15px 30px;
    border-radius: 8px;

    text-decoration: none;
    font-size: 15px;
    font-weight: 800;

    transition: transform 0.3s ease,
                background 0.3s ease;
}

.btn-nosotros:hover {
    transform: translateY(-3px);
    background: #e94f00;
}







/* =========================================================
   SERVISTREAM - CONTACTO
========================================================= */

:root {
    --contact-navy: #071a3d;
    --contact-navy-dark: #031027;
    --contact-orange: #ff5a00;
    --contact-text: #243858;
    --contact-light: #71809a;
    --contact-white: #ffffff;
    --contact-bg: #f6f8fb;
    --contact-border: #e4e9f1;
}


/* =========================================================
   BANNER
========================================================= */

.contacto-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.contacto-banner img {
    width: 100%;
    height: auto;
    display: block;
    
}


/* =========================================================
   SECCIÓN PRINCIPAL
========================================================= */

.contacto-section {
    background: var(--contact-white);
    padding: 100px 40px;
}

.contacto-container {
    max-width: 1280px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}


/* =========================================================
   INFORMACIÓN
========================================================= */

.contacto-label {
    display: block;

    color: var(--contact-orange);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.7px;

    margin-bottom: 18px;
}

.contacto-info h1 {
    color: var(--contact-navy);

    font-size: clamp(42px, 4vw, 60px);
    line-height: 1.05;

    margin: 0 0 25px;

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

.contacto-info h1 strong {
    color: var(--contact-orange);
}

.contacto-intro {
    color: var(--contact-light);

    font-size: 18px;
    line-height: 1.75;

    max-width: 520px;

    margin-bottom: 45px;
}


/* =========================================================
   DATOS
========================================================= */

.contacto-datos {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contacto-dato {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contacto-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    background: #fff4ee;
    border-radius: 12px;

    color: var(--contact-orange);

    flex-shrink: 0;
}

.contacto-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contacto-dato span {
    display: block;

    color: var(--contact-light);

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

    letter-spacing: 0.7px;

    margin-bottom: 5px;
}

.contacto-dato strong {
    display: block;

    color: var(--contact-navy);

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


/* =========================================================
   BOTÓN WHATSAPP
========================================================= */

.contacto-whatsapp {
    margin-top: 42px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: var(--contact-orange);
    color: var(--contact-white);

    padding: 14px 22px;

    border-radius: 8px;

    text-decoration: none;

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

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.contacto-whatsapp:hover {
    transform: translateY(-3px);
    background: #e94f00;
}

.whatsapp-icon {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;
}

.whatsapp-icon svg {
    width: 23px;
    height: 23px;

    fill: currentColor;
}


/* =========================================================
   FORMULARIO
========================================================= */

.contacto-form-box {
    background: var(--contact-white);

    border: 1px solid var(--contact-border);

    border-radius: 20px;

    padding: 45px;

    box-shadow:
        0 20px 55px rgba(7, 26, 61, 0.09);
}

.form-header {
    margin-bottom: 32px;
}

.form-header span {
    display: block;

    color: var(--contact-orange);

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

    letter-spacing: 0.8px;

    margin-bottom: 10px;
}

.form-header h2 {
    color: var(--contact-navy);

    font-size: 34px;
    line-height: 1.1;

    margin: 0;

    font-weight: 800;
}

.form-header h2 strong {
    color: var(--contact-orange);
}


/* =========================================================
   CAMPOS
========================================================= */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    color: var(--contact-navy);

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

    letter-spacing: 0.5px;

    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;
    box-sizing: border-box;

    background: #fafbfd;

    border: 1px solid var(--contact-border);

    border-radius: 8px;

    padding: 14px 15px;

    color: var(--contact-navy);

    font-family: inherit;
    font-size: 15px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.form-group input,
.form-group select {
    height: 50px;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa5b7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--contact-white);

    border-color: var(--contact-orange);

    box-shadow:
        0 0 0 3px rgba(255, 90, 0, 0.10);
}


/* =========================================================
   PRIVACIDAD
========================================================= */

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    color: var(--contact-light);

    font-size: 13px;
    line-height: 1.5;

    margin: 5px 0 25px;

    cursor: pointer;
}

.form-privacy input {
    width: 17px;
    height: 17px;

    margin-top: 1px;

    accent-color: var(--contact-orange);

    flex-shrink: 0;
}


/* =========================================================
   BOTÓN ENVIAR
========================================================= */

.btn-form {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background: var(--contact-orange);
    color: var(--contact-white);

    border: none;
    border-radius: 8px;

    padding: 16px 25px;

    font-family: inherit;

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

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.btn-form:hover {
    transform: translateY(-2px);
    background: #e94f00;
}

.btn-form svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   CIERRE
========================================================= */

.contacto-cierre {
    

    padding: 90px 30px;

    text-align: center;
}

.contacto-cierre > div {
    max-width: 850px;
    margin: 0 auto;
}

.contacto-cierre span {
    color: var(--contact-orange);

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

    letter-spacing: 1px;
}

.contacto-cierre h2 {
    color: var(--contact-navy);

    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;

    margin: 18px 0;
    font-weight: 800;
}

.contacto-cierre h2 strong {
    color: var(--contact-orange);
}

.contacto-cierre p {
    color: #71809a;

    font-size: 18px;
    line-height: 1.7;

    margin: 0;
}






/* =========================================
   MENSAJES DE ESTADO - CONTACTO
========================================= */

.mensaje-estado {
    max-width: 950px;
    margin: 70px auto;
    padding: 55px 60px;
    display: flex;
    align-items: center;
    gap: 35px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid #eeeeee;
}

.mensaje-icono {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
}

.mensaje-ok .mensaje-icono {
    background: rgba(255, 90, 0, 0.12);
    color: #ff5a00;
}

.mensaje-error .mensaje-icono {
    background: rgba(20, 35, 60, 0.10);
    color: #14233c;
}

.mensaje-contenido span {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff5a00;
}

.mensaje-contenido h1 {
    margin: 0 0 15px;
    color: #14233c;
    font-size: 32px;
    line-height: 1.2;
}

.mensaje-contenido p {
    max-width: 650px;
    margin: 0 0 25px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.btn-mensaje {
    display: inline-block;
    padding: 14px 25px;
    background: #ff5a00;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 7px;
    transition: 0.3s ease;
}

.btn-mensaje:hover {
    background: #14233c;
    transform: translateY(-2px);
}












/*************  FOOOTERR *******************/


.site-footer {
    background: #020b17;
    color: #fff;
    border-top: 3px solid #ff5a00;
    margin-top: 0
}
.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 65px 35px 45px;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
    gap: 55px
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none
}
.footer-logo span:last-child {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px
}
.footer-logo strong {
    color: #ff5a00
}
.footer-logo b {
    color: #7c8490
}
.logo-play {
    width: 48px;
    height: 48px;
    border: 2px solid #777;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5a00;
    font-size: 18px;
    transition: 0.3s ease
}
.footer-logo:hover .logo-play {
    transform: rotate(360deg);
    border-color: #ff5a00;
    box-shadow: 0 0 18px rgba(255, 90, 0, 0.4)
}
.footer-slogan {
    color: #fff;
    font-size: 17px;
    margin: 12px 0;
    font-weight: 600
}
.footer-description {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    font-size: 14px
}
.footer-column h3 {
    color: #ff5a00;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 22px;
    position: relative
}
.footer-column h3::after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    background: #ff5a00;
    margin-top: 8px
}
.footer-column a {
    display: block;
    color: #c8d0da;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 13px;
    transition: all 0.3s ease
}
.footer-column a:hover {
    color: #ff5a00;
    transform: translateX(6px)
}
.footer-contact p {
    color: #c8d0da;
    font-size: 14px;
    margin: 0 0 16px
}
.footer-contact i {
    width: 22px;
    color: #ff5a00
}
.footer-whatsapp {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: #ff5a00 2px solid;
    color: #fff !important;
    padding: 12px 18px;
    border-radius: 100px;
    margin-top: 8px;
    font-weight: 700;
    transition: all 0.3s ease !important
}
.footer-whatsapp:hover {
    background: #212121;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.1)
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px
}
.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid #394555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease
}
.footer-social a:hover {
    transform: translateY(-6px);
    background: #ff5a00;
    border-color: #ff5a00;
    box-shadow: 0 8px 20px rgba(255, 90, 0, 0.3)
}
.footer-bottom {
    border-top: 1px solid #202d3d;
    max-width: 1250px;
    margin: 0 auto;
    padding: 20px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}
.footer-bottom p {
    margin: 0;
    color: #8995a5;
    font-size: 13px
}
.whatsapp-floating {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    background: #ff5a00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}
.whatsapp-floating:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 30px rgba(255, 90, 0, 0.4)
}
.whatsapp-floating::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #ff5a00;
    animation: whatsappPulse 2s infinite
}
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.8
    }
    70% {
        transform: scale(1.35);
        opacity: 0
    }
    100% {
        transform: scale(1.35);
        opacity: 0
    }
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease
}
.footer-logo-img {
    width: 280px;
    height: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease
}
.footer-logo:hover .footer-logo-img {
    transform: scale(1.03)
}








/************  ES PARA TABLES, MOVIL  ******************/



@media(max-width:1200px) {
    .brand {
        min-width: 300px
    }
    .main-nav ul {
        gap: 18px
    }
    .cards-grid {
        grid-template-columns: repeat(3, 1fr)
    }
    .sector-grid {
        grid-template-columns: repeat(3, 1fr)
    }
    .hero {
        grid-template-columns: 42% 58%
    }
}




@media (max-width: 1050px) {

    .led-intro {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .led-intro-content {
        max-width: 900px;
        margin: 0 auto;

        text-align: center;
    }

    .led-title-line {
        margin: 25px auto;
    }

    .led-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .led-application-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .led-process-grid {
        grid-template-columns: repeat(3, 1fr);

        row-gap: 45px;
    }

    .led-intro-image {
        max-width: 700px;

        width: 100%;

        margin: 0 auto;
    }
}



@media (max-width: 1000px) {

    .line-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .line-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .line-application-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .line-process-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 40px;
    }


.light-intro-content {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .light-intro-image {
        text-align: center;
    }

    .light-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .light-uses-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .light-process-grid {
        grid-template-columns: repeat(3, 1fr);

        row-gap: 35px;
    }


.nosotros-intro {
        grid-template-columns: 1fr;
        gap: 50px;
    }



    .nosotros-proceso-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 45px;
    }

    .nosotros-sectores-grid {
        grid-template-columns: repeat(2, 1fr);
    }


.contacto-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contacto-info {
        max-width: 750px;
    }


}






@media(max-width:992px) {
    .site-header {
        height: 76px
    }
    .header-inner {
        padding: 0 20px
    }
    .brand {
        min-width: 0;
        margin-right: auto
    }
    .brand-mark {
        width: 50px;
        height: 50px
    }
    .main-nav {
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, .98);
        backdrop-filter: blur(12px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, .12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: .3s
    }
    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: none
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 20px 18px
    }
    .main-nav a {
        display: block;
        padding: 15px 12px;
        font-size: 13px
    }
    .main-nav a:after {
        display: none
    }
    .quote-btn {
        display: none
    }
    .menu-toggle {
        display: flex
    }
    .hero {
        grid-template-columns: 1fr;
        min-height: 470px
    }
    .hero-content {
        padding: 50px 35px;
        min-height: 330px;
        background: linear-gradient(90deg, #030b15 60%, rgba(3, 11, 21, .75))
    }
    .hero-visual {
        position: absolute;
        inset: 0;
        opacity: .4;
        margin: 0;
        transform: skewX(-8deg) scale(1.05)
    }
    .cards-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px
    }
    .stat:nth-child(2) {
        border: 0
    }
    .sector-grid {
        grid-template-columns: repeat(3, 1fr)
    }
    .footer-inner {
        grid-template-columns: repeat(2, 1fr)
    }
}








@media (max-width: 900px) {
    .special-services {
        padding: 45px 4%
    }
    .special-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }

    .about-section {
        padding: 60px 4%
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px
    }
    .about-content h2 {
        font-size: 34px
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }







/*******************  AQUI VA MOVIL POR CADA LINK ***************/



    .technology-services {
        grid-template-columns: 1fr;
    }

    .technology-card {
        min-height: auto;
    }





    .security-services {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .security-card {
        min-height: auto;
    }




    .smart-services {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .smart-card {
        min-height: auto;
    }




    .av-services {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .av-card {
        min-height: auto;
    }




    .telecom-services {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .telecom-card {
        min-height: auto;
    }




    .pro-services {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pro-card {
        min-height: auto;
    }





    .streaming-radio-intro {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 75px 25px;
    }

    .streaming-radio-intro h1 {
        font-size: 38px;
    }

    .streaming-radio-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .streaming-radio-devices {
        grid-template-columns: repeat(2, 1fr);
    }


.asesoria-radial-intro {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 75px 25px;
    }

    .asesoria-radial-intro h1 {
        font-size: 38px;
    }

    .asesoria-radial-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .asesoria-radial-revision-grid {
        grid-template-columns: repeat(2, 1fr);
    }


}









@media (max-width: 768px) {
    .brand-logo {
        width: 210px
    }
    .footer-logo-img {
        width: 220px
    }
}






@media (max-width: 700px) {



    .nosotros-intro {
        padding: 70px 25px;
    }

    .nosotros-intro-content h1 {
        font-size: 40px;
    }

    .nosotros-intro-content p {
        font-size: 16px;
    }

    .nosotros-intro-content .nosotros-destacado {
        font-size: 18px;
    }



    .nosotros-soluciones,
    .nosotros-proceso,
    .nosotros-sectores {
        padding: 70px 25px;
    }

    .nosotros-soluciones-grid,
    .nosotros-proceso-grid,
    .nosotros-sectores-grid {
        grid-template-columns: 1fr;
    }

    .nosotros-solucion-card {
        padding: 30px;
    }

    .nosotros-sector {
        height: 260px;
    }

    .nosotros-cierre {
        padding: 75px 25px;
    }




    .contacto-section {
        padding: 70px 20px;
    }

    .contacto-info h1 {
        font-size: 42px;
    }

    .contacto-intro {
        font-size: 16px;
    }

    .contacto-form-box {
        padding: 28px 22px;
        border-radius: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-header h2 {
        font-size: 30px;
    }

    .contacto-cierre {
        padding: 70px 20px;
    }


.mensaje-estado {
        margin: 40px 20px;
        padding: 40px 25px;
        flex-direction: column;
        text-align: center;
    }

    .mensaje-contenido h1 {
        font-size: 26px;
    }

    .mensaje-contenido p {
        font-size: 15px;
    }


}






@media (max-width: 650px) {



    .led-intro {
        padding: 55px 20px;
    }

    .led-intro h1 {
        font-size: 40px;
    }

    .led-intro h2 {
        font-size: 19px;
    }

    .led-intro p {
        font-size: 16px;
    }



    .led-services-section,
    .led-applications,
    .led-process {
        padding: 60px 18px;
    }

    .led-services-grid {
        grid-template-columns: 1fr;
    }

    .led-application-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .led-application-card {
        height: 180px;
    }

    .led-process-grid {
        grid-template-columns: 1fr 1fr;

        gap: 35px 15px;
    }

    .led-section-header {
        margin-bottom: 35px;
    }

    .led-section-header h2 {
        font-size: 32px;
    }

    .led-cta {
        min-height: 350px;
    }

    .led-cta-content h2 {
        font-size: 38px;
    }

    .led-cta-content p {
        font-size: 17px;
    }




    .line-intro {
        padding: 50px 6%;
    }

    .line-intro-text h1 {
        font-size: 38px;
    }

    .line-intro-image img {
        height: 280px;
    }

    .line-service {
        padding: 55px 6%;
    }

    .line-service-grid {
        grid-template-columns: 1fr;
    }

    .line-applications {
        padding: 55px 6%;
    }

    .line-application-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .line-application-card {
        height: 180px;
    }

    .line-process {
        padding: 55px 6%;
    }

    .line-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .line-cta {
        padding: 55px 6%;
    }

    .line-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }







}







@media (max-width: 600px) {
    .header-inner {
        padding: 0 14px
    }
    .brand-mark {
        width: 43px;
        height: 43px;
        margin-right: 8px
    }
    .hero-content {
        padding: 42px 22px
    }
    .hero h1 {
        font-size: 27px
    }
    .hero h2 {
        font-size: 13px
    }
    .hero p {
        font-size: 12px
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }
    .btn {
        width: 100%;
        text-align: center
    }
    .section {
        padding: 22px 15px
    }
    .section-title h2 {
        font-size: 20px
    }
    .cards-grid,
    .sector-grid,
    .extra-grid {
        grid-template-columns: 1fr
    }
    .specialty-card {
        min-height: 0
    }
    .stats-inner {
        grid-template-columns: 1fr;
        padding: 15px
    }
    .stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
        padding: 12px
    }
    .stat:last-child {
        border-bottom: 0
    }


.inicio-stream-radio {
        padding: 60px 20px;
    }

    .inicio-stream-radio-content h2 {
        font-size: 30px;
    }

    .inicio-stream-radio-content p {
        font-size: 15px;
    }




/*******************  AQUI VA MOVIL POR CADA LINK ***************/




    .technology-header {
        padding: 50px 20px 40px;
    }

    .technology-label {
        font-size: 16px;
    }

    .technology-header h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .technology-header p {
        font-size: 17px;
    }

    .technology-services {
        padding: 0 18px 50px;
        gap: 20px;
    }

    .technology-card {
        padding: 30px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .technology-icon {
        width: 82px;
        height: 82px;
        font-size: 34px;
    }

    .technology-card h2 {
        font-size: 27px;
    }

    .technology-card p {
        font-size: 17px;
    }

    .technology-closing {
        padding: 40px 20px 60px;
    }

    .technology-closing h2 {
        font-size: 29px;
    }






    .security-header {
        padding: 50px 20px 35px;
    }

    .security-overline {
        font-size: 15px;
        letter-spacing: 3px;
    }

    .security-header h1 {
        font-size: 48px;
    }

    .security-header p {
        font-size: 17px;
    }

    .security-services {
        padding: 15px 18px 50px;
    }

    .security-card {
        padding: 30px 25px;

        flex-direction: column;
        align-items: flex-start;

        gap: 25px;
    }

    .security-icon {
        width: 95px;
        height: 95px;
        min-width: 95px;
    }

    .security-icon svg {
        width: 45px;
        height: 45px;
    }

    .security-card h2 {
        font-size: 25px;
    }

    .security-card p {
        font-size: 17px;
    }

    .security-closing {
        padding: 10px 20px 60px;
    }

    .security-closing h3 {
        font-size: 25px;
    }





    .streaming-radio-intro {
        padding: 60px 20px;
    }

    .streaming-radio-intro h1 {
        font-size: 32px;
    }

    .streaming-radio-destacado {
        font-size: 17px;
    }

    .streaming-radio-intro p {
        font-size: 15px;
    }



    .streaming-radio-servicio,
    .streaming-radio-proceso,
    .streaming-radio-dispositivos,
    .streaming-radio-cierre {
        padding: 70px 20px;
    }

    .streaming-radio-section-header h2 {
        font-size: 30px;
    }

    .streaming-radio-grid {
        grid-template-columns: 1fr;
    }

    .streaming-radio-steps {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .streaming-radio-devices {
        grid-template-columns: 1fr;
    }

    .streaming-radio-cierre h2 {
        font-size: 32px;
    }





    .smart-header {
        padding: 50px 20px 35px;
    }

    .smart-overline {
        font-size: 15px;
        letter-spacing: 3px;
    }

    .smart-header h1 {
        font-size: 48px;
    }

    .smart-header p {
        font-size: 17px;
    }

    .smart-services {
        padding: 15px 18px 50px;
    }

    .smart-card {
        padding: 30px 25px;

        flex-direction: column;
        align-items: flex-start;

        gap: 25px;
    }

    .smart-icon {
        width: 95px;
        height: 95px;
        min-width: 95px;
    }

    .smart-icon svg {
        width: 45px;
        height: 45px;
    }

    .smart-card h2 {
        font-size: 25px;
    }

    .smart-card p {
        font-size: 17px;
    }

    .smart-closing {
        padding: 10px 20px 60px;
    }

    .smart-closing h3 {
        font-size: 25px;
    }





    .av-header {
        padding: 50px 20px 35px;
    }

    .av-overline {
        font-size: 15px;
        letter-spacing: 3px;
    }

    .av-header h1 {
        font-size: 44px;
    }

    .av-header p {
        font-size: 17px;
    }

    .av-services {
        padding: 15px 18px 50px;
    }

    .av-card {
        padding: 30px 25px;

        flex-direction: column;
        align-items: flex-start;

        gap: 25px;
    }

    .av-icon {
        width: 95px;
        height: 95px;
        min-width: 95px;
    }

    .av-icon svg {
        width: 45px;
        height: 45px;
    }

    .av-card h2 {
        font-size: 25px;
    }

    .av-card p {
        font-size: 17px;
    }

    .av-closing {
        padding: 10px 20px 60px;
    }

    .av-closing h3 {
        font-size: 25px;
    }





    .telecom-header {
        padding: 50px 20px 35px;
    }

    .telecom-overline {
        font-size: 15px;
        letter-spacing: 3px;
    }

    .telecom-header h1 {
        font-size: 48px;
    }

    .telecom-header p {
        font-size: 17px;
    }

    .telecom-services {
        padding: 15px 18px 50px;
    }

    .telecom-card {
        padding: 30px 25px;

        flex-direction: column;
        align-items: flex-start;

        gap: 25px;
    }

    .telecom-icon {
        width: 95px;
        height: 95px;
        min-width: 95px;
    }

    .telecom-icon svg {
        width: 45px;
        height: 45px;
    }

    .telecom-card h2 {
        font-size: 25px;
    }

    .telecom-card p {
        font-size: 17px;
    }

    .telecom-closing {
        padding: 10px 20px 60px;
    }

    .telecom-closing h3 {
        font-size: 25px;
    }




    .pro-header {
        padding: 50px 20px 35px;
    }

    .pro-overline {
        font-size: 15px;
        letter-spacing: 3px;
    }

    .pro-header h1 {
        font-size: 48px;
    }

    .pro-header p {
        font-size: 17px;
    }

    .pro-services {
        padding: 15px 18px 50px;
    }

    .pro-card {
        padding: 30px 25px;

        flex-direction: column;
        align-items: flex-start;

        gap: 25px;
    }

    .pro-icon {
        width: 95px;
        height: 95px;
        min-width: 95px;
    }

    .pro-icon svg {
        width: 45px;
        height: 45px;
    }

    .pro-card h2 {
        font-size: 25px;
    }

    .pro-card p {
        font-size: 17px;
    }

    .pro-closing {
        padding: 10px 20px 60px;
    }

    .pro-closing h3 {
        font-size: 25px;
    }





    .light-intro {
        padding: 50px 6%;
    }

    .light-intro h1 {
        font-size: 38px;
    }

    .light-section-title h2 {
        font-size: 30px;
    }

    .light-features-grid {
        grid-template-columns: 1fr;
    }

    .light-uses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .light-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .light-closing h2 {
        font-size: 34px;
    }






.asesoria-radial-intro {
        padding: 60px 20px;
    }

    .asesoria-radial-intro h1 {
        font-size: 32px;
    }

    .asesoria-radial-destacado {
        font-size: 17px;
    }

    .asesoria-radial-intro p {
        font-size: 15px;
    }

    .asesoria-radial-servicio,
    .asesoria-radial-proceso,
    .asesoria-radial-revision,
    .asesoria-radial-cierre {
        padding: 70px 20px;
    }

    .asesoria-radial-section-header h2 {
        font-size: 30px;
    }

    .asesoria-radial-grid {
        grid-template-columns: 1fr;
    }

    .asesoria-radial-steps {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .asesoria-radial-revision-grid {
        grid-template-columns: 1fr;
    }

    .asesoria-radial-cierre h2 {
        font-size: 32px;
    }








    .footer-inner {
        grid-template-columns: 1fr;
        gap: 25px
    }
    .sector-img {
        height: 250px
    }
    .hero-visual {
        opacity: .27
    }
    .special-services {
        padding: 40px 18px
    }
    .special-services .section-title h2 {
        font-size: 26px
    }
    .special-services-grid {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .special-service-content {
        padding: 20px
    }
    .special-service-content h3 {
        font-size: 20px
    }
    .special-service-content p {
        font-size: 15px
    }
    .about-section {
        padding: 50px 20px
    }
    .about-content h2 {
        font-size: 28px
    }
    .about-content .about-intro {
        font-size: 16px
    }
    .about-content p {
        font-size: 15px
    }
    .about-features {
        grid-template-columns: 1fr;
        gap: 18px
    }
    .about-image {
        
        border-radius: 14px
    }
    .about-image-overlay {
        left: 20px;
        bottom: 20px
    }
    .about-image-overlay strong {
        font-size: 23px
    }
    .footer-container {
        grid-template-columns: 1fr;
        padding: 50px 25px 35px;
        gap: 35px
    }
    .footer-logo span:last-child {
        font-size: 27px
    }
    .footer-bottom {
        padding: 20px 25px;
        flex-direction: column;
        text-align: center
    }
    .whatsapp-floating {
        width: 54px;
        height: 54px;
        right: 18px;
        bottom: 18px;
        font-size: 27px
    }
}


@media (max-width: 430px) {

    .line-application-grid {
        grid-template-columns: 1fr;
    }

    .line-process-grid {
        grid-template-columns: 1fr;
    }

}


