html, body{
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.experience{
    min-height: 100vh;
    background: linear-gradient(
        90deg,
        #f6f1ea 0%,
        #ffffff 60%
    );
    display: flex;
    align-items: center;
    padding: 0 5%;
}
.experience-container{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXTO */
.experience-text h2{
    font-size: 3rem;
    color: #f59300;
    line-height: 1.1;
    margin-bottom: 30px;
}

.experience-text h2 span{
    color: #0f5f3d;
}

.steps{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 35px;
}

.steps strong{
    color: #0f5f3d;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.steps p{
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* BOTÓN */
.btn-menu{
    display: inline-block;
    background: #0f5f3d;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-menu:hover{
    background: #f59300;
    color: #0f5f3d;
}

/* IMÁGENES */
.experience-images{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.experience-images img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px){
    .experience{
        padding-top: 80px;  
        padding-bottom: 80px;
        min-height: auto;    
    }

    .experience-container{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .experience-images{
        grid-template-columns: 1fr 1fr;
    }

    .experience-text h2{
        font-size: 2.4rem;
    }
}
