.top-line{
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin-bottom: 60px;
}


/* ========================= */
/* SECCIÓN GENERAL */
/* ========================= */

.info-section{
    width: 100%;
    padding: 80px 8%;
    background: #000;
}

/* Línea superior */

.top-line{
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin-bottom: 60px;
}

/* Grid de 2 columnas */

/* GRID */

.info-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGEN */

.info-image{
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-image img{
    width: 100%;
    max-width: 550px;
    border-radius: 1px;
    object-fit: cover;
    display: block;
}

/* CONTENIDO */

.info-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* TITULO */

.info-content h2{
    color: #ff8800;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

/* TEXTO */

.info-content p{
    color: #cfcfcf;
    font-size: 17px;
    line-height: 1.9;
    max-width: 600px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width: 900px){

    .info-container{
        grid-template-columns: 1fr;
    }

    .info-content{
        text-align: center;
    }

}