*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
}
.row img{
    width: 100%;
}
iframe{
    width: 100%;
}
.row{
    display: flex;
    gap: 10px;
}
.column{
    flex: 25%;
}
/* Fondo del modal */
.modal {
    display: none; /* Oculto por defecto */
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 2.5px;
    font-size: 24px;
    color: #ff1395;
    cursor: pointer;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 20%;
}

.tab-button {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
}

.tab-button.active {
    color: #ff8fae;
}

.tab-content {
    display: none;
    padding: 20px;
    padding: 0 20%;
}

.tab-content.active {
    display: block;
}
