.grid-platform {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 4rem;
    justify-content: center;
}

.border {
    width: 0.5rem;
    height: 5rem;
    background-color: var(--secundary-color);
    margin-right: 20px;
    border-radius: 40px;
    border: 0px solid transparent !important;
}



.grid-platform-item img {
    height: 6rem;
    margin-bottom: 2rem;
    margin-left: 10%;
}

.grid-platform-item p,
.grid-platform-item h4 {
    text-align: left;
    width: 100%;
}

/* video section */
.video-section {
    overflow-x: clip;

}

.video-shape-bg {
    position: absolute;
    width: 80%;
    height: 300%;
    background-color: var(--secundary-color);
    transform: rotate(69deg);
    left: -30%;
    top: -80%;
    z-index: -223;
}

.video-section img {
    position: absolute;
    z-index: -222;
    width: 85%;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
}

.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    background-color: #4f4f4f;
    box-shadow: var(--primary-shadow);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    border: 0;
}