/* Centrando el contenedor de imágenes en la página */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px;
    margin-top: 10px;
}

/* Alineando las imágenes y los botones en un contenedor */
.image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Efecto de hover para las imágenes */
.image-container img {
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.1);
}

/* Estilo para los botones */
.image-container button {
    margin-top: 30px;
    padding: 8px 15px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 20px;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, top 0.5s;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    top: 0;
}

.image-container button:hover {
    background-color: #76777c;
    color: black;
    transform: scale(1.1);
    top: -10px;
}

.user-info {
    color: white;
}

.video-section {
    background: linear-gradient(to bottom, #76777c, #000000 450px);
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.video-container {
    width: 80%;
    max-width: 800px;
    text-align: left;
}

.video-container h2 {
    color: white;
    margin-bottom: 20px;
}

.video-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-button {
    height: 50px;
    width: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: black;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-button i {
    font-size: 24px;
}

.carousel-button.prev {
    left: -50px;
}

.carousel-button.next {
    right: -50px;
}

.carousel-button.prev i {
    transform: rotate(180deg);
}

.carousel-button.next i {
    transform: rotate(0deg);
}

.carousel-button:hover {
    background-color: #333;
    color: white;
}

.video-wrapper {
    flex: 1;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.paginas-web-section {
    position: relative;
    background-color: #000000;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: visible;
}

.paginas-web-section h2{
    color: #fff;
}

.web-container {
    width: 90%;
    max-width: 1500px;
    aspect-ratio: 16 / 9;
    position: relative;
}

.web-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Estilos para los botones de scroll */
.scroll-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: black;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
    display: none; /* Ocultar por defecto */
}

.scroll-button.up {
    bottom: 80px;
}

.scroll-button:hover {
    background-color: #333;
}

.scroll-button i {
    margin: 0;
}