/* Estilos personalizados para la sección de contacto */
.contact-info {
    background: rgba(250, 250, 250, 0.1);
    border-radius: 10px;
    padding: 20px 0;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info i {
    color: #f5a425;
    margin-bottom: 10px;
}

.contact-info p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}

.section.contact select.form-control {
    height: 40px;
    background-color: rgba(250,250,250,0.1);
    border-radius: 0px;
    border: none;
    color: #fff;
    font-size: 13px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.section.contact select.form-control option {
    background-color: #1f272b;
    color: #fff;
}

.section.video .left-content {
    position: relative;
}

.section.video .left-content:after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(245, 164, 37, 0.1);
    border-radius: 50%;
    bottom: -70px;
    left: -70px;
    z-index: -1;
}

.video-item figure {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-item figure:hover {
    transform: translateY(-10px);
}

.video-item figure img {
    transition: all 0.5s ease;
    width: 100%;
    height: auto;
}

.video-item figure:hover img {
    transform: scale(1.05);
}

.video-item .play {
    position: relative;
    display: block;
}

.video-item .play:after {
    content: '\f144';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.3s ease;
}

.video-item figure:hover .play:after {
    opacity: 1;
}

/* Estilos para el modal de video */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    background-color: #000;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.close-video {
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-video:hover {
    color: #f5a425;
    transform: rotate(90deg);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Estilos para mensajes de alerta */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: opacity 0.3s ease;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #fff;
}


