/* ========================= */
/* SECCIÓN */
/* ========================= */

.info-section{
    width: 100%;
    padding: 80px 8%;
    background: #000;
}

/* Línea blanca superior */

.top-line{
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin-bottom: 60px;
}

/* 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: 500px;
    border-radius: 14px;
    object-fit: cover;
    display: block;
}

/* TEXTO */

.info-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.info-content h2{
    color: #ff8800;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.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;
    }

}