/* Reset de márgenes y padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo general del body */
body {
    font-family: sans-serif;
    overflow-x: hidden;
}

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    color: white;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
}

.content {
    position: relative;
    z-index: 1;
    padding: 0px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    margin-bottom: 100px; /* Separación entre el video y el footer */
}

.pinterest-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    row-gap: 40px;
    width: 100%;
    height: 100%;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.grid-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.grid-item:hover video {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}