body {
    font-family: 'Montserrat', sans-serif;
}

.btn-protegerte,
h1 {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.par-pyme-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.capa {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 26, 38, 0.75);
    z-index: 1;
}

.mensaje {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 2rem;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.par-pyme {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    gap: 20px;
    padding: 20px 35px;
    margin-bottom: 50px;
    width: fit-content;
    max-width: 100%;
    font-size: 45px;
    font-weight: 800;
    text-align: center;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px  1px 0 #000,
    1px  1px 0 #000;
}

.par-pyme span {
    color: #FA8617;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px  1px 0 #000,
    1px  1px 0 #000;
}

.alerta-icono {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.proteccion {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    margin-top: 0;
}

.proteccion h2, .proteccion h3 {
    color: #e0fbfc;
    text-align: center;
    line-height: 1.5;
    max-width: 100%;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

.proteccion h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 1px;
}

.proteccion h3 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.btn-protegerte {
    display: inline-block;
    background: #FA8617;
    color: #000000;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #FA8617;
    box-shadow: 0 0 10px rgba(225, 137, 30, 0.6), 0 0 20px rgba(212, 159, 15, 0.4);
    font-family: 'Poppins', sans-serif;
}

@media (hover: hover) {
    .btn-protegerte:hover {
        background: rgba(30, 203, 225, 0.1); 
        color: #fff;
        box-shadow: 0 0 15px rgba(253, 154, 16, 0.8), 
                    0 0 30px rgba(251, 140, 21, 0.6);
        transform: translateY(-3px);
    }
}


@media (max-width: 768px) {
    .mensaje {
        padding: 4rem 2rem;
    }
    
    .par-pyme {
        flex-direction: column;
        padding: 20px;
        margin-bottom: 40px;
        font-size: 40px;
    }
    
    .proteccion h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .proteccion h3 {
        font-size: 20px;
    }
    
    .btn-protegerte {
        font-size: 16px;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .par-pyme {
        font-size: 32px;
        margin-bottom: 10px;
        gap: 15px;
    }

    .alerta-icono {
        width: 35px;
        height: 35px;
    }

    .proteccion h2 {
        font-size: 24px;
        line-height: 1.4;
    }
    .proteccion h3 {
        font-size: 18px;
        line-height: 1.5;
    }

    .btn-protegerte {
        font-size: 16px;
        padding: 16px 28px;
        width: 100%;
        max-width: 300px;
    }
}