.metodo {
    position: relative;
    padding: 120px 8%;
    background-image: url("../images/metodo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.metodo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 0;
}

.metodo-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.metodo-container h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.metodo-subtitle {
    font-size: 1.2rem;
    color: #d0d0d0;
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.6;
}

.metodo-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.metodo-step {
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(4px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metodo-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}


.metodo h2 + p,
.metodo h2 + p ~ p {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.metodo-steps {
    margin-bottom: 90px;
}

.metodo h2:not(#metodo-title) {
    margin-top: 0;
    margin-bottom: 40px;
    text-align: center;
}

.metodo h2:not(#metodo-title) + p,
.metodo h2:not(#metodo-title) + p ~ p {
    font-size: 1.15rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 22px;
}

.metodo p strong {
    color: #ffffff;
}

.step-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #E26D28;
    display: block;
    margin-bottom: 10px;
}

.metodo-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.metodo-step p {
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .metodo-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metodo h2 + p,
    .metodo h2 + p ~ p {
        max-width: 100%;
        text-align: left;
    }

    .metodo-steps {
        grid-template-columns: 1fr;
    }

    .metodo {
        padding: 100px 6%;
    }
}