/* Estilos específicos para la página Cómo Funciona */
.como-funciona-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.como-funciona-intro h1 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.como-funciona-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.destacado {
    color: var(--color-accent);
    font-weight: 600;
}

.proceso-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.proceso-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proceso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.proceso-card-left {
    align-self: flex-start;
    width: 90%;
    margin-right: auto;
}

.proceso-card-right {
    align-self: flex-end;
    width: 90%;
    margin-left: auto;
}

.proceso-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(249, 115, 22, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.proceso-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
}

.proceso-card h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.proceso-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.proceso-indicator {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

.proceso-card-left .proceso-indicator {
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
}

.proceso-card-right .proceso-indicator {
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
}

.cta-container {
    text-align: center;
    margin: 4rem 0 2rem;
}

@media (max-width: 768px) {
    .proceso-card-left,
    .proceso-card-right {
        width: 100%;
        align-self: center;
    }
    
    .proceso-indicator {
        display: none;
    }
}
