/* EL VIDEO Y ESO */
.contenido-superior {
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 20px;
    margin-left: 10px;
}

.texto h2 {
    font-size: 1.7;
}

.texto {
    width: 50%;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
}

.subtexto h2 { 
    font-size: 1.7em;
    text-align: center;
    margin-bottom: 10px; /* o el espacio que quieras */
    line-height: 1.2;
}

.subtexto {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
}

/* LINEA*/
.line_property {
    width: 600px;
    height: 3px;
    background-color: darkred;
    margin: 15px auto;
    margin-top: 0;
}

.subtexto2 h2 { 
    font-size: 1.7em;
    text-align: center;
    margin-bottom: 10px; /* o el espacio que quieras */
    line-height: 1.2;
}

.subtexto2 {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
}

.video {
    width: 50%; 
}

.video iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; 
    border-radius: 8px;
}

.btn-inicia {
    background-color: darkred; 
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 15px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 50px;
}

.btn-inicia:hover {
    background-color: #cc0000; 
}

/* IMAGENES Propiedades*/
.contenedor-imagenes2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 10px; 
    margin-top: 7px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 30px;
}

.imagen2 {
    position: relative;
    overflow: hidden;
    transition: transform 0.3 ease-in-out;
    width: 100%;
}

.imagen2:hover {
    transform: scale(1.1);
}

.imagen2 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: brightness(55%);
}

.texto-imagen2 {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    width: 80%; 
}
