body {
    margin: 0;
    background-color: black;
    color: white;
    font-family: 'Open Sans', sans-serif;
}

main {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.mainBlindaje{
    margin-top: 100px;
}

.mainTrat{
    margin-top: 100px;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px; 
    padding: 0 20px; 

}

.containerProtecc{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items:center;
    width: 100%;
    max-width: 1200px; 
    padding: 0 20px; 

}

.video {
    position: relative;
    width: 50%;
    height: auto;
    overflow: hidden;
    cursor: pointer;
}

.video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.videoBlindaje{
    margin-top: 4.5em;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5em;
    color: red;
    display: block;
    cursor: pointer;
}

.conteinerTexto {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

.botonesTipo {
    display: flex;
    gap: 0.5rem;
    margin-top: 20px; 
}

.wpp, .youtube, .ig {
    background-color: #fa7305;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wpp img, .youtube img, .ig img {
    width: 60%;
}

.tituloServ {
    font-weight: bold;
    font-size: 1.5em;
    margin: 0;
    margin-bottom: 8px;
    
}

.textoServ {
    font-size: 0.8em;
    line-height: 1.5;
}

.subtitulo {
    color: #fa7305;
    font-weight: bold;
    font-size: 1em;
    text-decoration: underline;
   
}

a {
    color: white;
}

a:hover {
    color: #fa7305;
}

@media screen and (max-width: 768px) {
    .container,.containerProtecc {
        flex-direction: column;
        align-items: center;
        padding: 3em;
    }

    .video {
        width: 100%; 
    }

    .conteinerTexto {
        width: 100%; 
        padding: 10px; 
    }
}