/* Essential Elementor Styles */
.elementor-invisible {
    visibility: hidden;
}

.elementor-nav-menu--main {
    display: flex;
    flex-wrap: wrap;
}

.elementor-nav-menu--main .menu-item {
    position: relative;
}

.elementor-nav-menu--main .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: none;
    min-width: 200px;
}

.elementor-accordion-item {
    border: 1px solid #D4D4D4;
    margin-bottom: 10px;
}

.elementor-tab-title {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.elementor-tab-title:hover {
    background-color: #f7f7f7;
}

.elementor-tab-title.elementor-active {
    background-color: #f0f0f0;
}

.elementor-tab-content {
    padding: 15px;
    display: none;
    border-top: 1px solid #D4D4D4;
}

/* Animation classes */
[data-settings*="fadeIn"] {
    transition: opacity 0.6s ease;
}

/* Widget spacing */
.elementor-widget:not(:last-child) {
    margin-bottom: 20px;
}

/* Section and column structure */
.elementor-section {
    position: relative;
    width: 100%;
}

.elementor-container {
    display: flex;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

.elementor-column {
    position: relative;
    min-height: 1px;
    display: flex;
} 

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

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Aspecto 16:9 */
    height: 0;
    overflow: hidden;
}

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

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}