/* ===========================
   PROPUESTA DE VALOR
   =========================== */

#inicio_informacionservicio{
    width: 100%;
    background-color: #000000;
    margin-top: -1px;
}

.vp-hero-full {
    position: relative;
    background-image: url('../../assets/img/transmitiendo-senales-traves-de-satelites-de-comunicaciones-en-el-cielo-y-la-ciudad-capital-con-altos.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.vp-hero-full::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.7) 5%,
        rgba(0,0,0,0.3) 8%,
        rgba(0,0,0,0) 12%
    );
    z-index: 1;
}

.vp-title {
    position: relative;
    z-index: 2;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.1;
    color: #ffffff;
    text-align: right; 
    left: -20vw; 

    max-width: 600px;
    text-transform: uppercase;
    margin-left: auto; 
    margin-right: 0;
}
/* Contenedor del degradado alto */
.vp-gradient-content {
    padding: 100px 0;
    background: linear-gradient(
        to bottom,
        #000000 0%,     
        #1a1a1a 15%,    
        #2b2b2b 30%,    
        #2b2b2b 100%     
    );
}

/* Estilo del subtítulo en dos líneas */
.vp-subtitle-box {
    text-align: center;
    margin-bottom: 80px;
    color: #ffffff;
}

.vp-subtitle-top {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.9rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.vp-subtitle-bottom {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 2.3rem;
    color: #ffffff;
}

/* Diagrama de flujo */
.vp-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.diagram-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.diagram-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.diagram-circle:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.2);
}

.diagram-circle img {
    width: 70%;
    height: auto;
}

.diagram-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
}

/* Conectores blancos */
.diagram-connector {
    width: 200px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 10px;
    position: relative;
    top: -20px;
}

/* Responsivo */

@media (max-width: 992px) {
    .vp-title {
        left: 0; 
        margin: 0 auto; 
        text-align: center; 
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .vp-diagram {
        flex-wrap: wrap;
        gap: 40px;
    }
    .diagram-connector {
        display: none;
    }
}